aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Strogin <steils@gentoo.org>2020-05-21 19:02:46 +0300
committerStefan Strogin <steils@gentoo.org>2020-05-21 19:02:46 +0300
commitdb73eb6cad0e42c4d0e01af7c5180e441501e121 (patch)
treefe90ab429765fc55bbc7e06d97e99552bef3e81a
parentprofiles: move net-im/riot-web to net-im/riot-desktop (diff)
downloadmatrix-db73eb6cad0e42c4d0e01af7c5180e441501e121.tar.gz
matrix-db73eb6cad0e42c4d0e01af7c5180e441501e121.tar.bz2
matrix-db73eb6cad0e42c4d0e01af7c5180e441501e121.zip
www-apps/riot-web: drop old and ambiguous package
Signed-off-by: Stefan Strogin <steils@gentoo.org>
-rw-r--r--www-apps/riot-web/Manifest1
-rw-r--r--www-apps/riot-web/riot-web-1.4.0.ebuild55
2 files changed, 0 insertions, 56 deletions
diff --git a/www-apps/riot-web/Manifest b/www-apps/riot-web/Manifest
deleted file mode 100644
index 8850462..0000000
--- a/www-apps/riot-web/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST riot-web-1.4.0.tar.gz 1500845 BLAKE2B 4d92f4fc524dc7e1d84b6fcedb7fc2bd7b610c6b27fdcf93878189344bd82d609760bc38b075179ac211805e736c25786682fecf8842d9cf8250661a6516a350 SHA512 2c4621777ecea9fb380f7c691eaf2c0e5708eb82ff086f5b28d31630aca238618149861b0c5716e7d1a8b74f9f364f5805f95ada1342dcd48ccba933c27a49d4
diff --git a/www-apps/riot-web/riot-web-1.4.0.ebuild b/www-apps/riot-web/riot-web-1.4.0.ebuild
deleted file mode 100644
index 1ac6bee..0000000
--- a/www-apps/riot-web/riot-web-1.4.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A glossy Matrix collaboration client for the web"
-HOMEPAGE="https://riot.im"
-
-inherit eutils webapp
-
-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"
-fi
-
-LICENSE="Apache-2.0"
-IUSE=""
-REQUIRED_USE=""
-
-DEPEND="sys-devel/binutils:*
- net-libs/nodejs
- sys-apps/yarn"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- default
-
- if [[ ${PV} == "9999" ]]; then
- "${S}"/scripts/fetch-develop.deps.sh
- fi
-
- yarn install || die "Yarn module installation failed"
-}
-
-src_compile() {
- yarn run build || die "Build failed"
- yarn dist || die "Dist build failed"
-}
-
-src_install() {
- tar xfz "${S}/dist/riot-unknown.tar.gz" -C "${S}/dist"
-
- webapp_src_preinst
- insinto "${MY_HTDOCSDIR}"
- cd "${S}/dist/riot-unknown"
- doins -r .
- webapp_configfile "${MY_HTDOCSDIR}"/config.sample.json
- webapp_src_install
-}