From owner-svn-ports-all@FreeBSD.ORG Sun Nov 10 15:34:21 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 F0CEE1BE; Sun, 10 Nov 2013 15:34:20 +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 B11FC2103; Sun, 10 Nov 2013 15:34:20 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 4F14DBDC3E; Sun, 10 Nov 2013 16:34:19 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=mat.cc; h=date:from:to:cc :subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; s=plouf; bh=nTgkhWsH+xq 99c7UkBsv4MrawLc=; b=v/+E6dsPBJO+GwJFvnHNLt+j7BoK0NbXDCHB8CJ90UT ZkRWJsOvb7FolAmkvKOknlmsxk9I+BPmgbBHYGgxtYASDWnDlYK/XdRpc9Z1F8rS TNaT72qVWEhMJOjk+EIZ5y1GgCPDOzY9rHVKrL4jmlzSfYuhQRRpNHoLkQnJMYPQ = Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id 29F0EBDC24; Sun, 10 Nov 2013 16:34:19 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 7FBF2C72D8B2; Sun, 10 Nov 2013 16:34:17 +0100 (CET) Date: Sun, 10 Nov 2013 16:34:15 +0100 From: Mathieu Arnold To: Adam Weinberger Subject: Re: svn commit: r333364 - head/textproc/multimarkdown Message-ID: <3D6AC7C311D0A4CC2F145448@atuin.in.mat.cc> In-Reply-To: <20131110151152.GA15285@apnoea.adamw.org> References: <201311100435.rAA4ZGjX092946@svn.freebsd.org> <20131110151152.GA15285@apnoea.adamw.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 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org 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 15:34:21 -0000 +--On 10 novembre 2013 10:11:52 -0500 Adam Weinberger wrote: |>> (2013/11/10 @ 0900 EST): Mathieu Arnold said, in 1.4K: << |> +--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 ? |> |>> end of "Re: svn commit: r333364 - head/textproc/multimarkdown" from |>> Mathieu Arnold << | | I keep getting asked this question; maybe I should add it to the | Makefile. | | This project depends on submodules for which there have been no tagged | github releases, so there are no github tarballs available. The only way | to fetch those sources is to check them out by hand, or make and | distribute my own tarballs which I have no interest in doing. Hum, ok, that's (almost) a good reason 0:-) You really need to have a release to get a github tarball, all you need is the hash of the commit you want to get. I have a lot of local ports coming from github that have the date and time as PORTVERSION and only need the hash of the commit, a bit like : PORTNAME= vim-puppet PORTVERSION= 2013102117 ... USE_GITHUB= yes GH_ACCOUNT= rodjek GH_COMMIT= 4e78429 GH_TAGNAME= ${GH_COMMIT} But it's easier to get it all at once with a git checkout, I get it :-) -- Mathieu Arnold