| 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.8 2007/12/27 01:02:30 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.12 2008/06/15 17:47:57 zlin 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> |
| … | |
… | |
| 93 | # |
93 | # |
| 94 | # bootstrap script or command like autogen.sh or etc.. |
94 | # bootstrap script or command like autogen.sh or etc.. |
| 95 | # |
95 | # |
| 96 | : ${EGIT_BOOTSTRAP:=} |
96 | : ${EGIT_BOOTSTRAP:=} |
| 97 | |
97 | |
|
|
98 | # @ECLASS-VARIABLE: EGIT_OFFLINE |
|
|
99 | # @DESCRIPTION: |
|
|
100 | # Set this variable to a non-empty value to disable the automatic updating of |
|
|
101 | # an GIT source tree. This is intended to be set outside the git source |
|
|
102 | # tree by users. |
|
|
103 | EGIT_OFFLINE="${EGIT_OFFLINE:-${ESCM_OFFLINE}}" |
| 98 | |
104 | |
| 99 | ## -- EGIT_PATCHES: |
105 | ## -- EGIT_PATCHES: |
| 100 | # |
106 | # |
| 101 | # git eclass can apply pathces in git_bootstrap(). |
107 | # git eclass can apply pathces in git_bootstrap(). |
| 102 | # you can use regexp in this valiable like *.diff or *.patch or etc. |
108 | # you can use regexp in this valiable like *.diff or *.patch or etc. |
| … | |
… | |
| 168 | if [[ ! -d ${EGIT_STORE_DIR} ]] ; then |
174 | if [[ ! -d ${EGIT_STORE_DIR} ]] ; then |
| 169 | debug-print "${FUNCNAME}: initial clone. creating git directory" |
175 | debug-print "${FUNCNAME}: initial clone. creating git directory" |
| 170 | addwrite / |
176 | addwrite / |
| 171 | mkdir -p "${EGIT_STORE_DIR}" \ |
177 | mkdir -p "${EGIT_STORE_DIR}" \ |
| 172 | || die "${EGIT}: can't mkdir ${EGIT_STORE_DIR}." |
178 | || die "${EGIT}: can't mkdir ${EGIT_STORE_DIR}." |
| 173 | chmod -f o+rw "${EGIT_STORE_DIR}" \ |
|
|
| 174 | || die "${EGIT}: can't chmod ${EGIT_STORE_DIR}." |
|
|
| 175 | export SANDBOX_WRITE="${SANDBOX_WRITE%%:/}" |
179 | export SANDBOX_WRITE="${SANDBOX_WRITE%%:/}" |
| 176 | fi |
180 | fi |
| 177 | |
181 | |
| 178 | cd -P "${EGIT_STORE_DIR}" || die "${EGIT}: can't chdir to ${EGIT_STORE_DIR}" |
182 | cd -P "${EGIT_STORE_DIR}" || die "${EGIT}: can't chdir to ${EGIT_STORE_DIR}" |
| 179 | EGIT_STORE_DIR=${PWD} |
183 | EGIT_STORE_DIR=${PWD} |
| … | |
… | |
| 184 | [[ -z ${EGIT_REPO_URI##*/} ]] && EGIT_REPO_URI="${EGIT_REPO_URI%/}" |
188 | [[ -z ${EGIT_REPO_URI##*/} ]] && EGIT_REPO_URI="${EGIT_REPO_URI%/}" |
| 185 | EGIT_CLONE_DIR="${EGIT_PROJECT}" |
189 | EGIT_CLONE_DIR="${EGIT_PROJECT}" |
| 186 | |
190 | |
| 187 | debug-print "${FUNCNAME}: EGIT_OPTIONS = \"${EGIT_OPTIONS}\"" |
191 | debug-print "${FUNCNAME}: EGIT_OPTIONS = \"${EGIT_OPTIONS}\"" |
| 188 | |
192 | |
| 189 | export GIT_DIR="${EGIT_CLONE_DIR}" |
193 | export GIT_DIR="${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
| 190 | |
194 | |
| 191 | if [[ ! -d ${EGIT_CLONE_DIR} ]] ; then |
195 | if [[ ! -d ${EGIT_CLONE_DIR} ]] ; then |
| 192 | # first clone |
196 | # first clone |
| 193 | einfo "git clone start -->" |
197 | einfo "git clone start -->" |
| 194 | einfo " repository: ${EGIT_REPO_URI}" |
198 | einfo " repository: ${EGIT_REPO_URI}" |
| … | |
… | |
| 196 | ${EGIT_FETCH_CMD} ${EGIT_OPTIONS} "${EGIT_REPO_URI}" ${EGIT_PROJECT} \ |
200 | ${EGIT_FETCH_CMD} ${EGIT_OPTIONS} "${EGIT_REPO_URI}" ${EGIT_PROJECT} \ |
| 197 | || die "${EGIT}: can't fetch from ${EGIT_REPO_URI}." |
201 | || die "${EGIT}: can't fetch from ${EGIT_REPO_URI}." |
| 198 | |
202 | |
| 199 | # We use --bare cloning, so git doesn't do this for us. |
203 | # We use --bare cloning, so git doesn't do this for us. |
| 200 | git config remote.origin.url "${EGIT_REPO_URI}" |
204 | git config remote.origin.url "${EGIT_REPO_URI}" |
|
|
205 | elif [[ -n ${EGIT_OFFLINE} ]] ; then |
|
|
206 | local oldsha1=$(git rev-parse ${EGIT_BRANCH}) |
|
|
207 | einfo "git update offline mode -->" |
|
|
208 | einfo " repository: ${EGIT_REPO_URI}" |
|
|
209 | einfo " commit: ${oldsha1}" |
| 201 | else |
210 | else |
| 202 | # Git urls might change, so unconditionally set it here |
211 | # Git urls might change, so unconditionally set it here |
| 203 | git config remote.origin.url "${EGIT_REPO_URI}" |
212 | git config remote.origin.url "${EGIT_REPO_URI}" |
| 204 | |
213 | |
| 205 | # fetch updates |
214 | # fetch updates |