From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Oorxl-0003MZ-Hz for garchives@archives.gentoo.org; Fri, 27 Aug 2010 05:58:53 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2ED43E0A98; Fri, 27 Aug 2010 05:58:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D00FFE0A98 for ; Fri, 27 Aug 2010 05:58:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 7F2B81B4067 for ; Fri, 27 Aug 2010 05:58:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at gentoo.org X-Spam-Score: -2.918 X-Spam-Level: X-Spam-Status: No, score=-2.918 required=5.5 tests=[AWL=-0.319, BAYES_00=-2.599] Received: from smtp.gentoo.org ([127.0.0.1]) by localhost (smtp.gentoo.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id kFlgxhkJpjCQ for ; Fri, 27 Aug 2010 05:58:38 +0000 (UTC) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by smtp.gentoo.org (Postfix) with ESMTP id 3C46E1B406E for ; Fri, 27 Aug 2010 05:58:35 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OorxQ-0000w4-CH for gentoo-devhelp@gentoo.org; Fri, 27 Aug 2010 07:58:32 +0200 Received: from athedsl-374048.home.otenet.gr ([79.131.13.30]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 27 Aug 2010 07:58:32 +0200 Received: from realnc by athedsl-374048.home.otenet.gr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 27 Aug 2010 07:58:32 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: gentoo-devhelp@lists.gentoo.org From: Nikos Chantziaras Subject: [gentoo-devhelp] How do I select a specific Git "head" in live ebuilds? Date: Fri, 27 Aug 2010 08:58:38 +0300 Organization: Lucas Barks Message-ID: Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Development-related help X-BeenThere: gentoo-devhelp@gentoo.org X-BeenThere: gentoo-devhelp@lists.gentoo.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: athedsl-374048.home.otenet.gr User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100806 Thunderbird/3.1.2 X-Archives-Salt: bd391012-7759-4f9e-9424-f6a71d8ed301 X-Archives-Hash: 477e84f46b66fd5891b9b8290df4931c I am trying to create an ebuild that fetches a specific head from a Git repo. As you can see here: http://lmms.git.sourceforge.net/git/gitweb.cgi?p=lmms/lmms;a=summary There are several "heads" listed: master, stable-0.4, calf-updates, etc. By default, the git eclass uses "master". I tried putting: EGIT_BRANCH="stable-0.4" in the ebuild. But this doesn't seem to help; "master" is emerged instead of "stable-0.4". What am I doing wrong?