| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2006 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.5 2007/04/10 11:42:29 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.8 2007/12/27 01:02:30 robbat2 Exp $ |
| 4 | |
4 | |
| 5 | ## --------------------------------------------------------------------------- # |
5 | ## --------------------------------------------------------------------------- # |
| 6 | # subversion.eclass author: Akinori Hattori <hattya@gentoo.org> |
6 | # subversion.eclass author: Akinori Hattori <hattya@gentoo.org> |
| 7 | # modified for git by Donnie Berkholz <spyderous@gentoo.org> |
7 | # modified for git by Donnie Berkholz <spyderous@gentoo.org> |
| 8 | # improved by Fernando J. Pereda <ferdy@gentoo.org> |
8 | # improved by Fernando J. Pereda <ferdy@gentoo.org> |
| … | |
… | |
| 27 | DESCRIPTION="Based on the ${ECLASS} eclass" |
27 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 28 | |
28 | |
| 29 | |
29 | |
| 30 | ## -- add git in DEPEND |
30 | ## -- add git in DEPEND |
| 31 | # |
31 | # |
| 32 | DEPEND=">=dev-util/git-1.4.0" |
32 | DEPEND=">=dev-util/git-1.5" |
| 33 | |
33 | |
| 34 | |
34 | |
| 35 | ## -- EGIT_STORE_DIR: git sources store directory |
35 | ## -- EGIT_STORE_DIR: git sources store directory |
| 36 | # |
36 | # |
| 37 | EGIT_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/git-src" |
37 | EGIT_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/git-src" |
| … | |
… | |
| 111 | |
111 | |
| 112 | |
112 | |
| 113 | ## -- EGIT_BRANCH: |
113 | ## -- EGIT_BRANCH: |
| 114 | # |
114 | # |
| 115 | # git eclass can fetch any branch in git_fetch(). |
115 | # git eclass can fetch any branch in git_fetch(). |
|
|
116 | # If set, it must be before 'inherit git', otherwise both EGIT_BRANCH and |
|
|
117 | # EGIT_TREE must be set after 'inherit git'. |
| 116 | # Defaults to 'master' |
118 | # Defaults to 'master' |
| 117 | # |
119 | # |
| 118 | : ${EGIT_BRANCH:=master} |
120 | : ${EGIT_BRANCH:=master} |
| 119 | |
121 | |
| 120 | |
122 | |
| … | |
… | |
| 193 | |
195 | |
| 194 | ${EGIT_FETCH_CMD} ${EGIT_OPTIONS} "${EGIT_REPO_URI}" ${EGIT_PROJECT} \ |
196 | ${EGIT_FETCH_CMD} ${EGIT_OPTIONS} "${EGIT_REPO_URI}" ${EGIT_PROJECT} \ |
| 195 | || die "${EGIT}: can't fetch from ${EGIT_REPO_URI}." |
197 | || die "${EGIT}: can't fetch from ${EGIT_REPO_URI}." |
| 196 | |
198 | |
| 197 | # We use --bare cloning, so git doesn't do this for us. |
199 | # We use --bare cloning, so git doesn't do this for us. |
| 198 | git repo-config remote.origin.url "${EGIT_REPO_URI}" |
200 | git config remote.origin.url "${EGIT_REPO_URI}" |
| 199 | else |
201 | else |
|
|
202 | # Git urls might change, so unconditionally set it here |
|
|
203 | git config remote.origin.url "${EGIT_REPO_URI}" |
|
|
204 | |
| 200 | # fetch updates |
205 | # fetch updates |
| 201 | einfo "git update start -->" |
206 | einfo "git update start -->" |
| 202 | einfo " repository: ${EGIT_REPO_URI}" |
207 | einfo " repository: ${EGIT_REPO_URI}" |
| 203 | |
208 | |
| 204 | local oldsha1=$(git rev-parse ${EGIT_BRANCH}) |
209 | local oldsha1=$(git rev-parse ${EGIT_BRANCH}) |
| … | |
… | |
| 210 | ${EGIT_DIFFSTAT_CMD} ${oldsha1}..${EGIT_BRANCH} | cat |
215 | ${EGIT_DIFFSTAT_CMD} ${oldsha1}..${EGIT_BRANCH} | cat |
| 211 | fi |
216 | fi |
| 212 | |
217 | |
| 213 | einfo " local clone: ${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
218 | einfo " local clone: ${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
| 214 | |
219 | |
| 215 | if ${EGIT_REPACK} ; then |
220 | if ${EGIT_REPACK} || ${EGIT_PRUNE} ; then |
| 216 | ebegin "Repacking objects" |
221 | ebegin "Garbage collecting the repository" |
| 217 | # Strangely enough mv asks confirmation |
222 | git gc $(${EGIT_PRUNE} && echo '--prune') |
| 218 | yes y | git repack -a -d -f -q > /dev/null |
|
|
| 219 | eend $? |
|
|
| 220 | fi |
|
|
| 221 | |
|
|
| 222 | if ${EGIT_PRUNE} ; then |
|
|
| 223 | ebegin "Removing unreachable objects" |
|
|
| 224 | git prune |
|
|
| 225 | eend $? |
223 | eend $? |
| 226 | fi |
224 | fi |
| 227 | |
225 | |
| 228 | einfo " committish: ${EGIT_TREE}" |
226 | einfo " committish: ${EGIT_TREE}" |
| 229 | |
227 | |
| 230 | # export to the ${WORKDIR} |
228 | # export to the ${WORKDIR} |
| 231 | mkdir -p "${S}" |
229 | mkdir -p "${S}" |
| 232 | git tar-tree ${EGIT_TREE} | ( cd "${S}" ; tar xf - ) |
230 | git archive --format=tar ${EGIT_TREE} | ( cd "${S}" ; tar xf - ) |
| 233 | |
231 | |
| 234 | echo ">>> Unpacked to ${S}" |
232 | echo ">>> Unpacked to ${S}" |
| 235 | |
233 | |
| 236 | } |
234 | } |
| 237 | |
235 | |