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 D0B1F1382E6 for ; Mon, 4 Jul 2016 05:02:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA718E09FC; Mon, 4 Jul 2016 05:02:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 559CBE09FC for ; Mon, 4 Jul 2016 05:02:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CFC5C340CEA for ; Mon, 4 Jul 2016 05:02:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0695113FF for ; Mon, 4 Jul 2016 05:02:24 +0000 (UTC) From: "Nicolas Bock" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicolas Bock" Message-ID: <1467608527.9d222ad30ef25c872ba3beafef9efbd6a7f1b38d.nicolasbock@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-deps/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git-deps/git-deps-9999.ebuild X-VCS-Directories: dev-vcs/git-deps/ X-VCS-Committer: nicolasbock X-VCS-Committer-Name: Nicolas Bock X-VCS-Revision: 9d222ad30ef25c872ba3beafef9efbd6a7f1b38d X-VCS-Branch: master Date: Mon, 4 Jul 2016 05:02:24 +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-Archives-Salt: 5dcfc488-94da-47cb-9d46-812c1f299d3f X-Archives-Hash: 3a76faa6d1ab4ebe989393aefd37f235 commit: 9d222ad30ef25c872ba3beafef9efbd6a7f1b38d Author: Nicolas Bock gentoo org> AuthorDate: Sun Jul 3 06:58:03 2016 +0000 Commit: Nicolas Bock gentoo org> CommitDate: Mon Jul 4 05:02:07 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d222ad3 dev-vcs/git-deps: Added first draft of enabling server mode Package-Manager: portage-2.2.28 dev-vcs/git-deps/git-deps-9999.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-vcs/git-deps/git-deps-9999.ebuild b/dev-vcs/git-deps/git-deps-9999.ebuild index d8c27be..3058952 100644 --- a/dev-vcs/git-deps/git-deps-9999.ebuild +++ b/dev-vcs/git-deps/git-deps-9999.ebuild @@ -18,7 +18,9 @@ LICENSE="GPL-2" SLOT="0" RDEPEND=" + dev-python/flask dev-python/pygit2 + net-libs/nodejs ${PYTHON_DEPS} " DEPEND="${RDEPEND}" @@ -27,3 +29,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}" src_install() { python_foreach_impl python_newexe git-deps.py git-deps } + +pkg_postinst() { + einfo "Please run 'npm install browserify' to use git-deps with the web UI." +}