From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A15FD138A1A for ; 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 ; 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 ; 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 ; Sat, 17 Jan 2015 23:52:30 +0000 (UTC) From: "Ulrich Müller" 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" 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: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail 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 gentoo org> AuthorDate: Sat Jan 17 23:56:57 2015 +0000 Commit: Ulrich Müller gentoo 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 + + * configure.ac (EXTRAVERSION): Use "git describe --long". + 2015-01-17 Ulrich Müller * 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