blob: 98f09536bfb3f6572571fdbf59f2996197026650 [file] [log] [blame]
David Rochberg5fe8ba22010-05-24 16:21:52 -04001# Copyright 1999-2009 Gentoo Foundation
2# Distributed under the terms of the GNU General Public License v2
3# $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.43 2010/02/24 01:16:35 abcd Exp $
4
5# @ECLASS: git.eclass
6# @MAINTAINER:
7# Tomas Chvatal <scarabeus@gentoo.org>
8# Donnie Berkholz <dberkholz@gentoo.org>
9# @BLURB: This eclass provides functions for fetch and unpack git repositories
10# @DESCRIPTION:
11# The eclass is based on subversion eclass.
12# If you use this eclass, the ${S} is ${WORKDIR}/${P}.
13# It is necessary to define the EGIT_REPO_URI variable at least.
14# @THANKS TO:
15# Fernando J. Pereda <ferdy@gentoo.org>
16
17inherit eutils
18
19EGIT="git.eclass"
20
21# We DEPEND on at least a bit recent git version
22DEPEND=">=dev-util/git-1.6"
23
24EXPORTED_FUNCTIONS="src_unpack"
25case "${EAPI:-0}" in
26 3|2) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare" ;;
27 1|0) ;;
28 :) DEPEND="EAPI-UNSUPPORTED" ;;
29esac
30EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS}
31
32# define some nice defaults but only if nothing is set already
33: ${HOMEPAGE:=http://git-scm.com/}
34
35# @ECLASS-VARIABLE: EGIT_QUIET
36# @DESCRIPTION:
37# Enables user specified verbosity for the eclass elog informations.
38# The user just needs to add EGIT_QUIET="ON" to the /etc/make.conf.
39: ${EGIT_QUIET:="OFF"}
40
41# @ECLASS-VARIABLE: EGIT_STORE_DIR
42# @DESCRIPTION:
43# Storage directory for git sources.
44# Can be redefined.
45[[ -z ${EGIT_STORE_DIR} ]] && EGIT_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/git-src"
46
47# @ECLASS-VARIABLE: EGIT_HAS_SUBMODULES
48# @DESCRIPTION:
49# Set this to "true" to enable the (slower) submodule support.
50# This variable should be set before inheriting git.eclass
51: ${EGIT_HAS_SUBMODULES:=false}
52
53# @ECLASS-VARIABLE: EGIT_FETCH_CMD
54# @DESCRIPTION:
55# Command for cloning the repository.
56: ${EGIT_FETCH_CMD:="git clone"}
57
58# @ECLASS-VARIABLE: EGIT_UPDATE_CMD
59# @DESCRIPTION:
60# Git fetch command.
61if ${EGIT_HAS_SUBMODULES}; then
62 EGIT_UPDATE_CMD="git pull -f -u"
63else
64 EGIT_UPDATE_CMD="git fetch -f -u"
65fi
66
67# @ECLASS-VARIABLE: EGIT_DIFFSTAT_CMD
68# @DESCRIPTION:
69# Git command for diffstat.
70EGIT_DIFFSTAT_CMD="git --no-pager diff --stat"
71
72# @ECLASS-VARIABLE: EGIT_OPTIONS
73# @DESCRIPTION:
74# This variable value is passed to clone and fetch.
75: ${EGIT_OPTIONS:=}
76
77# @ECLASS-VARIABLE: EGIT_MASTER
78# @DESCRIPTION:
79# Variable for specifying master branch.
80# Usefull when upstream don't have master branch.
81: ${EGIT_MASTER:=master}
82
83# @ECLASS-VARIABLE: EGIT_REPO_URI
84# @DESCRIPTION:
85# URI for the repository
86# e.g. http://foo, git://bar
87# Supported protocols:
88# http://
89# https://
90# git://
91# git+ssh://
92# rsync://
93# ssh://
94eval X="\$${PN//[-+]/_}_LIVE_REPO"
95if [[ ${X} = "" ]]; then
96 EGIT_REPO_URI=${EGIT_REPO_URI:=}
97else
98 EGIT_REPO_URI="${X}"
99fi
100# @ECLASS-VARIABLE: EGIT_PROJECT
101# @DESCRIPTION:
102# Project name of your ebuild.
103# Git eclass will check out the git repository like:
104# ${EGIT_STORE_DIR}/${EGIT_PROJECT}/${EGIT_REPO_URI##*/}
105# so if you define EGIT_REPO_URI as http://git.collab.net/repo/git or
106# http://git.collab.net/repo/git. and PN is subversion-git.
107# it will check out like:
108# ${EGIT_STORE_DIR}/subversion
109: ${EGIT_PROJECT:=${PN/-git}}
110
111# @ECLASS-VARIABLE: EGIT_BOOTSTRAP
112# @DESCRIPTION:
113# bootstrap script or command like autogen.sh or etc...
114: ${EGIT_BOOTSTRAP:=}
115
116# @ECLASS-VARIABLE: EGIT_OFFLINE
117# @DESCRIPTION:
118# Set this variable to a non-empty value to disable the automatic updating of
119# an GIT source tree. This is intended to be set outside the git source
120# tree by users.
121EGIT_OFFLINE="${EGIT_OFFLINE:-${ESCM_OFFLINE}}"
122
123# @ECLASS-VARIABLE: EGIT_PATCHES
124# @DESCRIPTION:
125# Similar to PATCHES array from base.eclass
126# Only difference is that this patches are applied before bootstrap.
127# Please take note that this variable should be bash array.
128
129# @ECLASS-VARIABLE: EGIT_BRANCH
130# @DESCRIPTION:
131# git eclass can fetch any branch in git_fetch().
132eval X="\$${PN//[-+]/_}_LIVE_BRANCH"
133if [[ ${X} = "" ]]; then
134 EGIT_BRANCH=${EGIT_BRANCH:=master}
135else
136 EGIT_BRANCH="${X}"
137fi
138
139# @ECLASS-VARIABLE: EGIT_COMMIT
140# @DESCRIPTION:
141# git eclass can checkout any commit.
142eval X="\$${PN//[-+]/_}_LIVE_COMMIT"
143if [[ ${X} = "" ]]; then
144 : ${EGIT_COMMIT:=${EGIT_BRANCH}}
145else
146 EGIT_COMMIT="${X}"
147fi
148
149# @ECLASS-VARIABLE: EGIT_REPACK
150# @DESCRIPTION:
151# git eclass will repack objects to save disk space. However this can take a
152# long time with VERY big repositories.
153: ${EGIT_REPACK:=false}
154
155# @ECLASS-VARIABLE: EGIT_PRUNE
156# @DESCRIPTION:
157# git eclass can prune the local clone. This is useful if upstream rewinds and
158# rebases branches too often.
159: ${EGIT_PRUNE:=false}
160
161# @FUNCTION: git_submodules
162# @DESCRIPTION:
163# Internal function wrapping the submodule initialisation and update
164git_submodules() {
165 if ${EGIT_HAS_SUBMODULES}; then
166 debug-print "git submodule init"
167 git submodule init
168 debug-print "git submodule update"
169 git submodule update
170 fi
171}
172
173# @FUNCTION: git_branch
174# @DESCRIPTION:
175# Internal function that changes branch for the repo based on EGIT_TREE and
176# EGIT_BRANCH variables.
177git_branch() {
178 local branchname=branch-${EGIT_BRANCH} src=origin/${EGIT_BRANCH}
179 if [[ ${EGIT_COMMIT} != ${EGIT_BRANCH} ]]; then
180 branchname=tree-${EGIT_COMMIT}
181 src=${EGIT_COMMIT}
182 fi
183 debug-print "git checkout -b ${branchname} ${src}"
184 git checkout -b ${branchname} ${src} &> /dev/null
185
186 unset branchname src
187}
188
189# @FUNCTION: git_fetch
190# @DESCRIPTION:
191# Gets repository from EGIT_REPO_URI and store it in specified EGIT_STORE_DIR
192git_fetch() {
193 debug-print-function ${FUNCNAME} "$@"
194
195 local GIT_DIR EGIT_CLONE_DIR oldsha1 cursha1 extra_clone_opts upstream_branch
196 ${EGIT_HAS_SUBMODULES} || export GIT_DIR
197
198 # choose if user wants elog or just einfo.
199 if [[ ${EGIT_QUIET} != OFF ]]; then
200 elogcmd="einfo"
201 else
202 elogcmd="elog"
203 fi
204
205 # If we have same branch and the tree we can do --depth 1 clone
206 # which outputs into really smaller data transfers.
207 # Sadly we can do shallow copy for now because quite a few packages need .git
208 # folder.
209 #[[ ${EGIT_COMMIT} = ${EGIT_BRANCH} ]] && \
210 # EGIT_FETCH_CMD="${EGIT_FETCH_CMD} --depth 1"
211 if [[ ! -z ${EGIT_TREE} ]] ; then
212 EGIT_COMMIT=${EGIT_TREE}
213 ewarn "QA: Usage of deprecated EGIT_TREE variable detected."
214 ewarn "QA: Use EGIT_COMMIT variable instead."
215 fi
216
217 # EGIT_REPO_URI is empty.
218 [[ -z ${EGIT_REPO_URI} ]] && die "${EGIT}: EGIT_REPO_URI is empty."
219
220 # check for the protocol or pull from a local repo.
221 if [[ -z ${EGIT_REPO_URI%%:*} ]] ; then
222 case ${EGIT_REPO_URI%%:*} in
223 git*|http|https|rsync|ssh) ;;
224 *) die "${EGIT}: protocol for fetch from "${EGIT_REPO_URI%:*}" is not yet implemented in eclass." ;;
225 esac
226 fi
227
228 # initial clone, we have to create master git storage directory and play
229 # nicely with sandbox
230 if [[ ! -d ${EGIT_STORE_DIR} ]] ; then
231 debug-print "${FUNCNAME}: initial clone. creating git directory"
232 addwrite /
Eric Shienbroodc906c322010-06-02 19:32:05 -0400233 # TODO(ers): Remove this workaround once we figure out how to make
234 # sure the directories are owned by the user instead of by root.
235 local old_umask="`umask`"
236 umask 002
David Rochberg5fe8ba22010-05-24 16:21:52 -0400237 mkdir -p "${EGIT_STORE_DIR}" \
238 || die "${EGIT}: can't mkdir ${EGIT_STORE_DIR}."
Eric Shienbroodc906c322010-06-02 19:32:05 -0400239 umask ${old_umask}
David Rochberg5fe8ba22010-05-24 16:21:52 -0400240 export SANDBOX_WRITE="${SANDBOX_WRITE%%:/}"
David Rochberg5fe8ba22010-05-24 16:21:52 -0400241 fi
242
243 cd -P "${EGIT_STORE_DIR}" || die "${EGIT}: can't chdir to ${EGIT_STORE_DIR}"
244 EGIT_STORE_DIR=${PWD}
245
246 # allow writing into EGIT_STORE_DIR
247 addwrite "${EGIT_STORE_DIR}"
248
249 [[ -z ${EGIT_REPO_URI##*/} ]] && EGIT_REPO_URI="${EGIT_REPO_URI%/}"
250 EGIT_CLONE_DIR="${EGIT_PROJECT}"
251
252 debug-print "${FUNCNAME}: EGIT_OPTIONS = \"${EGIT_OPTIONS}\""
253
254 GIT_DIR="${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}"
255 # we also have to remove all shallow copied repositories
256 # and fetch them again
257 if [[ -e "${GIT_DIR}/shallow" ]]; then
258 rm -rf "${GIT_DIR}"
259 einfo "The ${EGIT_CLONE_DIR} was shallow copy. Refetching."
260 fi
261 # repack from bare copy to normal one
262 if ${EGIT_HAS_SUBMODULES} && [[ -d ${GIT_DIR} && ! -d "${GIT_DIR}/.git/" ]]; then
263 rm -rf "${GIT_DIR}"
264 einfo "The ${EGIT_CLONE_DIR} was bare copy. Refetching."
265 fi
266 if ! ${EGIT_HAS_SUBMODULES} && [[ -d ${GIT_DIR} && -d ${GIT_DIR}/.git ]]; then
267 rm -rf "${GIT_DIR}"
268 einfo "The ${EGIT_CLONE_DIR} was not a bare copy. Refetching."
269 fi
270
271 if ${EGIT_HAS_SUBMODULES}; then
272 upstream_branch=origin/${EGIT_BRANCH}
273 else
274 upstream_branch=${EGIT_BRANCH}
275 extra_clone_opts=--bare
276 fi
277
278 if [[ ! -d ${GIT_DIR} ]] ; then
279 # first clone
280 ${elogcmd} "GIT NEW clone -->"
281 ${elogcmd} " repository: ${EGIT_REPO_URI}"
282
283 debug-print "${EGIT_FETCH_CMD} ${extra_clone_opts} ${EGIT_OPTIONS} \"${EGIT_REPO_URI}\" ${GIT_DIR}"
Eric Shienbroodc906c322010-06-02 19:32:05 -0400284 # TODO(ers): Remove this workaround once we figure out how to make
285 # sure the directories are owned by the user instead of by root.
Eric Shienbrood7a097ba2010-06-02 13:31:37 -0400286 local old_umask="`umask`"
287 umask 002
David Rochberg5fe8ba22010-05-24 16:21:52 -0400288 ${EGIT_FETCH_CMD} ${extra_clone_opts} ${EGIT_OPTIONS} "${EGIT_REPO_URI}" ${GIT_DIR} \
289 || die "${EGIT}: can't fetch from ${EGIT_REPO_URI}."
290
Eric Shienbrood7a097ba2010-06-02 13:31:37 -0400291 umask ${old_umask}
David Rochberg5fe8ba22010-05-24 16:21:52 -0400292 pushd "${GIT_DIR}" &> /dev/null
293 cursha1=$(git rev-parse ${upstream_branch})
294 ${elogcmd} " at the commit: ${cursha1}"
295
296 git_submodules
297 popd &> /dev/null
298 elif [[ -n ${EGIT_OFFLINE} ]] ; then
299 pushd "${GIT_DIR}" &> /dev/null
300 cursha1=$(git rev-parse ${upstream_branch})
301 ${elogcmd} "GIT offline update -->"
302 ${elogcmd} " repository: ${EGIT_REPO_URI}"
303 ${elogcmd} " at the commit: ${cursha1}"
304 popd &> /dev/null
305 else
306 pushd "${GIT_DIR}" &> /dev/null
307 # Git urls might change, so unconditionally set it here
308 git config remote.origin.url "${EGIT_REPO_URI}"
309
310 # fetch updates
311 ${elogcmd} "GIT update -->"
312 ${elogcmd} " repository: ${EGIT_REPO_URI}"
313
314 oldsha1=$(git rev-parse ${upstream_branch})
315
316 if ${EGIT_HAS_SUBMODULES}; then
317 debug-print "${EGIT_UPDATE_CMD} ${EGIT_OPTIONS}"
318 # fix branching
319 git checkout ${EGIT_MASTER}
320 for x in $(git branch |grep -v "* ${EGIT_MASTER}" |tr '\n' ' '); do
321 git branch -D ${x}
322 done
323 ${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} \
324 || die "${EGIT}: can't update from ${EGIT_REPO_URI}."
325 else
326 debug-print "${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} origin ${EGIT_BRANCH}:${EGIT_BRANCH}"
327 ${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} origin ${EGIT_BRANCH}:${EGIT_BRANCH} \
328 || die "${EGIT}: can't update from ${EGIT_REPO_URI}."
329 fi
330
331 git_submodules
332 cursha1=$(git rev-parse ${upstream_branch})
333
334 # write out message based on the revisions
335 if [[ ${oldsha1} != ${cursha1} ]]; then
336 ${elogcmd} " updating from commit: ${oldsha1}"
337 ${elogcmd} " to commit: ${cursha1}"
338 else
339 ${elogcmd} " at the commit: ${cursha1}"
340 # @ECLASS_VARIABLE: LIVE_FAIL_FETCH_IF_REPO_NOT_UPDATED
341 # @DESCRIPTION:
342 # If this variable is set to TRUE in make.conf or somewhere in
343 # enviroment the package will fail if there is no update, thus in
344 # combination with --keep-going it would lead in not-updating
345 # pakcages that are up-to-date.
346 # TODO: this can lead to issues if more projects/packages use same repo
347 [[ ${LIVE_FAIL_FETCH_IF_REPO_NOT_UPDATED} = true ]] && \
348 debug-print "${FUNCNAME}: Repository \"${EGIT_REPO_URI}\" is up-to-date. Skipping." && \
349 die "${EGIT}: Repository \"${EGIT_REPO_URI}\" is up-to-date. Skipping."
350 fi
351 ${EGIT_DIFFSTAT_CMD} ${oldsha1}..${upstream_branch}
352 popd &> /dev/null
353 fi
354
355 pushd "${GIT_DIR}" &> /dev/null
356 if ${EGIT_REPACK} || ${EGIT_PRUNE} ; then
357 ebegin "Garbage collecting the repository"
358 git gc $(${EGIT_PRUNE} && echo '--prune')
359 eend $?
360 fi
361 popd &> /dev/null
362
363 # export the git version
364 export EGIT_VERSION="${cursha1}"
365
366 # log the repo state
367 [[ ${EGIT_COMMIT} != ${EGIT_BRANCH} ]] && elog " commit: ${EGIT_COMMIT}"
368 ${elogcmd} " branch: ${EGIT_BRANCH}"
369 ${elogcmd} " storage directory: \"${GIT_DIR}\""
370
371 if ${EGIT_HAS_SUBMODULES}; then
372 pushd "${GIT_DIR}" &> /dev/null
373 debug-print "rsync -rlpgo . \"${S}\""
374 time rsync -rlpgo . "${S}"
375 popd &> /dev/null
376 else
377 unset GIT_DIR
378 debug-print "git clone -l -s -n \"${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}\" \"${S}\""
379 git clone -l -s -n "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" "${S}"
380 fi
381
382 pushd "${S}" &> /dev/null
383 git_branch
384 # submodules always reqire net (thanks to branches changing)
385 [[ -n ${EGIT_OFFLINE} ]] || git_submodules
386 popd &> /dev/null
387
388 echo ">>> Unpacked to ${S}"
389}
390
391# @FUNCTION: git_bootstrap
392# @DESCRIPTION:
393# Runs bootstrap command if EGIT_BOOTSTRAP variable contains some value
394# Remember that what ever gets to the EGIT_BOOTSTRAP variable gets evaled by bash.
395git_bootstrap() {
396 debug-print-function ${FUNCNAME} "$@"
397
398 if [[ -n ${EGIT_BOOTSTRAP} ]] ; then
399 pushd "${S}" > /dev/null
400 einfo "Starting bootstrap"
401
402 if [[ -f ${EGIT_BOOTSTRAP} ]]; then
403 # we have file in the repo which we should execute
404 debug-print "$FUNCNAME: bootstraping with file \"${EGIT_BOOTSTRAP}\""
405
406 if [[ -x ${EGIT_BOOTSTRAP} ]]; then
407 eval "./${EGIT_BOOTSTRAP}" \
408 || die "${EGIT}: bootstrap script failed"
409 else
410 eerror "\"${EGIT_BOOTSTRAP}\" is not executable."
411 eerror "Report upstream, or bug ebuild maintainer to remove bootstrap command."
412 die "${EGIT}: \"${EGIT_BOOTSTRAP}\" is not executable."
413 fi
414 else
415 # we execute some system command
416 debug-print "$FUNCNAME: bootstraping with commands \"${EGIT_BOOTSTRAP}\""
417
418 eval "${EGIT_BOOTSTRAP}" \
419 || die "${EGIT}: bootstrap commands failed."
420
421 fi
422
423 einfo "Bootstrap finished"
424 popd > /dev/null
425 fi
426}
427
428# @FUNCTION: git_apply_patches
429# @DESCRIPTION:
430# Apply patches from EGIT_PATCHES bash array.
431# Preffered is using the variable as bash array but for now it allows to write
432# it also as normal space separated string list. (This part of code should be
433# removed when all ebuilds get converted on bash array).
434git_apply_patches() {
435 debug-print-function ${FUNCNAME} "$@"
436
437 pushd "${S}" > /dev/null
438 if [[ ${#EGIT_PATCHES[@]} -gt 1 ]] ; then
439 for i in "${EGIT_PATCHES[@]}"; do
440 debug-print "$FUNCNAME: git_autopatch: patching from ${i}"
441 epatch "${i}"
442 done
443 elif [[ ${EGIT_PATCHES} != "" ]]; then
444 # no need for loop if space separated string is passed.
445 debug-print "$FUNCNAME: git_autopatch: patching from ${EGIT_PATCHES}"
446 epatch "${EGIT_PATCHES}"
447 fi
448
449 popd > /dev/null
450}
451
452# @FUNCTION: git_src_unpack
453# @DESCRIPTION:
454# src_upack function, calls src_prepare one if EAPI!=2.
455git_src_unpack() {
456 debug-print-function ${FUNCNAME} "$@"
457
458 git_fetch || die "${EGIT}: unknown problem in git_fetch()."
459
460 has src_prepare ${EXPORTED_FUNCTIONS} || git_src_prepare
461}
462
463# @FUNCTION: git_src_prepare
464# @DESCRIPTION:
465# src_prepare function for git stuff. Patches, bootstrap...
466git_src_prepare() {
467 debug-print-function ${FUNCNAME} "$@"
468
469 git_apply_patches
470 git_bootstrap
471}