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 19CCA1580B2 for ; Fri, 3 Sep 2021 19:45:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63910E08EC; Fri, 3 Sep 2021 19:45:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 483CDE08EC for ; Fri, 3 Sep 2021 19:45:53 +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 F1E3033BE34 for ; Fri, 3 Sep 2021 19:45:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C7D57E for ; Fri, 3 Sep 2021 19:45:50 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1630698341.f0c8d2359cc0805bb5ec3078556d2f1ceac05a0c.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/jupyterlab/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/jupyterlab/jupyterlab-3.1.10.ebuild X-VCS-Directories: dev-python/jupyterlab/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: f0c8d2359cc0805bb5ec3078556d2f1ceac05a0c X-VCS-Branch: master Date: Fri, 3 Sep 2021 19:45:50 +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: 4a28a474-a0d8-4222-93f5-9f8bf777aabf X-Archives-Hash: 23d7c8a9a41e637cf3c8c5ba2bc5bc22 commit: f0c8d2359cc0805bb5ec3078556d2f1ceac05a0c Author: Andrew Ammerlaan gentoo org> AuthorDate: Fri Sep 3 19:45:41 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri Sep 3 19:45:41 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=f0c8d235 dev-python/jupyterlab: build assets in postinst Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/jupyterlab/jupyterlab-3.1.10.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-python/jupyterlab/jupyterlab-3.1.10.ebuild b/dev-python/jupyterlab/jupyterlab-3.1.10.ebuild index c57e032ef..415bfa0ad 100644 --- a/dev-python/jupyterlab/jupyterlab-3.1.10.ebuild +++ b/dev-python/jupyterlab/jupyterlab-3.1.10.ebuild @@ -32,3 +32,7 @@ RDEPEND=" distutils_enable_tests pytest # TODO: package myst_parser #distutils_enable_sphinx docs/source dev-python/sphinx_rtd_theme + +pkg_postinst() { + jupyter-lab build || die "Failed to build jupyter assets" +}