From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 25326139360 for ; Wed, 4 Aug 2021 07:49:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03723E0878; Wed, 4 Aug 2021 07:49:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DBEEAE0878 for ; Wed, 4 Aug 2021 07:49:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 91422342D33 for ; Wed, 4 Aug 2021 07:49:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4702F83B for ; Wed, 4 Aug 2021 07:49:27 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1628063365.165804de91b7303b3481b40d49ce10b995308a6e.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/element/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/element/Manifest www-apps/element/element-1.7.34.ebuild X-VCS-Directories: www-apps/element/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 165804de91b7303b3481b40d49ce10b995308a6e X-VCS-Branch: master Date: Wed, 4 Aug 2021 07:49:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b196a828-ec23-4db7-b6d2-2a427af7ec6f X-Archives-Hash: 373871c88963976c451b7690bf902978 commit: 165804de91b7303b3481b40d49ce10b995308a6e Author: Bernard Cafarelli gentoo org> AuthorDate: Wed Aug 4 07:49:17 2021 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Wed Aug 4 07:49:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=165804de www-apps/element: 1.7.34 bump Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Bernard Cafarelli gentoo.org> www-apps/element/Manifest | 1 + www-apps/element/element-1.7.34.ebuild | 35 ++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/www-apps/element/Manifest b/www-apps/element/Manifest index 1055413cda0..2bccaecd174 100644 --- a/www-apps/element/Manifest +++ b/www-apps/element/Manifest @@ -1 +1,2 @@ DIST element-v1.7.33.tar.gz 15425526 BLAKE2B 0cb13c5aa94a16e532f9ff4a8558b08c01afe1d5c8c4070bc9c26684571a316b2ce1265cd763ee4fe6c54b255313d489adc41e8dfc18f619ae3c2016b593087f SHA512 8b23d2e63cd69ec51cd053826d73f72be50a9662f2adcb7d8b86b0d2b32175038e77c3d00c2e37b39147565fc9fc1cb9c61be1f7a59d1f23e3c4d6316512912d +DIST element-v1.7.34.tar.gz 15635182 BLAKE2B b9926a7b2aba2189004c9c0885b25878479e4ca0b80053261601e7bca64703c7148403671e3a5783530cfd1d431c0b3ffc398c5bd2767d7b0a93472306c581e1 SHA512 96bc96d98677e7154790accd7fca8314aada7352d8b8c1a9cc1b18c65b78705db766e5238feda6a3601aabd1f487b115dbaaecd0f55354b752ea07730e2d2312 diff --git a/www-apps/element/element-1.7.34.ebuild b/www-apps/element/element-1.7.34.ebuild new file mode 100644 index 00000000000..0d6f2e6d2cb --- /dev/null +++ b/www-apps/element/element-1.7.34.ebuild @@ -0,0 +1,35 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit webapp + +DESCRIPTION="A glossy Matrix collaboration client for the web" +HOMEPAGE="https://element.io/" +SRC_URI="https://github.com/vector-im/element-web/releases/download/v${PV}/${PN}-v${PV}.tar.gz" + +LICENSE="Apache-2.0" +KEYWORDS="~amd64 ~x86" + +DEPEND="" +RDEPEND="${DEPEND}" +need_httpd + +S=${WORKDIR}/${PN}-v${PV} + +src_install() { + webapp_src_preinst + + insinto "${MY_HTDOCSDIR}" + doins -r . + + dodir "${MY_HTDOCSDIR}"/home + dodir "${MY_HTDOCSDIR}"/sites + + webapp_serverowned "${MY_HTDOCSDIR}"/home + webapp_serverowned "${MY_HTDOCSDIR}"/sites + #webapp_configfile "${MY_HTDOCSDIR}"/config.json + + webapp_src_install +}