From owner-svn-ports-all@FreeBSD.ORG Sun Nov 10 14:00:10 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 699CD3BD; Sun, 10 Nov 2013 14:00:10 +0000 (UTC) (envelope-from mat@mat.cc) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2B0E72C53; Sun, 10 Nov 2013 14:00:10 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id BCB50BDC30; Sun, 10 Nov 2013 15:00:08 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=mat.cc; h=date:from:to :subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; s=plouf; bh=owxSEM+gMtv 8snnLxrGfm3Ee2NA=; b=b/VKySaj27hjsO6kjnfzC268+DSR3NcjVZ4C4S9buAq wJM0BkhKs43GhhRanV2+CRYBs9BaLS/6poAZi9hcd99JeibQ5ICq2xmtslDKw7h7 sz6JwnEQ7fWXuJo6n1bzlAkEuZ7fimRZYHR/BjvUG+uQzQFS0CCu4URUOm2MJfuQ = Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id 9ADB0BDC1D; Sun, 10 Nov 2013 15:00:08 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 6DE6FC72C960; Sun, 10 Nov 2013 15:00:03 +0100 (CET) Date: Sun, 10 Nov 2013 15:00:00 +0100 From: Mathieu Arnold To: Adam Weinberger , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r333364 - head/textproc/multimarkdown Message-ID: In-Reply-To: <201311100435.rAA4ZGjX092946@svn.freebsd.org> References: <201311100435.rAA4ZGjX092946@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Nov 2013 14:00:10 -0000 +--On 10 novembre 2013 04:35:16 +0000 Adam Weinberger wrote: | Log: | Avoid re-fetching if it was already completed. Hum, it may have come up, but why download the sources with git when you could get it with the various GH_* variables ? | Deleted: | head/textproc/multimarkdown/distinfo | Modified: | head/textproc/multimarkdown/Makefile | | Modified: head/textproc/multimarkdown/Makefile | ========================================================================= | ===== --- head/textproc/multimarkdown/Makefile Sun Nov 10 01:27:27 2013 | (r333363) +++ head/textproc/multimarkdown/Makefile Sun Nov 10 04:35:16 | 2013 (r333364) @@ -32,11 +32,13 @@ CONFLICTS_INSTALL= mtools-* | .endif | | do-fetch: | - ${MKDIR} ${WRKDIR} | - cd ${WRKDIR} && git clone | https://github.com/fletcher/MultiMarkdown-4.git - cd ${WRKSRC} && git | checkout ${PORTVERSION} | - cd ${WRKSRC} && git submodule init | - cd ${WRKSRC} && git submodule update | + @if [ ! -e ${WRKSRC}/greg/Makefile ]; then \ | + ${MKDIR} ${WRKDIR}; \ | + cd ${WRKDIR} && git clone | https://github.com/fletcher/MultiMarkdown-4.git; \ + cd ${WRKSRC} && git | checkout ${PORTVERSION}; \ | + cd ${WRKSRC} && git submodule init; \ | + cd ${WRKSRC} && git submodule update; \ | + fi | | do-extract: | @${DO_NADA} #normally do-extract starts with an rm -rf ${WRKSRC} | -- Mathieu Arnold