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 498371382EE for ; Tue, 5 Jul 2016 12:25:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6BEF8E08AF; Tue, 5 Jul 2016 12:25:47 +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 CA4BAE08AF for ; Tue, 5 Jul 2016 12:25:46 +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 E72F2340CD2 for ; Tue, 5 Jul 2016 12:25:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E85C62430 for ; Tue, 5 Jul 2016 12:25:40 +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: <1467721531.e63b113e155e35be3e50875f8407a6e32f057e3d.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: e63b113e155e35be3e50875f8407a6e32f057e3d X-VCS-Branch: master Date: Tue, 5 Jul 2016 12:25:40 +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: 0cf52c3c-42cc-43f1-8f88-952cbc0dd1e5 X-Archives-Hash: 8cc9bdc6f4900831cb78a5d350069961 commit: e63b113e155e35be3e50875f8407a6e32f057e3d Author: Nicolas Bock gentoo org> AuthorDate: Tue Jul 5 12:14:27 2016 +0000 Commit: Nicolas Bock gentoo org> CommitDate: Tue Jul 5 12:25:31 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e63b113e dev-vcs/git-deps: Added instructions for html pages Package-Manager: portage-2.2.28 dev-vcs/git-deps/git-deps-9999.ebuild | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/dev-vcs/git-deps/git-deps-9999.ebuild b/dev-vcs/git-deps/git-deps-9999.ebuild index 3058952..b42af86 100644 --- a/dev-vcs/git-deps/git-deps-9999.ebuild +++ b/dev-vcs/git-deps/git-deps-9999.ebuild @@ -9,7 +9,7 @@ EGIT_BRANCH=master PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) -inherit git-r3 python-r1 +inherit eutils git-r3 python-r1 DESCRIPTION="git commit dependency analysis tool" HOMEPAGE="https://github.com/aspiers/git-deps" @@ -26,10 +26,19 @@ RDEPEND=" DEPEND="${RDEPEND}" REQUIRED_USE="${PYTHON_REQUIRED_USE}" +HTML_DOCS="html/." + src_install() { python_foreach_impl python_newexe git-deps.py git-deps + einstalldocs } pkg_postinst() { - einfo "Please run 'npm install browserify' to use git-deps with the web UI." + elog "Notes regarding the '--serve' option:" + elog "Please run 'npm install browserify' once" + elog "Copy the html sources:" + elog "rsync -av ${EROOT}/usr/share/${PN}/html ~/git-deps-html" + elog "cd ~/git-deps-html" + elog "npm install" + elog "browserify -t coffeeify -d js/git-deps-graph.coffee -o js/bundle.js" }