From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Nov 4 02:50:08 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 34BAC106564A for ; Thu, 4 Nov 2010 02:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E3A1E8FC16 for ; Thu, 4 Nov 2010 02:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oA42o7a6047489 for ; Thu, 4 Nov 2010 02:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oA42o7uf047488; Thu, 4 Nov 2010 02:50:07 GMT (envelope-from gnats) Resent-Date: Thu, 4 Nov 2010 02:50:07 GMT Resent-Message-Id: <201011040250.oA42o7uf047488@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Raphael Kubo da Costa Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9387E1065675 for ; Thu, 4 Nov 2010 02:44:25 +0000 (UTC) (envelope-from kubito@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 4F4138FC21 for ; Thu, 4 Nov 2010 02:44:25 +0000 (UTC) Received: by gxk9 with SMTP id 9so1046997gxk.13 for ; Wed, 03 Nov 2010 19:44:24 -0700 (PDT) Received: by 10.100.132.19 with SMTP id f19mr83421and.206.1288838664598; Wed, 03 Nov 2010 19:44:24 -0700 (PDT) Received: from localhost ([201.82.189.219]) by mx.google.com with ESMTPS id d8sm6150871ana.2.2010.11.03.19.44.21 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 03 Nov 2010 19:44:23 -0700 (PDT) Message-Id: <4cd21e07.0837640a.5e20.27aa@mx.google.com> Date: Wed, 03 Nov 2010 19:44:23 -0700 (PDT) From: Raphael Kubo da Costa To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/151929: [PATCH] devel/mercurial 1.7 fails to install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Raphael Kubo da Costa List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Nov 2010 02:50:08 -0000 >Number: 151929 >Category: ports >Synopsis: [PATCH] devel/mercurial 1.7 fails to install >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 04 02:50:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Raphael Kubo da Costa >Release: FreeBSD 8.1-STABLE amd64 >Organization: >Environment: System: FreeBSD gibbon 8.1-STABLE FreeBSD 8.1-STABLE #17: Tue Oct 19 17:12:37 BRST 2010 root@gibbon:/usr/obj/usr/src/sys/GIBBON amd64 >Description: devel/mercurial fails when executing the 'install' target: for f in bash_completion convert-repo debugshell.py dumprevlog hg-ssh hgfixes/__init__.py hgfixes/fix_bytes.py hgfixes/fix_bytesmod.py hgfixes/fix_leftover_imports.py hgk logo-droplets.svg memory.py mercurial.el mergetools.hgrc mq.el perf.py pylintrc python-hook-examples.py sample.hgrc setup3k.py shrink-revlog.py simplemerge tcsh_completion tcsh_completion_build.sh tmplrewrite.py undumprevlog zsh_completion hgsh/Makefile hgsh/hgsh.c vim/HGAnnotate.vim vim/hg-menu.vim vim/hgcommand.vim vim/hgtest.vim vim/patchreview.txt vim/patchreview.vim; do /bin/cp -p /usr/ports/devel/mercurial/work/mercurial-1.7/contrib/${f} /usr/local/share/mercurial/contrib/${f}; done cp: /usr/local/share/mercurial/contrib/hgfixes/__init__.py: No such file or directory *** Error code 1 Stop in /usr/ports/devel/mercurial. >How-To-Repeat: cd /usr/ports/devel/mercurial && make && make install >Fix: The diff below should fix the issue. --- fix-mercurial-1.7-install begins here --- diff -uprN /usr/ports/devel/mercurial~/Makefile /usr/ports/devel/mercurial/Makefile --- /usr/ports/devel/mercurial~/Makefile 2010-11-03 20:20:33.000000000 -0200 +++ /usr/ports/devel/mercurial/Makefile 2010-11-04 00:42:39.000000000 -0200 @@ -85,6 +85,7 @@ post-install: .if !defined(NOPORTDATA) ${MKDIR} ${DATADIR} ${MKDIR} ${DATADIR}/contrib + ${MKDIR} ${DATADIR}/contrib/hgfixes ${MKDIR} ${DATADIR}/contrib/hgsh ${MKDIR} ${DATADIR}/contrib/vim for f in ${CONTRIB_FILES}; do \ --- fix-mercurial-1.7-install ends here --- >Release-Note: >Audit-Trail: >Unformatted: