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