| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2009 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.12 2008/06/15 17:47:57 zlin Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.33 2009/12/29 17:18:16 scarabeus Exp $ |
| 4 | |
4 | |
| 5 | ## --------------------------------------------------------------------------- # |
5 | # @ECLASS: git.eclass |
| 6 | # subversion.eclass author: Akinori Hattori <hattya@gentoo.org> |
6 | # @MAINTAINER: |
| 7 | # modified for git by Donnie Berkholz <spyderous@gentoo.org> |
7 | # Tomas Chvatal <scarabeus@gentoo.org> |
| 8 | # improved by Fernando J. Pereda <ferdy@gentoo.org> |
8 | # Donnie Berkholz <dberkholz@gentoo.org> |
| 9 | # |
9 | # @BLURB: This eclass provides functions for fetch and unpack git repositories |
| 10 | # The git eclass is written to fetch the software sources from |
10 | # @DESCRIPTION: |
| 11 | # git repositories like the subversion eclass. |
11 | # The eclass is based on subversion eclass. |
| 12 | # |
|
|
| 13 | # |
|
|
| 14 | # Description: |
|
|
| 15 | # If you use this eclass, the ${S} is ${WORKDIR}/${P}. |
12 | # If you use this eclass, the ${S} is ${WORKDIR}/${P}. |
| 16 | # It is necessary to define the EGIT_REPO_URI variable at least. |
13 | # It is necessary to define the EGIT_REPO_URI variable at least. |
| 17 | # |
14 | # @THANKS TO: |
| 18 | ## --------------------------------------------------------------------------- # |
15 | # Fernando J. Pereda <ferdy@gentoo.org> |
| 19 | |
16 | |
| 20 | inherit eutils |
17 | inherit eutils |
| 21 | |
18 | |
| 22 | EGIT="git.eclass" |
19 | EGIT="git.eclass" |
| 23 | |
20 | |
| 24 | EXPORT_FUNCTIONS src_unpack |
21 | EXPORTED_FUNCTIONS="src_unpack" |
|
|
22 | case "${EAPI:-0}" in |
|
|
23 | 2) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare" ;; |
|
|
24 | 0|1) ;; |
|
|
25 | *) die "Unknown EAPI, Bug eclass maintainers." ;; |
|
|
26 | esac |
|
|
27 | EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} |
| 25 | |
28 | |
| 26 | HOMEPAGE="http://git.or.cz/" |
29 | # define some nice defaults but only if nothing is set already |
| 27 | DESCRIPTION="Based on the ${ECLASS} eclass" |
30 | : ${HOMEPAGE:=http://git-scm.com/} |
| 28 | |
31 | |
| 29 | |
32 | # We DEPEND on at least a bit recent git version |
| 30 | ## -- add git in DEPEND |
|
|
| 31 | # |
|
|
| 32 | DEPEND=">=dev-util/git-1.5" |
33 | DEPEND=">=dev-util/git-1.6" |
| 33 | |
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"} |
| 34 | |
40 | |
| 35 | ## -- EGIT_STORE_DIR: git sources store directory |
41 | # @ECLASS-VARIABLE: EGIT_STORE_DIR |
| 36 | # |
42 | # @DESCRIPTION: |
|
|
43 | # Storage directory for git sources. |
|
|
44 | # Can be redefined. |
| 37 | EGIT_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/git-src" |
45 | [[ -z ${EGIT_STORE_DIR} ]] && EGIT_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/git-src" |
| 38 | |
46 | |
| 39 | |
47 | # @ECLASS-VARIABLE: EGIT_FETCH_CMD |
| 40 | ## -- EGIT_FETCH_CMD: git clone command |
48 | # @DESCRIPTION: |
| 41 | # |
49 | # Command for cloning the repository. |
| 42 | EGIT_FETCH_CMD="git clone --bare" |
50 | : ${EGIT_FETCH_CMD:="git clone"} |
| 43 | |
51 | |
| 44 | ## -- EGIT_UPDATE_CMD: git fetch command |
52 | # @ECLASS-VARIABLE: EGIT_UPDATE_CMD |
| 45 | # |
53 | # @DESCRIPTION: |
|
|
54 | # Git fetch command. |
| 46 | EGIT_UPDATE_CMD="git fetch -f -u" |
55 | EGIT_UPDATE_CMD="git pull -f -u" |
| 47 | |
56 | |
| 48 | ## -- EGIT_DIFFSTAT_CMD: Command to get diffstat output |
57 | # @ECLASS-VARIABLE: EGIT_DIFFSTAT_CMD |
| 49 | # |
58 | # @DESCRIPTION: |
|
|
59 | # Git command for diffstat. |
| 50 | EGIT_DIFFSTAT_CMD="git diff --stat" |
60 | EGIT_DIFFSTAT_CMD="git --no-pager diff --stat" |
| 51 | |
61 | |
| 52 | |
62 | # @ECLASS-VARIABLE: EGIT_OPTIONS |
| 53 | ## -- EGIT_OPTIONS: |
63 | # @DESCRIPTION: |
| 54 | # |
64 | # This variable value is passed to clone and fetch. |
| 55 | # the options passed to clone and fetch |
|
|
| 56 | # |
|
|
| 57 | : ${EGIT_OPTIONS:=} |
65 | : ${EGIT_OPTIONS:=} |
| 58 | |
66 | |
| 59 | |
67 | # @ECLASS-VARIABLE: EGIT_REPO_URI |
| 60 | ## -- EGIT_REPO_URI: repository uri |
68 | # @DESCRIPTION: |
| 61 | # |
69 | # URI for the repository |
| 62 | # e.g. http://foo, git://bar |
70 | # e.g. http://foo, git://bar |
| 63 | # |
|
|
| 64 | # supported protocols: |
71 | # Supported protocols: |
| 65 | # http:// |
72 | # http:// |
| 66 | # https:// |
73 | # https:// |
| 67 | # git:// |
74 | # git:// |
| 68 | # git+ssh:// |
75 | # git+ssh:// |
| 69 | # rsync:// |
76 | # rsync:// |
| 70 | # ssh:// |
77 | # ssh:// |
| 71 | # |
78 | eval X="\$${PN//[-+]/_}_LIVE_REPO" |
| 72 | : ${EGIT_REPO_URI:=} |
79 | if [[ ${X} = "" ]]; then |
| 73 | |
80 | EGIT_REPO_URI=${EGIT_REPO_URI:=} |
| 74 | |
81 | else |
| 75 | ## -- EGIT_PROJECT: project name of your ebuild |
82 | EGIT_REPO_URI="${X}" |
| 76 | # |
83 | fi |
|
|
84 | # @ECLASS-VARIABLE: EGIT_PROJECT |
|
|
85 | # @DESCRIPTION: |
|
|
86 | # Project name of your ebuild. |
| 77 | # git eclass will check out the git repository like: |
87 | # Git eclass will check out the git repository like: |
| 78 | # |
|
|
| 79 | # ${EGIT_STORE_DIR}/${EGIT_PROJECT}/${EGIT_REPO_URI##*/} |
88 | # ${EGIT_STORE_DIR}/${EGIT_PROJECT}/${EGIT_REPO_URI##*/} |
| 80 | # |
|
|
| 81 | # so if you define EGIT_REPO_URI as http://git.collab.net/repo/git or |
89 | # so if you define EGIT_REPO_URI as http://git.collab.net/repo/git or |
| 82 | # http://git.collab.net/repo/git. and PN is subversion-git. |
90 | # http://git.collab.net/repo/git. and PN is subversion-git. |
| 83 | # it will check out like: |
91 | # it will check out like: |
| 84 | # |
|
|
| 85 | # ${EGIT_STORE_DIR}/subversion |
92 | # ${EGIT_STORE_DIR}/subversion |
| 86 | # |
|
|
| 87 | # default: ${PN/-git}. |
|
|
| 88 | # |
|
|
| 89 | : ${EGIT_PROJECT:=${PN/-git}} |
93 | : ${EGIT_PROJECT:=${PN/-git}} |
| 90 | |
94 | |
| 91 | |
95 | # @ECLASS-VARIABLE: EGIT_BOOTSTRAP |
| 92 | ## -- EGIT_BOOTSTRAP: |
96 | # @DESCRIPTION: |
| 93 | # |
|
|
| 94 | # bootstrap script or command like autogen.sh or etc.. |
97 | # bootstrap script or command like autogen.sh or etc... |
| 95 | # |
|
|
| 96 | : ${EGIT_BOOTSTRAP:=} |
98 | : ${EGIT_BOOTSTRAP:=} |
| 97 | |
99 | |
| 98 | # @ECLASS-VARIABLE: EGIT_OFFLINE |
100 | # @ECLASS-VARIABLE: EGIT_OFFLINE |
| 99 | # @DESCRIPTION: |
101 | # @DESCRIPTION: |
| 100 | # Set this variable to a non-empty value to disable the automatic updating of |
102 | # 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 |
103 | # an GIT source tree. This is intended to be set outside the git source |
| 102 | # tree by users. |
104 | # tree by users. |
| 103 | EGIT_OFFLINE="${EGIT_OFFLINE:-${ESCM_OFFLINE}}" |
105 | EGIT_OFFLINE="${EGIT_OFFLINE:-${ESCM_OFFLINE}}" |
| 104 | |
106 | |
| 105 | ## -- EGIT_PATCHES: |
107 | # @ECLASS-VARIABLE: EGIT_PATCHES |
| 106 | # |
108 | # @DESCRIPTION: |
| 107 | # git eclass can apply pathces in git_bootstrap(). |
109 | # Similar to PATCHES array from base.eclass |
| 108 | # you can use regexp in this valiable like *.diff or *.patch or etc. |
110 | # Only difference is that this patches are applied before bootstrap. |
| 109 | # NOTE: this patches will apply before eval EGIT_BOOTSTRAP. |
111 | # Please take note that this variable should be bash array. |
| 110 | # |
|
|
| 111 | # the process of applying the patch is: |
|
|
| 112 | # 1. just epatch it, if the patch exists in the path. |
|
|
| 113 | # 2. scan it under FILESDIR and epatch it, if the patch exists in FILESDIR. |
|
|
| 114 | # 3. die. |
|
|
| 115 | # |
|
|
| 116 | : ${EGIT_PATCHES:=} |
|
|
| 117 | |
112 | |
| 118 | |
113 | # @ECLASS-VARIABLE: EGIT_BRANCH |
| 119 | ## -- EGIT_BRANCH: |
114 | # @DESCRIPTION: |
| 120 | # |
|
|
| 121 | # git eclass can fetch any branch in git_fetch(). |
115 | # git eclass can fetch any branch in git_fetch(). |
| 122 | # If set, it must be before 'inherit git', otherwise both EGIT_BRANCH and |
116 | eval X="\$${PN//[-+]/_}_LIVE_BRANCH" |
| 123 | # EGIT_TREE must be set after 'inherit git'. |
117 | if [[ ${X} = "" ]]; then |
| 124 | # Defaults to 'master' |
118 | EGIT_BRANCH=${EGIT_BRANCH:=master} |
| 125 | # |
119 | else |
| 126 | : ${EGIT_BRANCH:=master} |
120 | EGIT_BRANCH="${X}" |
|
|
121 | fi |
| 127 | |
122 | |
| 128 | |
123 | # @ECLASS-VARIABLE: EGIT_COMMIT |
| 129 | ## -- EGIT_TREE: |
124 | # @DESCRIPTION: |
| 130 | # |
|
|
| 131 | # git eclass can checkout any tree. |
125 | # git eclass can checkout any commit. |
| 132 | # Defaults to EGIT_BRANCH. |
126 | eval X="\$${PN//[-+]/_}_LIVE_COMMIT" |
| 133 | # |
127 | if [[ ${X} = "" ]]; then |
| 134 | : ${EGIT_TREE:=${EGIT_BRANCH}} |
128 | : ${EGIT_COMMIT:=${EGIT_BRANCH}} |
|
|
129 | else |
|
|
130 | EGIT_COMMIT="${X}" |
|
|
131 | fi |
| 135 | |
132 | |
| 136 | |
133 | # @ECLASS-VARIABLE: EGIT_REPACK |
| 137 | ## - EGIT_REPACK: |
134 | # @DESCRIPTION: |
| 138 | # |
|
|
| 139 | # git eclass will repack objects to save disk space. However this can take a |
135 | # git eclass will repack objects to save disk space. However this can take a |
| 140 | # long time with VERY big repositories. If this is your case set: |
136 | # long time with VERY big repositories. |
| 141 | # EGIT_REPACK=false |
|
|
| 142 | # |
|
|
| 143 | : ${EGIT_REPACK:=false} |
137 | : ${EGIT_REPACK:=false} |
| 144 | |
138 | |
| 145 | ## - EGIT_PRUNE: |
139 | # @ECLASS-VARIABLE: EGIT_PRUNE |
| 146 | # |
140 | # @DESCRIPTION: |
| 147 | # git eclass can prune the local clone. This is useful if upstream rewinds and |
141 | # git eclass can prune the local clone. This is useful if upstream rewinds and |
| 148 | # rebases branches too often. If you don't want this to happen, set: |
142 | # rebases branches too often. |
| 149 | # EGIT_PRUNE=false |
|
|
| 150 | # |
|
|
| 151 | : ${EGIT_PRUNE:=false} |
143 | : ${EGIT_PRUNE:=false} |
| 152 | |
144 | |
|
|
145 | # @FUNCTION: git_submodules |
|
|
146 | # @DESCRIPTION: |
|
|
147 | # Internal function wrapping the submodule initialisation and update |
|
|
148 | git_sumbodules() { |
|
|
149 | debug-print "git submodule init" |
|
|
150 | git submodule init |
|
|
151 | debug-print "git submodule update" |
|
|
152 | git submodule update |
|
|
153 | } |
| 153 | |
154 | |
| 154 | ## -- git_fetch() ------------------------------------------------- # |
155 | # @FUNCTION: git_fetch |
| 155 | |
156 | # @DESCRIPTION: |
|
|
157 | # Gets repository from EGIT_REPO_URI and store it in specified EGIT_STORE_DIR |
| 156 | git_fetch() { |
158 | git_fetch() { |
|
|
159 | debug-print-function ${FUNCNAME} "$@" |
| 157 | |
160 | |
| 158 | local EGIT_CLONE_DIR |
161 | local GIT_DIR EGIT_CLONE_DIR oldsha1 cursha1 |
|
|
162 | |
|
|
163 | # choose if user wants elog or just einfo. |
|
|
164 | if [[ ${EGIT_QUIET} != OFF ]]; then |
|
|
165 | elogcmd="einfo" |
|
|
166 | else |
|
|
167 | elogcmd="elog" |
|
|
168 | fi |
|
|
169 | |
|
|
170 | # If we have same branch and the tree we can do --depth 1 clone |
|
|
171 | # which outputs into really smaller data transfers. |
|
|
172 | # Sadly we can do shallow copy for now because quite a few packages need .git |
|
|
173 | # folder. |
|
|
174 | #[[ ${EGIT_COMMIT} = ${EGIT_BRANCH} ]] && \ |
|
|
175 | # EGIT_FETCH_CMD="${EGIT_FETCH_CMD} --depth 1" |
|
|
176 | if [[ ! -z ${EGIT_TREE} ]] ; then |
|
|
177 | EGIT_COMMIT=${EGIT_TREE} |
|
|
178 | eqawarn "Usage of deprecated EGIT_TREE variable detected." |
|
|
179 | eqawarn "Use EGIT_COMMIT variable instead." |
|
|
180 | fi |
| 159 | |
181 | |
| 160 | # EGIT_REPO_URI is empty. |
182 | # EGIT_REPO_URI is empty. |
| 161 | [[ -z ${EGIT_REPO_URI} ]] && die "${EGIT}: EGIT_REPO_URI is empty." |
183 | [[ -z ${EGIT_REPO_URI} ]] && die "${EGIT}: EGIT_REPO_URI is empty." |
| 162 | |
184 | |
| 163 | # check for the protocol or pull from a local repo. |
185 | # check for the protocol or pull from a local repo. |
| 164 | if [[ -z ${EGIT_REPO_URI%%:*} ]] ; then |
186 | if [[ -z ${EGIT_REPO_URI%%:*} ]] ; then |
| 165 | case ${EGIT_REPO_URI%%:*} in |
187 | case ${EGIT_REPO_URI%%:*} in |
| 166 | git*|http|https|rsync|ssh) |
188 | git*|http|https|rsync|ssh) ;; |
| 167 | ;; |
|
|
| 168 | *) |
|
|
| 169 | die "${EGIT}: fetch from "${EGIT_REPO_URI%:*}" is not yet implemented." |
189 | *) die "${EGIT}: protocol for fetch from "${EGIT_REPO_URI%:*}" is not yet implemented in eclass." ;; |
| 170 | ;; |
|
|
| 171 | esac |
190 | esac |
| 172 | fi |
191 | fi |
| 173 | |
192 | |
|
|
193 | # initial clone, we have to create master git storage directory and play |
|
|
194 | # nicely with sandbox |
| 174 | if [[ ! -d ${EGIT_STORE_DIR} ]] ; then |
195 | if [[ ! -d ${EGIT_STORE_DIR} ]] ; then |
| 175 | debug-print "${FUNCNAME}: initial clone. creating git directory" |
196 | debug-print "${FUNCNAME}: initial clone. creating git directory" |
| 176 | addwrite / |
197 | addwrite / |
| 177 | mkdir -p "${EGIT_STORE_DIR}" \ |
198 | mkdir -p "${EGIT_STORE_DIR}" \ |
| 178 | || die "${EGIT}: can't mkdir ${EGIT_STORE_DIR}." |
199 | || die "${EGIT}: can't mkdir ${EGIT_STORE_DIR}." |
| … | |
… | |
| 180 | fi |
201 | fi |
| 181 | |
202 | |
| 182 | cd -P "${EGIT_STORE_DIR}" || die "${EGIT}: can't chdir to ${EGIT_STORE_DIR}" |
203 | cd -P "${EGIT_STORE_DIR}" || die "${EGIT}: can't chdir to ${EGIT_STORE_DIR}" |
| 183 | EGIT_STORE_DIR=${PWD} |
204 | EGIT_STORE_DIR=${PWD} |
| 184 | |
205 | |
| 185 | # every time |
206 | # allow writing into EGIT_STORE_DIR |
| 186 | addwrite "${EGIT_STORE_DIR}" |
207 | addwrite "${EGIT_STORE_DIR}" |
| 187 | |
208 | |
| 188 | [[ -z ${EGIT_REPO_URI##*/} ]] && EGIT_REPO_URI="${EGIT_REPO_URI%/}" |
209 | [[ -z ${EGIT_REPO_URI##*/} ]] && EGIT_REPO_URI="${EGIT_REPO_URI%/}" |
| 189 | EGIT_CLONE_DIR="${EGIT_PROJECT}" |
210 | EGIT_CLONE_DIR="${EGIT_PROJECT}" |
| 190 | |
211 | |
| 191 | debug-print "${FUNCNAME}: EGIT_OPTIONS = \"${EGIT_OPTIONS}\"" |
212 | debug-print "${FUNCNAME}: EGIT_OPTIONS = \"${EGIT_OPTIONS}\"" |
| 192 | |
213 | |
| 193 | export GIT_DIR="${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
214 | GIT_DIR="${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
|
|
215 | pushd ${EGIT_STORE_DIR} &> /dev/null |
|
|
216 | # we also have to remove all shallow copied repositories |
|
|
217 | # and fetch them again |
|
|
218 | if [[ -e "${GIT_DIR}/shallow" ]]; then |
|
|
219 | rm -rf "${GIT_DIR}" |
|
|
220 | einfo "The ${EGIT_CLONE_DIR} was shallow copy. Refetching." |
|
|
221 | fi |
|
|
222 | # repack from bare copy to normal one |
|
|
223 | if [[ -d ${GIT_DIR} && ! -d "${GIT_DIR}/.git/" ]]; then |
|
|
224 | rm -rf "${GIT_DIR}" |
|
|
225 | einfo "The ${EGIT_CLONE_DIR} was bare copy. Refetching." |
|
|
226 | fi |
| 194 | |
227 | |
| 195 | if [[ ! -d ${EGIT_CLONE_DIR} ]] ; then |
228 | if [[ ! -d ${GIT_DIR} ]] ; then |
| 196 | # first clone |
229 | # first clone |
| 197 | einfo "git clone start -->" |
230 | ${elogcmd} "GIT NEW clone -->" |
| 198 | einfo " repository: ${EGIT_REPO_URI}" |
231 | ${elogcmd} " repository: ${EGIT_REPO_URI}" |
| 199 | |
232 | |
|
|
233 | debug-print "${EGIT_FETCH_CMD} ${EGIT_OPTIONS} \"${EGIT_REPO_URI}\" ${GIT_DIR}" |
| 200 | ${EGIT_FETCH_CMD} ${EGIT_OPTIONS} "${EGIT_REPO_URI}" ${EGIT_PROJECT} \ |
234 | ${EGIT_FETCH_CMD} ${EGIT_OPTIONS} "${EGIT_REPO_URI}" ${GIT_DIR} \ |
| 201 | || die "${EGIT}: can't fetch from ${EGIT_REPO_URI}." |
235 | || die "${EGIT}: can't fetch from ${EGIT_REPO_URI}." |
|
|
236 | |
|
|
237 | pushd "${GIT_DIR}" &> /dev/null |
|
|
238 | cursha1=$(git rev-parse origin/${EGIT_BRANCH}) |
|
|
239 | ${elogcmd} " at the commit: ${cursha1}" |
| 202 | |
240 | |
| 203 | # We use --bare cloning, so git doesn't do this for us. |
241 | git_sumbodules |
| 204 | git config remote.origin.url "${EGIT_REPO_URI}" |
242 | popd &> /dev/null |
| 205 | elif [[ -n ${EGIT_OFFLINE} ]] ; then |
243 | elif [[ -n ${EGIT_OFFLINE} ]] ; then |
|
|
244 | pushd "${GIT_DIR}" &> /dev/null |
| 206 | local oldsha1=$(git rev-parse ${EGIT_BRANCH}) |
245 | cursha1=$(git rev-parse origin/${EGIT_BRANCH}) |
| 207 | einfo "git update offline mode -->" |
246 | ${elogcmd} "GIT offline update -->" |
| 208 | einfo " repository: ${EGIT_REPO_URI}" |
247 | ${elogcmd} " repository: ${EGIT_REPO_URI}" |
| 209 | einfo " commit: ${oldsha1}" |
248 | ${elogcmd} " at the commit: ${cursha1}" |
|
|
249 | popd &> /dev/null |
| 210 | else |
250 | else |
|
|
251 | pushd "${GIT_DIR}" &> /dev/null |
| 211 | # Git urls might change, so unconditionally set it here |
252 | # Git urls might change, so unconditionally set it here |
| 212 | git config remote.origin.url "${EGIT_REPO_URI}" |
253 | git config remote.origin.url "${EGIT_REPO_URI}" |
| 213 | |
254 | |
| 214 | # fetch updates |
255 | # fetch updates |
| 215 | einfo "git update start -->" |
256 | ${elogcmd} "GIT update -->" |
| 216 | einfo " repository: ${EGIT_REPO_URI}" |
257 | ${elogcmd} " repository: ${EGIT_REPO_URI}" |
| 217 | |
258 | |
| 218 | local oldsha1=$(git rev-parse ${EGIT_BRANCH}) |
259 | oldsha1=$(git rev-parse origin/${EGIT_BRANCH}) |
| 219 | |
260 | |
| 220 | ${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} origin ${EGIT_BRANCH}:${EGIT_BRANCH} \ |
261 | debug-print "${EGIT_UPDATE_CMD} ${EGIT_OPTIONS}" |
|
|
262 | ${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} \ |
| 221 | || die "${EGIT}: can't update from ${EGIT_REPO_URI}." |
263 | || die "${EGIT}: can't update from ${EGIT_REPO_URI}." |
| 222 | |
264 | |
| 223 | # piping through cat is needed to avoid a stupid Git feature |
265 | git_sumbodules |
|
|
266 | cursha1=$(git rev-parse origin/${EGIT_BRANCH}) |
|
|
267 | |
|
|
268 | # write out message based on the revisions |
|
|
269 | if [[ ${oldsha1} != ${cursha1} ]]; then |
|
|
270 | ${elogcmd} " updating from commit: ${oldsha1}" |
|
|
271 | ${elogcmd} " to commit: ${cursha1}" |
|
|
272 | else |
|
|
273 | ${elogcmd} " at the commit: ${cursha1}" |
|
|
274 | # @ECLASS_VARIABLE: LIVE_FAIL_FETCH_IF_REPO_NOT_UPDATED |
|
|
275 | # @DESCRIPTION: |
|
|
276 | # If this variable is set to TRUE in make.conf or somewhere in |
|
|
277 | # enviroment the package will fail if there is no update, thus in |
|
|
278 | # combination with --keep-going it would lead in not-updating |
|
|
279 | # pakcages that are up-to-date. |
|
|
280 | # TODO: this can lead to issues if more projects/packages use same repo |
|
|
281 | [[ ${LIVE_FAIL_FETCH_IF_REPO_NOT_UPDATED} = true ]] && \ |
|
|
282 | debug-print "${FUNCNAME}: Repository \"${EGIT_REPO_URI}\" is up-to-date. Skipping." && \ |
|
|
283 | die "${EGIT}: Repository \"${EGIT_REPO_URI}\" is up-to-date. Skipping." |
|
|
284 | fi |
| 224 | ${EGIT_DIFFSTAT_CMD} ${oldsha1}..${EGIT_BRANCH} | cat |
285 | ${EGIT_DIFFSTAT_CMD} ${oldsha1}..origin/${EGIT_BRANCH} |
|
|
286 | popd &> /dev/null |
| 225 | fi |
287 | fi |
| 226 | |
288 | |
| 227 | einfo " local clone: ${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
289 | pushd "${GIT_DIR}" &> /dev/null |
| 228 | |
|
|
| 229 | if ${EGIT_REPACK} || ${EGIT_PRUNE} ; then |
290 | if ${EGIT_REPACK} || ${EGIT_PRUNE} ; then |
| 230 | ebegin "Garbage collecting the repository" |
291 | ebegin "Garbage collecting the repository" |
| 231 | git gc $(${EGIT_PRUNE} && echo '--prune') |
292 | git gc $(${EGIT_PRUNE} && echo '--prune') |
| 232 | eend $? |
293 | eend $? |
| 233 | fi |
294 | fi |
|
|
295 | popd &> /dev/null |
| 234 | |
296 | |
| 235 | einfo " committish: ${EGIT_TREE}" |
297 | # export the git version |
|
|
298 | export EGIT_VERSION="${cursha1}" |
| 236 | |
299 | |
| 237 | # export to the ${WORKDIR} |
300 | [[ ${EGIT_COMMIT} != ${EGIT_BRANCH} ]] && elog " commit: ${EGIT_COMMIT}" |
| 238 | mkdir -p "${S}" |
301 | ${elogcmd} " branch: ${EGIT_BRANCH}" |
| 239 | git archive --format=tar ${EGIT_TREE} | ( cd "${S}" ; tar xf - ) |
302 | ${elogcmd} " storage directory: \"${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}\"" |
|
|
303 | |
|
|
304 | # unpack to the ${S} |
|
|
305 | popd &> /dev/null |
|
|
306 | debug-print "cp -aR \"${GIT_DIR}\" \"${S}\"" |
|
|
307 | git clone "${GIT_DIR}" "${S}" |
|
|
308 | |
|
|
309 | # set correct branch and the tree ebuild specified |
|
|
310 | pushd "${S}" > /dev/null |
|
|
311 | local branchname=branch-${EGIT_BRANCH} src=origin/${EGIT_BRANCH} |
|
|
312 | if [[ ${EGIT_COMMIT} != ${EGIT_BRANCH} ]]; then |
|
|
313 | branchname=tree-${EGIT_COMMIT} |
|
|
314 | src=${EGIT_COMMIT} |
|
|
315 | fi |
|
|
316 | debug-print "git checkout -b ${branchname} ${src}" |
|
|
317 | git checkout -b ${branchname} ${src} 2>&1 > /dev/null |
|
|
318 | git_sumbodules |
|
|
319 | popd > /dev/null |
|
|
320 | |
|
|
321 | unset branchname src |
| 240 | |
322 | |
| 241 | echo ">>> Unpacked to ${S}" |
323 | echo ">>> Unpacked to ${S}" |
| 242 | |
|
|
| 243 | } |
324 | } |
| 244 | |
325 | |
| 245 | |
326 | # @FUNCTION: git_bootstrap |
| 246 | ## -- git_bootstrap() ------------------------------------------------ # |
327 | # @DESCRIPTION: |
| 247 | |
328 | # Runs bootstrap command if EGIT_BOOTSTRAP variable contains some value |
|
|
329 | # Remember that what ever gets to the EGIT_BOOTSTRAP variable gets evaled by bash. |
| 248 | git_bootstrap() { |
330 | git_bootstrap() { |
|
|
331 | debug-print-function ${FUNCNAME} "$@" |
| 249 | |
332 | |
| 250 | local patch lpatch |
|
|
| 251 | |
|
|
| 252 | cd "${S}" |
|
|
| 253 | |
|
|
| 254 | if [[ -n ${EGIT_PATCHES} ]] ; then |
333 | if [[ -n ${EGIT_BOOTSTRAP} ]] ; then |
| 255 | einfo "apply patches -->" |
334 | pushd "${S}" > /dev/null |
|
|
335 | einfo "Starting bootstrap" |
| 256 | |
336 | |
| 257 | for patch in ${EGIT_PATCHES} ; do |
337 | if [[ -f ${EGIT_BOOTSTRAP} ]]; then |
| 258 | if [[ -f ${patch} ]] ; then |
338 | # we have file in the repo which we should execute |
| 259 | epatch ${patch} |
339 | debug-print "$FUNCNAME: bootstraping with file \"${EGIT_BOOTSTRAP}\"" |
|
|
340 | |
|
|
341 | if [[ -x ${EGIT_BOOTSTRAP} ]]; then |
|
|
342 | eval "./${EGIT_BOOTSTRAP}" \ |
|
|
343 | || die "${EGIT}: bootstrap script failed" |
| 260 | else |
344 | else |
| 261 | for lpatch in "${FILESDIR}"/${patch} ; do |
345 | eerror "\"${EGIT_BOOTSTRAP}\" is not executable." |
| 262 | if [[ -f ${lpatch} ]] ; then |
346 | eerror "Report upstream, or bug ebuild maintainer to remove bootstrap command." |
| 263 | epatch ${lpatch} |
347 | die "${EGIT}: \"${EGIT_BOOTSTRAP}\" is not executable." |
| 264 | else |
|
|
| 265 | die "${EGIT}: ${patch} is not found" |
|
|
| 266 | fi |
|
|
| 267 | done |
|
|
| 268 | fi |
348 | fi |
|
|
349 | else |
|
|
350 | # we execute some system command |
|
|
351 | debug-print "$FUNCNAME: bootstraping with commands \"${EGIT_BOOTSTRAP}\"" |
|
|
352 | |
|
|
353 | eval "${EGIT_BOOTSTRAP}" \ |
|
|
354 | || die "${EGIT}: bootstrap commands failed." |
|
|
355 | |
|
|
356 | fi |
|
|
357 | |
|
|
358 | einfo "Bootstrap finished" |
|
|
359 | popd > /dev/null |
|
|
360 | fi |
|
|
361 | } |
|
|
362 | |
|
|
363 | # @FUNCTION: git_apply_patches |
|
|
364 | # @DESCRIPTION: |
|
|
365 | # Apply patches from EGIT_PATCHES bash array. |
|
|
366 | # Preffered is using the variable as bash array but for now it allows to write |
|
|
367 | # it also as normal space separated string list. (This part of code should be |
|
|
368 | # removed when all ebuilds get converted on bash array). |
|
|
369 | git_apply_patches() { |
|
|
370 | debug-print-function ${FUNCNAME} "$@" |
|
|
371 | |
|
|
372 | pushd "${S}" > /dev/null |
|
|
373 | if [[ ${#EGIT_PATCHES[@]} -gt 1 ]] ; then |
|
|
374 | for i in "${EGIT_PATCHES[@]}"; do |
|
|
375 | debug-print "$FUNCNAME: git_autopatch: patching from ${i}" |
|
|
376 | epatch "${i}" |
| 269 | done |
377 | done |
| 270 | echo |
378 | elif [[ ${EGIT_PATCHES} != "" ]]; then |
| 271 | fi |
379 | # no need for loop if space separated string is passed. |
| 272 | |
380 | debug-print "$FUNCNAME: git_autopatch: patching from ${EGIT_PATCHES}" |
| 273 | if [[ -n ${EGIT_BOOTSTRAP} ]] ; then |
381 | epatch "${EGIT_PATCHES}" |
| 274 | einfo "begin bootstrap -->" |
|
|
| 275 | |
|
|
| 276 | if [[ -f ${EGIT_BOOTSTRAP} ]] && [[ -x ${EGIT_BOOTSTRAP} ]] ; then |
|
|
| 277 | einfo " bootstrap with a file: ${EGIT_BOOTSTRAP}" |
|
|
| 278 | eval "./${EGIT_BOOTSTRAP}" \ |
|
|
| 279 | || die "${EGIT}: can't execute EGIT_BOOTSTRAP." |
|
|
| 280 | else |
|
|
| 281 | einfo " bootstrap with commands: ${EGIT_BOOTSTRAP}" |
|
|
| 282 | eval "${EGIT_BOOTSTRAP}" \ |
|
|
| 283 | || die "${EGIT}: can't eval EGIT_BOOTSTRAP." |
|
|
| 284 | fi |
382 | fi |
| 285 | fi |
|
|
| 286 | |
383 | |
|
|
384 | popd > /dev/null |
| 287 | } |
385 | } |
| 288 | |
386 | |
| 289 | |
387 | # @FUNCTION: git_src_unpack |
| 290 | ## -- git_src_unpack() ------------------------------------------------ # |
388 | # @DESCRIPTION: |
| 291 | |
389 | # src_upack function, calls src_prepare one if EAPI!=2. |
| 292 | git_src_unpack() { |
390 | git_src_unpack() { |
|
|
391 | debug-print-function ${FUNCNAME} "$@" |
| 293 | |
392 | |
| 294 | git_fetch || die "${EGIT}: unknown problem in git_fetch()." |
393 | git_fetch || die "${EGIT}: unknown problem in git_fetch()." |
| 295 | git_bootstrap || die "${EGIT}: unknown problem in git_bootstrap()." |
|
|
| 296 | |
394 | |
|
|
395 | has src_prepare ${EXPORTED_FUNCTIONS} || git_src_prepare |
| 297 | } |
396 | } |
|
|
397 | |
|
|
398 | # @FUNCTION: git_src_prepare |
|
|
399 | # @DESCRIPTION: |
|
|
400 | # src_prepare function for git stuff. Patches, bootstrap... |
|
|
401 | git_src_prepare() { |
|
|
402 | debug-print-function ${FUNCNAME} "$@" |
|
|
403 | |
|
|
404 | git_apply_patches |
|
|
405 | git_bootstrap |
|
|
406 | } |