From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-765050-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id A15FD138A1A
	for <garchives@archives.gentoo.org>; Sat, 17 Jan 2015 23:52:33 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 25AD7E08A6;
	Sat, 17 Jan 2015 23:52:33 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id B756CE08A6
	for <gentoo-commits@lists.gentoo.org>; Sat, 17 Jan 2015 23:52:32 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id C34E23406A1
	for <gentoo-commits@lists.gentoo.org>; Sat, 17 Jan 2015 23:52:31 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 719FDFCDB
	for <gentoo-commits@lists.gentoo.org>; Sat, 17 Jan 2015 23:52:30 +0000 (UTC)
From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" <ulm@gentoo.org>
Message-ID: <1421539017.54c428513a6a7d4d2b773f056237f4ee2cd8d857.ulm@gentoo>
Subject: [gentoo-commits] proj/eselect:master commit in: /
X-VCS-Repository: proj/eselect
X-VCS-Files: ChangeLog configure.ac
X-VCS-Directories: /
X-VCS-Committer: ulm
X-VCS-Committer-Name: Ulrich Müller
X-VCS-Revision: 54c428513a6a7d4d2b773f056237f4ee2cd8d857
X-VCS-Branch: master
Date: Sat, 17 Jan 2015 23:52:30 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 96587b31-3539-4289-b093-7ee73f78be87
X-Archives-Hash: ab11f8789cac8fbdf21aadb88eafdeb9

commit:     54c428513a6a7d4d2b773f056237f4ee2cd8d857
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 17 23:56:57 2015 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Jan 17 23:56:57 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=54c42851

Use "git describe --long" in configure.

* configure.ac (EXTRAVERSION): Use "git describe --long".

---
 ChangeLog    | 4 ++++
 configure.ac | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 01b8d14..22cab2a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-18  Ulrich Müller  <ulm@gentoo.org>
+
+	* configure.ac (EXTRAVERSION): Use "git describe --long".
+
 2015-01-17  Ulrich Müller  <ulm@gentoo.org>
 
 	* modules/rc.eselect: Be compatible with new OpenRC, bug 536822.

diff --git a/configure.ac b/configure.ac
index ab6e76a..d2eb07d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -78,7 +78,7 @@ AC_SUBST(EPREFIX)
 AC_MSG_CHECKING([whether building from git])
 EXTRAVERSION=""
 if test -d ${GIT_DIR:-.git}; then
-    COMMIT=`git describe --always HEAD`
+    COMMIT=`git describe --long --always HEAD`
     if test x$COMMIT != x; then
         EXTRAVERSION=", git commit $COMMIT"
     fi