diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-03-24 21:32:31 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-03-24 21:32:31 +0000 |
commit | 20750910398bea79bbb54e053cbf3aa37df1a849 (patch) | |
tree | 855b3b7ce151b71ff3aecac3dfa9c04e92303f48 /eclass | |
parent | removed removal mask media-plugins/vdr-amarok, see #42455 (diff) | |
download | historical-20750910398bea79bbb54e053cbf3aa37df1a849.tar.gz historical-20750910398bea79bbb54e053cbf3aa37df1a849.tar.bz2 historical-20750910398bea79bbb54e053cbf3aa37df1a849.zip |
Add a single+tags mode to handle Google Code more efficiently, bug #503708.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/git-r3.eclass | 32 |
2 files changed, 31 insertions, 6 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 4ce7af9ad8e1..b62e7300ccb6 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1182 2014/03/21 22:03:00 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1183 2014/03/24 21:32:31 mgorny Exp $ + + 24 Mar 2014; Michał Górny <mgorny@gentoo.org> git-r3.eclass: + Add a single+tags mode to handle Google Code more efficiently, bug #503708. 21 Mar 2014; Robin H. Johnson <robbat2@gentoo.org> linux-info.eclass: linux-info: Bug #504346: Change one message from error to warning, kernel diff --git a/eclass/git-r3.eclass b/eclass/git-r3.eclass index 777ee505d79a..4c18baca7ec7 100644 --- a/eclass/git-r3.eclass +++ b/eclass/git-r3.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.39 2014/03/03 21:45:06 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.40 2014/03/24 21:32:31 mgorny Exp $ # @ECLASS: git-r3.eclass # @MAINTAINER: @@ -47,6 +47,14 @@ fi # for development or hosting a local git mirror. However, clones # of repositories with large diverged branches may quickly grow large. # +# The 'single+tags' type clones the requested branch and all tags +# in the repository. All notes are fetched as well. EGIT_COMMIT +# can safely specify hashes throughout the current branch and all tags. +# No purging of old references is done (if you often switch branches, +# you may need to remove stale branches yourself). This mode is intended +# mostly for use with broken git servers such as Google Code that fail +# to fetch tags along with the branch in 'single' mode. +# # The 'single' type clones only the requested branch or tag. Tags # referencing commits throughout the branch history are fetched as well, # and all notes. EGIT_COMMIT can safely specify only hashes @@ -72,9 +80,10 @@ fi # supposed to set EGIT_CLONE_TYPE instead. # # A common case is to use 'single' whenever the build system requires -# access to full branch history or the remote (Google Code) does not -# support shallow clones. Please use sparingly, and to fix fatal errors -# rather than 'non-pretty versions'. +# access to full branch history, or 'single+tags' when Google Code +# or a similar remote is used that does not support shallow clones +# and fetching tags along with commits. Please use sparingly, and to fix +# fatal errors rather than 'non-pretty versions'. : ${EGIT_MIN_CLONE_TYPE:=shallow} # @ECLASS-VARIABLE: EGIT3_STORE_DIR @@ -154,7 +163,7 @@ _git-r3_env_setup() { # check the clone type case "${EGIT_CLONE_TYPE}" in - mirror|single|shallow) + mirror|single+tags|single|shallow) ;; *) die "Invalid EGIT_CLONE_TYPE=${EGIT_CLONE_TYPE}" @@ -168,6 +177,12 @@ _git-r3_env_setup() { EGIT_CLONE_TYPE=single fi ;; + single+tags) + if [[ ${EGIT_CLONE_TYPE} == shallow || ${EGIT_CLONE_TYPE} == single ]]; then + einfo "git-r3: ebuild needs to be cloned in 'single+tags' mode, adjusting" + EGIT_CLONE_TYPE=single+tags + fi + ;; mirror) if [[ ${EGIT_CLONE_TYPE} != mirror ]]; then einfo "git-r3: ebuild needs to be cloned in 'mirror' mode, adjusting" @@ -510,6 +525,13 @@ git-r3_fetch() { fetch_command+=( "+${fetch_l}:${fetch_r}" ) + + if [[ ${EGIT_CLONE_TYPE} == single+tags ]]; then + fetch_command+=( + # pull tags explicitly as requested + "+refs/tags/*:refs/tags/*" + ) + fi fi if [[ ${EGIT_CLONE_TYPE} == shallow ]]; then |