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 0B30E138334 for ; Thu, 28 Mar 2019 17:27:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1013E0B29; Thu, 28 Mar 2019 17:27:33 +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 CED7AE0B29 for ; Thu, 28 Mar 2019 17:27:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 8AD11335C3F for ; Thu, 28 Mar 2019 17:27:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36497520 for ; Thu, 28 Mar 2019 17:27:31 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1553794045.fa555fd699a20d1c3cf379baa3f2666196fb9b29.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/mercurial/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/mercurial/mercurial-4.9-r1.ebuild dev-vcs/mercurial/mercurial-4.9.ebuild X-VCS-Directories: dev-vcs/mercurial/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: fa555fd699a20d1c3cf379baa3f2666196fb9b29 X-VCS-Branch: master Date: Thu, 28 Mar 2019 17:27:31 +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: 06af60d8-8baf-48e7-8399-3b06687416f2 X-Archives-Hash: c756559afcf697eb0443dcb475dea0d8 commit: fa555fd699a20d1c3cf379baa3f2666196fb9b29 Author: Thomas Schneider qsx re> AuthorDate: Thu Mar 28 17:23:13 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Mar 28 17:27:25 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa555fd6 dev-vcs/mercurial: Install contrib/chg Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Thomas Schneider qsx.re> Closes: https://github.com/gentoo/gentoo/pull/11525 Signed-off-by: Lars Wendler gentoo.org> dev-vcs/mercurial/{mercurial-4.9.ebuild => mercurial-4.9-r1.ebuild} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-vcs/mercurial/mercurial-4.9.ebuild b/dev-vcs/mercurial/mercurial-4.9-r1.ebuild similarity index 96% rename from dev-vcs/mercurial/mercurial-4.9.ebuild rename to dev-vcs/mercurial/mercurial-4.9-r1.ebuild index e0bacc4958f..2c1934673ed 100644 --- a/dev-vcs/mercurial/mercurial-4.9.ebuild +++ b/dev-vcs/mercurial/mercurial-4.9-r1.ebuild @@ -58,6 +58,7 @@ python_configure_all() { python_compile_all() { rm -r contrib/win32 || die + emake -C contrib/chg if use emacs; then cd contrib || die elisp-compile mercurial.el || die "elisp-compile failed!" @@ -85,7 +86,10 @@ python_install_all() { elisp-site-file-install "${FILESDIR}"/${SITEFILE} fi - local RM_CONTRIB=( hgk hg-ssh bash_completion zsh_completion wix plan9 *.el ) + dobin contrib/chg/chg + doman contrib/chg/chg.1 + + local RM_CONTRIB=( chg hgk hg-ssh bash_completion zsh_completion wix plan9 *.el ) for f in ${RM_CONTRIB[@]}; do rm -r contrib/${f} || die done