diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-09-08 22:54:24 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-09-08 22:54:24 +0000 |
commit | b060c5fdb6a0cd5321072f416f53a8a71154e963 (patch) | |
tree | 5876f62def46dfa1e1b8d6fd64f38372895dfe3a /eclass/git-2.eclass | |
parent | Remove qt-gui[dbus] USE dep, bug 484184. (diff) | |
download | historical-b060c5fdb6a0cd5321072f416f53a8a71154e963.tar.gz historical-b060c5fdb6a0cd5321072f416f53a8a71154e963.tar.bz2 historical-b060c5fdb6a0cd5321072f416f53a8a71154e963.zip |
Inherit git-r3 unconditionally to avoid metadata variancy. The eclass is properly namespaced, does not touch variables in global scope and exports only src_unpack() that git-2 overrides anyway.
Diffstat (limited to 'eclass/git-2.eclass')
-rw-r--r-- | eclass/git-2.eclass | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/eclass/git-2.eclass b/eclass/git-2.eclass index 121875033710..9efd3359add6 100644 --- a/eclass/git-2.eclass +++ b/eclass/git-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.31 2013/09/05 20:39:41 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/git-2.eclass,v 1.32 2013/09/08 22:54:24 mgorny Exp $ # @ECLASS: git-2.eclass # @MAINTAINER: @@ -17,9 +17,8 @@ # Use git-r3 backend instead of classic git-2 behavior. This is intended # for early testing of git-r3 and is to be set in make.conf. -if [[ ${EGIT_USE_GIT_R3} ]]; then - inherit git-r3 -fi +# (since we override src_unpack this doesn't hurt) +inherit git-r3 # This eclass support all EAPIs EXPORT_FUNCTIONS src_unpack |