blob: 69de0fa4e479997a838c8ecaf0ee63575d86624c [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 /
233 mkdir -p "${EGIT_STORE_DIR}" \
234 || die "${EGIT}: can't mkdir ${EGIT_STORE_DIR}."
235 export SANDBOX_WRITE="${SANDBOX_WRITE%%:/}"
David Rochberg5fe8ba22010-05-24 16:21:52 -0400236 fi
237
238 cd -P "${EGIT_STORE_DIR}" || die "${EGIT}: can't chdir to ${EGIT_STORE_DIR}"
239 EGIT_STORE_DIR=${PWD}
240
241 # allow writing into EGIT_STORE_DIR
242 addwrite "${EGIT_STORE_DIR}"
243
244 [[ -z ${EGIT_REPO_URI##*/} ]] && EGIT_REPO_URI="${EGIT_REPO_URI%/}"
245 EGIT_CLONE_DIR="${EGIT_PROJECT}"
246
247 debug-print "${FUNCNAME}: EGIT_OPTIONS = \"${EGIT_OPTIONS}\""
248
249 GIT_DIR="${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}"
250 # we also have to remove all shallow copied repositories
251 # and fetch them again
252 if [[ -e "${GIT_DIR}/shallow" ]]; then
253 rm -rf "${GIT_DIR}"
254 einfo "The ${EGIT_CLONE_DIR} was shallow copy. Refetching."
255 fi
256 # repack from bare copy to normal one
257 if ${EGIT_HAS_SUBMODULES} && [[ -d ${GIT_DIR} && ! -d "${GIT_DIR}/.git/" ]]; then
258 rm -rf "${GIT_DIR}"
259 einfo "The ${EGIT_CLONE_DIR} was bare copy. Refetching."
260 fi
261 if ! ${EGIT_HAS_SUBMODULES} && [[ -d ${GIT_DIR} && -d ${GIT_DIR}/.git ]]; then
262 rm -rf "${GIT_DIR}"
263 einfo "The ${EGIT_CLONE_DIR} was not a bare copy. Refetching."
264 fi
265
266 if ${EGIT_HAS_SUBMODULES}; then
267 upstream_branch=origin/${EGIT_BRANCH}
268 else
269 upstream_branch=${EGIT_BRANCH}
270 extra_clone_opts=--bare
271 fi
272
273 if [[ ! -d ${GIT_DIR} ]] ; then
274 # first clone
275 ${elogcmd} "GIT NEW clone -->"
276 ${elogcmd} " repository: ${EGIT_REPO_URI}"
277
278 debug-print "${EGIT_FETCH_CMD} ${extra_clone_opts} ${EGIT_OPTIONS} \"${EGIT_REPO_URI}\" ${GIT_DIR}"
Eric Shienbrood7a097ba2010-06-02 13:31:37 -0400279 # TODO(rochberg): Figure out why umask sometimes isn't already 002
280 local old_umask="`umask`"
281 umask 002
David Rochberg5fe8ba22010-05-24 16:21:52 -0400282 ${EGIT_FETCH_CMD} ${extra_clone_opts} ${EGIT_OPTIONS} "${EGIT_REPO_URI}" ${GIT_DIR} \
283 || die "${EGIT}: can't fetch from ${EGIT_REPO_URI}."
284
Eric Shienbrood7a097ba2010-06-02 13:31:37 -0400285 umask ${old_umask}
David Rochberg5fe8ba22010-05-24 16:21:52 -0400286 pushd "${GIT_DIR}" &> /dev/null
287 cursha1=$(git rev-parse ${upstream_branch})
288 ${elogcmd} " at the commit: ${cursha1}"
289
290 git_submodules
291 popd &> /dev/null
292 elif [[ -n ${EGIT_OFFLINE} ]] ; then
293 pushd "${GIT_DIR}" &> /dev/null
294 cursha1=$(git rev-parse ${upstream_branch})
295 ${elogcmd} "GIT offline update -->"
296 ${elogcmd} " repository: ${EGIT_REPO_URI}"
297 ${elogcmd} " at the commit: ${cursha1}"
298 popd &> /dev/null
299 else
300 pushd "${GIT_DIR}" &> /dev/null
301 # Git urls might change, so unconditionally set it here
302 git config remote.origin.url "${EGIT_REPO_URI}"
303
304 # fetch updates
305 ${elogcmd} "GIT update -->"
306 ${elogcmd} " repository: ${EGIT_REPO_URI}"
307
308 oldsha1=$(git rev-parse ${upstream_branch})
309
310 if ${EGIT_HAS_SUBMODULES}; then
311 debug-print "${EGIT_UPDATE_CMD} ${EGIT_OPTIONS}"
312 # fix branching
313 git checkout ${EGIT_MASTER}
314 for x in $(git branch |grep -v "* ${EGIT_MASTER}" |tr '\n' ' '); do
315 git branch -D ${x}
316 done
317 ${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} \
318 || die "${EGIT}: can't update from ${EGIT_REPO_URI}."
319 else
320 debug-print "${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} origin ${EGIT_BRANCH}:${EGIT_BRANCH}"
321 ${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} origin ${EGIT_BRANCH}:${EGIT_BRANCH} \
322 || die "${EGIT}: can't update from ${EGIT_REPO_URI}."
323 fi
324
325 git_submodules
326 cursha1=$(git rev-parse ${upstream_branch})
327
328 # write out message based on the revisions
329 if [[ ${oldsha1} != ${cursha1} ]]; then
330 ${elogcmd} " updating from commit: ${oldsha1}"
331 ${elogcmd} " to commit: ${cursha1}"
332 else
333 ${elogcmd} " at the commit: ${cursha1}"
334 # @ECLASS_VARIABLE: LIVE_FAIL_FETCH_IF_REPO_NOT_UPDATED
335 # @DESCRIPTION:
336 # If this variable is set to TRUE in make.conf or somewhere in
337 # enviroment the package will fail if there is no update, thus in
338 # combination with --keep-going it would lead in not-updating
339 # pakcages that are up-to-date.
340 # TODO: this can lead to issues if more projects/packages use same repo
341 [[ ${LIVE_FAIL_FETCH_IF_REPO_NOT_UPDATED} = true ]] && \
342 debug-print "${FUNCNAME}: Repository \"${EGIT_REPO_URI}\" is up-to-date. Skipping." && \
343 die "${EGIT}: Repository \"${EGIT_REPO_URI}\" is up-to-date. Skipping."
344 fi
345 ${EGIT_DIFFSTAT_CMD} ${oldsha1}..${upstream_branch}
346 popd &> /dev/null
347 fi
348
349 pushd "${GIT_DIR}" &> /dev/null
350 if ${EGIT_REPACK} || ${EGIT_PRUNE} ; then
351 ebegin "Garbage collecting the repository"
352 git gc $(${EGIT_PRUNE} && echo '--prune')
353 eend $?
354 fi
355 popd &> /dev/null
356
357 # export the git version
358 export EGIT_VERSION="${cursha1}"
359
360 # log the repo state
361 [[ ${EGIT_COMMIT} != ${EGIT_BRANCH} ]] && elog " commit: ${EGIT_COMMIT}"
362 ${elogcmd} " branch: ${EGIT_BRANCH}"
363 ${elogcmd} " storage directory: \"${GIT_DIR}\""
364
365 if ${EGIT_HAS_SUBMODULES}; then
366 pushd "${GIT_DIR}" &> /dev/null
367 debug-print "rsync -rlpgo . \"${S}\""
368 time rsync -rlpgo . "${S}"
369 popd &> /dev/null
370 else
371 unset GIT_DIR
372 debug-print "git clone -l -s -n \"${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}\" \"${S}\""
373 git clone -l -s -n "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" "${S}"
374 fi
375
376 pushd "${S}" &> /dev/null
377 git_branch
378 # submodules always reqire net (thanks to branches changing)
379 [[ -n ${EGIT_OFFLINE} ]] || git_submodules
380 popd &> /dev/null
381
382 echo ">>> Unpacked to ${S}"
383}
384
385# @FUNCTION: git_bootstrap
386# @DESCRIPTION:
387# Runs bootstrap command if EGIT_BOOTSTRAP variable contains some value
388# Remember that what ever gets to the EGIT_BOOTSTRAP variable gets evaled by bash.
389git_bootstrap() {
390 debug-print-function ${FUNCNAME} "$@"
391
392 if [[ -n ${EGIT_BOOTSTRAP} ]] ; then
393 pushd "${S}" > /dev/null
394 einfo "Starting bootstrap"
395
396 if [[ -f ${EGIT_BOOTSTRAP} ]]; then
397 # we have file in the repo which we should execute
398 debug-print "$FUNCNAME: bootstraping with file \"${EGIT_BOOTSTRAP}\""
399
400 if [[ -x ${EGIT_BOOTSTRAP} ]]; then
401 eval "./${EGIT_BOOTSTRAP}" \
402 || die "${EGIT}: bootstrap script failed"
403 else
404 eerror "\"${EGIT_BOOTSTRAP}\" is not executable."
405 eerror "Report upstream, or bug ebuild maintainer to remove bootstrap command."
406 die "${EGIT}: \"${EGIT_BOOTSTRAP}\" is not executable."
407 fi
408 else
409 # we execute some system command
410 debug-print "$FUNCNAME: bootstraping with commands \"${EGIT_BOOTSTRAP}\""
411
412 eval "${EGIT_BOOTSTRAP}" \
413 || die "${EGIT}: bootstrap commands failed."
414
415 fi
416
417 einfo "Bootstrap finished"
418 popd > /dev/null
419 fi
420}
421
422# @FUNCTION: git_apply_patches
423# @DESCRIPTION:
424# Apply patches from EGIT_PATCHES bash array.
425# Preffered is using the variable as bash array but for now it allows to write
426# it also as normal space separated string list. (This part of code should be
427# removed when all ebuilds get converted on bash array).
428git_apply_patches() {
429 debug-print-function ${FUNCNAME} "$@"
430
431 pushd "${S}" > /dev/null
432 if [[ ${#EGIT_PATCHES[@]} -gt 1 ]] ; then
433 for i in "${EGIT_PATCHES[@]}"; do
434 debug-print "$FUNCNAME: git_autopatch: patching from ${i}"
435 epatch "${i}"
436 done
437 elif [[ ${EGIT_PATCHES} != "" ]]; then
438 # no need for loop if space separated string is passed.
439 debug-print "$FUNCNAME: git_autopatch: patching from ${EGIT_PATCHES}"
440 epatch "${EGIT_PATCHES}"
441 fi
442
443 popd > /dev/null
444}
445
446# @FUNCTION: git_src_unpack
447# @DESCRIPTION:
448# src_upack function, calls src_prepare one if EAPI!=2.
449git_src_unpack() {
450 debug-print-function ${FUNCNAME} "$@"
451
452 git_fetch || die "${EGIT}: unknown problem in git_fetch()."
453
454 has src_prepare ${EXPORTED_FUNCTIONS} || git_src_prepare
455}
456
457# @FUNCTION: git_src_prepare
458# @DESCRIPTION:
459# src_prepare function for git stuff. Patches, bootstrap...
460git_src_prepare() {
461 debug-print-function ${FUNCNAME} "$@"
462
463 git_apply_patches
464 git_bootstrap
465}