| 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.12 2008/06/15 17:47:57 zlin Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.58 2011/12/14 23:40:18 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.5" |
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 | |
| 98 | # @ECLASS-VARIABLE: EGIT_OFFLINE |
117 | # @ECLASS-VARIABLE: EGIT_OFFLINE |
| 99 | # @DESCRIPTION: |
118 | # @DESCRIPTION: |
| 100 | # Set this variable to a non-empty value to disable the automatic updating of |
119 | # 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 |
120 | # an GIT source tree. This is intended to be set outside the git source |
| 102 | # tree by users. |
121 | # tree by users. |
| 103 | EGIT_OFFLINE="${EGIT_OFFLINE:-${ESCM_OFFLINE}}" |
122 | : ${EGIT_OFFLINE:=${ESCM_OFFLINE}} |
| 104 | |
123 | |
| 105 | ## -- EGIT_PATCHES: |
124 | # @ECLASS-VARIABLE: EGIT_PATCHES |
| 106 | # |
125 | # @DESCRIPTION: |
| 107 | # git eclass can apply pathces in git_bootstrap(). |
126 | # Similar to PATCHES array from base.eclass |
| 108 | # you can use regexp in this valiable like *.diff or *.patch or etc. |
127 | # Only difference is that this patches are applied before bootstrap. |
| 109 | # NOTE: this patches will apply before eval EGIT_BOOTSTRAP. |
128 | # 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 | |
129 | |
| 118 | |
130 | # @ECLASS-VARIABLE: EGIT_BRANCH |
| 119 | ## -- EGIT_BRANCH: |
131 | # @DESCRIPTION: |
| 120 | # |
|
|
| 121 | # git eclass can fetch any branch in git_fetch(). |
132 | # git eclass can fetch any branch in git_fetch(). |
| 122 | # If set, it must be before 'inherit git', otherwise both EGIT_BRANCH and |
133 | eval X="\$${PN//[-+]/_}_LIVE_BRANCH" |
| 123 | # EGIT_TREE must be set after 'inherit git'. |
134 | if [[ "${X}" = "" ]]; then |
| 124 | # Defaults to 'master' |
|
|
| 125 | # |
|
|
| 126 | : ${EGIT_BRANCH:=master} |
135 | : ${EGIT_BRANCH:=master} |
|
|
136 | else |
|
|
137 | EGIT_BRANCH="${X}" |
|
|
138 | fi |
| 127 | |
139 | |
| 128 | |
140 | # @ECLASS-VARIABLE: EGIT_COMMIT |
| 129 | ## -- EGIT_TREE: |
141 | # @DESCRIPTION: |
| 130 | # |
|
|
| 131 | # git eclass can checkout any tree. |
142 | # git eclass can checkout any commit. |
| 132 | # Defaults to EGIT_BRANCH. |
143 | eval X="\$${PN//[-+]/_}_LIVE_COMMIT" |
| 133 | # |
144 | if [[ "${X}" = "" ]]; then |
| 134 | : ${EGIT_TREE:=${EGIT_BRANCH}} |
145 | : ${EGIT_COMMIT:=${EGIT_BRANCH}} |
|
|
146 | else |
|
|
147 | EGIT_COMMIT="${X}" |
|
|
148 | fi |
| 135 | |
149 | |
| 136 | |
150 | # @ECLASS-VARIABLE: EGIT_REPACK |
| 137 | ## - EGIT_REPACK: |
151 | # @DESCRIPTION: |
| 138 | # |
152 | # Set to non-empty value to repack objects to save disk space. However this can |
| 139 | # git eclass will repack objects to save disk space. However this can take a |
153 | # take a long time with VERY big repositories. |
| 140 | # long time with VERY big repositories. If this is your case set: |
|
|
| 141 | # EGIT_REPACK=false |
|
|
| 142 | # |
|
|
| 143 | : ${EGIT_REPACK:=false} |
154 | : ${EGIT_REPACK:=} |
| 144 | |
155 | |
| 145 | ## - EGIT_PRUNE: |
156 | # @ECLASS-VARIABLE: EGIT_PRUNE |
| 146 | # |
157 | # @DESCRIPTION: |
| 147 | # 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 |
| 148 | # rebases branches too often. If you don't want this to happen, set: |
159 | # if upstream rewinds and rebases branches often. |
| 149 | # EGIT_PRUNE=false |
|
|
| 150 | # |
|
|
| 151 | : ${EGIT_PRUNE:=false} |
160 | : ${EGIT_PRUNE:=} |
| 152 | |
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 | } |
| 153 | |
175 | |
| 154 | ## -- 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 |
| 155 | |
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 |
| 156 | git_fetch() { |
195 | git_fetch() { |
|
|
196 | debug-print-function ${FUNCNAME} "$@" |
| 157 | |
197 | |
| 158 | local EGIT_CLONE_DIR |
198 | eqawarn "git.eclass is deprecated." |
|
|
199 | eqawarn "Please update your ebuilds to use git-2 instead. For details, see" |
|
|
200 | eqawarn "http://archives.gentoo.org/gentoo-dev/msg_b7ba363cae580845819ae3501fb157e9.xml" |
|
|
201 | |
|
|
202 | local GIT_DIR EGIT_CLONE_DIR oldsha1 cursha1 extra_clone_opts upstream_branch |
|
|
203 | [[ -z ${EGIT_HAS_SUBMODULES} ]] && export GIT_DIR |
|
|
204 | |
|
|
205 | # choose if user wants elog or just einfo. |
|
|
206 | if [[ -n ${EGIT_QUIET} ]]; then |
|
|
207 | elogcmd="einfo" |
|
|
208 | else |
|
|
209 | elogcmd="elog" |
|
|
210 | fi |
|
|
211 | |
|
|
212 | # If we have same branch and the tree we can do --depth 1 clone |
|
|
213 | # which outputs into really smaller data transfers. |
|
|
214 | # Sadly we can do shallow copy for now because quite a few packages need .git |
|
|
215 | # folder. |
|
|
216 | #[[ ${EGIT_COMMIT} = ${EGIT_BRANCH} ]] && \ |
|
|
217 | # EGIT_FETCH_CMD="${EGIT_FETCH_CMD} --depth 1" |
|
|
218 | if [[ -n ${EGIT_TREE} ]] ; then |
|
|
219 | EGIT_COMMIT=${EGIT_TREE} |
|
|
220 | ewarn "QA: Usage of deprecated EGIT_TREE variable detected." |
|
|
221 | ewarn "QA: Use EGIT_COMMIT variable instead." |
|
|
222 | fi |
| 159 | |
223 | |
| 160 | # EGIT_REPO_URI is empty. |
224 | # EGIT_REPO_URI is empty. |
| 161 | [[ -z ${EGIT_REPO_URI} ]] && die "${EGIT}: EGIT_REPO_URI is empty." |
225 | [[ -z ${EGIT_REPO_URI} ]] && die "${EGIT}: EGIT_REPO_URI is empty." |
| 162 | |
226 | |
| 163 | # check for the protocol or pull from a local repo. |
227 | # check for the protocol or pull from a local repo. |
| 164 | if [[ -z ${EGIT_REPO_URI%%:*} ]] ; then |
228 | if [[ -z ${EGIT_REPO_URI%%:*} ]] ; then |
| 165 | case ${EGIT_REPO_URI%%:*} in |
229 | case ${EGIT_REPO_URI%%:*} in |
| 166 | git*|http|https|rsync|ssh) |
230 | git*|http|https|rsync|ssh) ;; |
| 167 | ;; |
|
|
| 168 | *) |
|
|
| 169 | die "${EGIT}: fetch from "${EGIT_REPO_URI%:*}" is not yet implemented." |
231 | *) die "${EGIT}: protocol for fetch from "${EGIT_REPO_URI%:*}" is not yet implemented in eclass." ;; |
| 170 | ;; |
|
|
| 171 | esac |
232 | esac |
| 172 | fi |
233 | fi |
| 173 | |
234 | |
|
|
235 | # initial clone, we have to create master git storage directory and play |
|
|
236 | # nicely with sandbox |
| 174 | if [[ ! -d ${EGIT_STORE_DIR} ]] ; then |
237 | if [[ ! -d ${EGIT_STORE_DIR} ]] ; then |
| 175 | debug-print "${FUNCNAME}: initial clone. creating git directory" |
238 | debug-print "${FUNCNAME}: initial clone. creating git directory" |
| 176 | addwrite / |
239 | addwrite / |
| 177 | mkdir -p "${EGIT_STORE_DIR}" \ |
240 | mkdir -m 775 -p "${EGIT_STORE_DIR}" \ |
| 178 | || die "${EGIT}: can't mkdir ${EGIT_STORE_DIR}." |
241 | || die "${EGIT}: can't mkdir ${EGIT_STORE_DIR}." |
| 179 | export SANDBOX_WRITE="${SANDBOX_WRITE%%:/}" |
242 | export SANDBOX_WRITE="${SANDBOX_WRITE%%:/}" |
| 180 | fi |
243 | fi |
| 181 | |
244 | |
| 182 | cd -P "${EGIT_STORE_DIR}" || die "${EGIT}: can't chdir to ${EGIT_STORE_DIR}" |
245 | cd -P "${EGIT_STORE_DIR}" || die "${EGIT}: can't chdir to ${EGIT_STORE_DIR}" |
| 183 | EGIT_STORE_DIR=${PWD} |
246 | EGIT_STORE_DIR=${PWD} |
| 184 | |
247 | |
| 185 | # every time |
248 | # allow writing into EGIT_STORE_DIR |
| 186 | addwrite "${EGIT_STORE_DIR}" |
249 | addwrite "${EGIT_STORE_DIR}" |
| 187 | |
250 | |
| 188 | [[ -z ${EGIT_REPO_URI##*/} ]] && EGIT_REPO_URI="${EGIT_REPO_URI%/}" |
251 | [[ -z ${EGIT_REPO_URI##*/} ]] && EGIT_REPO_URI="${EGIT_REPO_URI%/}" |
| 189 | EGIT_CLONE_DIR="${EGIT_PROJECT}" |
252 | EGIT_CLONE_DIR="${EGIT_PROJECT}" |
| 190 | |
253 | |
| 191 | debug-print "${FUNCNAME}: EGIT_OPTIONS = \"${EGIT_OPTIONS}\"" |
254 | debug-print "${FUNCNAME}: EGIT_OPTIONS = \"${EGIT_OPTIONS}\"" |
| 192 | |
255 | |
| 193 | export GIT_DIR="${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
256 | GIT_DIR="${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
|
|
257 | # we also have to remove all shallow copied repositories |
|
|
258 | # and fetch them again |
|
|
259 | if [[ -e "${GIT_DIR}/shallow" ]]; then |
|
|
260 | rm -rf "${GIT_DIR}" |
|
|
261 | einfo "The ${EGIT_CLONE_DIR} was shallow copy. Refetching." |
|
|
262 | fi |
|
|
263 | # repack from bare copy to normal one |
|
|
264 | if [[ -n ${EGIT_HAS_SUBMODULES} ]] && [[ -d ${GIT_DIR} && ! -d ${GIT_DIR}/.git ]]; then |
|
|
265 | rm -rf "${GIT_DIR}" |
|
|
266 | einfo "The ${EGIT_CLONE_DIR} was bare copy. Refetching." |
|
|
267 | fi |
|
|
268 | if [[ -z ${EGIT_HAS_SUBMODULES} ]] && [[ -d ${GIT_DIR} && -d ${GIT_DIR}/.git ]]; then |
|
|
269 | rm -rf "${GIT_DIR}" |
|
|
270 | einfo "The ${EGIT_CLONE_DIR} was not a bare copy. Refetching." |
|
|
271 | fi |
| 194 | |
272 | |
|
|
273 | if [[ -n ${EGIT_HAS_SUBMODULES} ]]; then |
|
|
274 | upstream_branch=origin/${EGIT_BRANCH} |
|
|
275 | else |
|
|
276 | upstream_branch=${EGIT_BRANCH} |
|
|
277 | extra_clone_opts=--bare |
|
|
278 | fi |
|
|
279 | |
| 195 | if [[ ! -d ${EGIT_CLONE_DIR} ]] ; then |
280 | if [[ ! -d ${GIT_DIR} ]] ; then |
| 196 | # first clone |
281 | # first clone |
| 197 | einfo "git clone start -->" |
282 | ${elogcmd} "GIT NEW clone -->" |
| 198 | einfo " repository: ${EGIT_REPO_URI}" |
283 | ${elogcmd} " repository: ${EGIT_REPO_URI}" |
| 199 | |
284 | |
|
|
285 | debug-print "${EGIT_FETCH_CMD} ${extra_clone_opts} ${EGIT_OPTIONS} \"${EGIT_REPO_URI}\" ${GIT_DIR}" |
| 200 | ${EGIT_FETCH_CMD} ${EGIT_OPTIONS} "${EGIT_REPO_URI}" ${EGIT_PROJECT} \ |
286 | ${EGIT_FETCH_CMD} ${extra_clone_opts} ${EGIT_OPTIONS} "${EGIT_REPO_URI}" ${GIT_DIR} \ |
| 201 | || die "${EGIT}: can't fetch from ${EGIT_REPO_URI}." |
287 | || die "${EGIT}: can't fetch from ${EGIT_REPO_URI}." |
| 202 | |
288 | |
| 203 | # We use --bare cloning, so git doesn't do this for us. |
289 | pushd "${GIT_DIR}" &> /dev/null |
| 204 | git config remote.origin.url "${EGIT_REPO_URI}" |
290 | cursha1=$(git rev-parse ${upstream_branch}) |
|
|
291 | ${elogcmd} " at the commit: ${cursha1}" |
|
|
292 | |
|
|
293 | git_submodules |
|
|
294 | popd &> /dev/null |
| 205 | elif [[ -n ${EGIT_OFFLINE} ]] ; then |
295 | elif [[ -n ${EGIT_OFFLINE} ]] ; then |
| 206 | local oldsha1=$(git rev-parse ${EGIT_BRANCH}) |
296 | pushd "${GIT_DIR}" &> /dev/null |
| 207 | einfo "git update offline mode -->" |
297 | cursha1=$(git rev-parse ${upstream_branch}) |
|
|
298 | ${elogcmd} "GIT offline update -->" |
| 208 | einfo " repository: ${EGIT_REPO_URI}" |
299 | ${elogcmd} " repository: ${EGIT_REPO_URI}" |
| 209 | einfo " commit: ${oldsha1}" |
300 | ${elogcmd} " at the commit: ${cursha1}" |
|
|
301 | popd &> /dev/null |
| 210 | else |
302 | else |
|
|
303 | pushd "${GIT_DIR}" &> /dev/null |
| 211 | # Git urls might change, so unconditionally set it here |
304 | # Git urls might change, so unconditionally set it here |
| 212 | git config remote.origin.url "${EGIT_REPO_URI}" |
305 | git config remote.origin.url "${EGIT_REPO_URI}" |
| 213 | |
306 | |
| 214 | # fetch updates |
307 | # fetch updates |
| 215 | einfo "git update start -->" |
308 | ${elogcmd} "GIT update -->" |
| 216 | einfo " repository: ${EGIT_REPO_URI}" |
309 | ${elogcmd} " repository: ${EGIT_REPO_URI}" |
| 217 | |
310 | |
| 218 | local oldsha1=$(git rev-parse ${EGIT_BRANCH}) |
311 | oldsha1=$(git rev-parse ${upstream_branch}) |
| 219 | |
312 | |
|
|
313 | if [[ -n ${EGIT_HAS_SUBMODULES} ]]; then |
|
|
314 | debug-print "${EGIT_UPDATE_CMD} ${EGIT_OPTIONS}" |
|
|
315 | # fix branching |
|
|
316 | git checkout ${EGIT_MASTER} |
|
|
317 | for x in $(git branch |grep -v "* ${EGIT_MASTER}" |tr '\n' ' '); do |
|
|
318 | git branch -D ${x} |
|
|
319 | done |
|
|
320 | ${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} \ |
|
|
321 | || die "${EGIT}: can't update from ${EGIT_REPO_URI}." |
|
|
322 | else |
|
|
323 | debug-print "${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} origin ${EGIT_BRANCH}:${EGIT_BRANCH}" |
| 220 | ${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} origin ${EGIT_BRANCH}:${EGIT_BRANCH} \ |
324 | ${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} origin ${EGIT_BRANCH}:${EGIT_BRANCH} \ |
| 221 | || die "${EGIT}: can't update from ${EGIT_REPO_URI}." |
325 | || die "${EGIT}: can't update from ${EGIT_REPO_URI}." |
| 222 | |
|
|
| 223 | # piping through cat is needed to avoid a stupid Git feature |
|
|
| 224 | ${EGIT_DIFFSTAT_CMD} ${oldsha1}..${EGIT_BRANCH} | cat |
|
|
| 225 | fi |
326 | fi |
| 226 | |
327 | |
| 227 | einfo " local clone: ${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
328 | git_submodules |
|
|
329 | cursha1=$(git rev-parse ${upstream_branch}) |
| 228 | |
330 | |
|
|
331 | # write out message based on the revisions |
|
|
332 | if [[ "${oldsha1}" != "${cursha1}" ]]; then |
|
|
333 | ${elogcmd} " updating from commit: ${oldsha1}" |
|
|
334 | ${elogcmd} " to commit: ${cursha1}" |
|
|
335 | else |
|
|
336 | ${elogcmd} " at the commit: ${cursha1}" |
|
|
337 | # @ECLASS-VARIABLE: LIVE_FAIL_FETCH_IF_REPO_NOT_UPDATED |
|
|
338 | # @DESCRIPTION: |
|
|
339 | # If this variable is set to TRUE in make.conf or somewhere in |
|
|
340 | # enviroment the package will fail if there is no update, thus in |
|
|
341 | # combination with --keep-going it would lead in not-updating |
|
|
342 | # pakcages that are up-to-date. |
|
|
343 | # TODO: this can lead to issues if more projects/packages use same repo |
|
|
344 | [[ ${LIVE_FAIL_FETCH_IF_REPO_NOT_UPDATED} = true ]] && \ |
|
|
345 | debug-print "${FUNCNAME}: Repository \"${EGIT_REPO_URI}\" is up-to-date. Skipping." && \ |
|
|
346 | die "${EGIT}: Repository \"${EGIT_REPO_URI}\" is up-to-date. Skipping." |
|
|
347 | fi |
|
|
348 | ${EGIT_DIFFSTAT_CMD} ${oldsha1}..${upstream_branch} |
|
|
349 | popd &> /dev/null |
|
|
350 | fi |
|
|
351 | |
|
|
352 | pushd "${GIT_DIR}" &> /dev/null |
| 229 | if ${EGIT_REPACK} || ${EGIT_PRUNE} ; then |
353 | if [[ -n ${EGIT_REPACK} ]] || [[ -n ${EGIT_PRUNE} ]]; then |
| 230 | ebegin "Garbage collecting the repository" |
354 | ebegin "Garbage collecting the repository" |
| 231 | git gc $(${EGIT_PRUNE} && echo '--prune') |
355 | local args |
|
|
356 | [[ -n ${EGIT_PRUNE} ]] && args='--prune' |
|
|
357 | git gc ${args} |
| 232 | eend $? |
358 | eend $? |
| 233 | fi |
359 | fi |
|
|
360 | popd &> /dev/null |
| 234 | |
361 | |
| 235 | einfo " committish: ${EGIT_TREE}" |
362 | # export the git version |
|
|
363 | export EGIT_VERSION="${cursha1}" |
| 236 | |
364 | |
| 237 | # export to the ${WORKDIR} |
365 | # log the repo state |
| 238 | mkdir -p "${S}" |
366 | [[ "${EGIT_COMMIT}" != "${EGIT_BRANCH}" ]] && ${elogcmd} " commit: ${EGIT_COMMIT}" |
| 239 | git archive --format=tar ${EGIT_TREE} | ( cd "${S}" ; tar xf - ) |
367 | ${elogcmd} " branch: ${EGIT_BRANCH}" |
|
|
368 | ${elogcmd} " storage directory: \"${GIT_DIR}\"" |
| 240 | |
369 | |
| 241 | echo ">>> Unpacked to ${S}" |
370 | if [[ -n ${EGIT_HAS_SUBMODULES} ]]; then |
|
|
371 | pushd "${GIT_DIR}" &> /dev/null |
|
|
372 | debug-print "rsync -rlpgo . \"${EGIT_UNPACK_DIR:-${S}}\"" |
|
|
373 | time rsync -rlpgo . "${EGIT_UNPACK_DIR:-${S}}" |
|
|
374 | popd &> /dev/null |
|
|
375 | else |
|
|
376 | unset GIT_DIR |
|
|
377 | debug-print "git clone -l -s -n \"${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}\" \"${EGIT_UNPACK_DIR:-${S}}\"" |
|
|
378 | git clone -l -s -n "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" "${EGIT_UNPACK_DIR:-${S}}" |
|
|
379 | fi |
| 242 | |
380 | |
| 243 | } |
381 | pushd "${EGIT_UNPACK_DIR:-${S}}" &> /dev/null |
|
|
382 | git_branch |
|
|
383 | # submodules always reqire net (thanks to branches changing) |
|
|
384 | [[ -z ${EGIT_OFFLINE} ]] && git_submodules |
|
|
385 | popd &> /dev/null |
| 244 | |
386 | |
|
|
387 | echo ">>> Unpacked to ${EGIT_UNPACK_DIR:-${S}}" |
|
|
388 | } |
| 245 | |
389 | |
| 246 | ## -- git_bootstrap() ------------------------------------------------ # |
390 | # @FUNCTION: git_bootstrap |
| 247 | |
391 | # @DESCRIPTION: |
|
|
392 | # Runs bootstrap command if EGIT_BOOTSTRAP variable contains some value |
|
|
393 | # Remember that what ever gets to the EGIT_BOOTSTRAP variable gets evaled by bash. |
| 248 | git_bootstrap() { |
394 | git_bootstrap() { |
|
|
395 | debug-print-function ${FUNCNAME} "$@" |
| 249 | |
396 | |
| 250 | local patch lpatch |
|
|
| 251 | |
|
|
| 252 | cd "${S}" |
|
|
| 253 | |
|
|
| 254 | if [[ -n ${EGIT_PATCHES} ]] ; then |
397 | if [[ -n ${EGIT_BOOTSTRAP} ]] ; then |
| 255 | einfo "apply patches -->" |
398 | pushd "${S}" > /dev/null |
|
|
399 | einfo "Starting bootstrap" |
| 256 | |
400 | |
| 257 | for patch in ${EGIT_PATCHES} ; do |
401 | if [[ -f ${EGIT_BOOTSTRAP} ]]; then |
| 258 | if [[ -f ${patch} ]] ; then |
402 | # we have file in the repo which we should execute |
| 259 | epatch ${patch} |
403 | debug-print "$FUNCNAME: bootstraping with file \"${EGIT_BOOTSTRAP}\"" |
|
|
404 | |
|
|
405 | if [[ -x ${EGIT_BOOTSTRAP} ]]; then |
|
|
406 | eval "./${EGIT_BOOTSTRAP}" \ |
|
|
407 | || die "${EGIT}: bootstrap script failed" |
| 260 | else |
408 | else |
| 261 | for lpatch in "${FILESDIR}"/${patch} ; do |
409 | eerror "\"${EGIT_BOOTSTRAP}\" is not executable." |
| 262 | if [[ -f ${lpatch} ]] ; then |
410 | eerror "Report upstream, or bug ebuild maintainer to remove bootstrap command." |
| 263 | epatch ${lpatch} |
411 | die "${EGIT}: \"${EGIT_BOOTSTRAP}\" is not executable." |
| 264 | else |
|
|
| 265 | die "${EGIT}: ${patch} is not found" |
|
|
| 266 | fi |
|
|
| 267 | done |
|
|
| 268 | fi |
412 | fi |
|
|
413 | else |
|
|
414 | # we execute some system command |
|
|
415 | debug-print "$FUNCNAME: bootstraping with commands \"${EGIT_BOOTSTRAP}\"" |
|
|
416 | |
|
|
417 | eval "${EGIT_BOOTSTRAP}" \ |
|
|
418 | || die "${EGIT}: bootstrap commands failed." |
|
|
419 | |
|
|
420 | fi |
|
|
421 | |
|
|
422 | einfo "Bootstrap finished" |
|
|
423 | popd > /dev/null |
|
|
424 | fi |
|
|
425 | } |
|
|
426 | |
|
|
427 | # @FUNCTION: git_apply_patches |
|
|
428 | # @DESCRIPTION: |
|
|
429 | # Apply patches from EGIT_PATCHES bash array. |
|
|
430 | # Preferred is using the variable as bash array but for now it allows to write |
|
|
431 | # it also as normal space separated string list. (This part of code should be |
|
|
432 | # removed when all ebuilds get converted on bash array). |
|
|
433 | git_apply_patches() { |
|
|
434 | debug-print-function ${FUNCNAME} "$@" |
|
|
435 | |
|
|
436 | pushd "${EGIT_UNPACK_DIR:-${S}}" > /dev/null |
|
|
437 | if [[ ${#EGIT_PATCHES[@]} -gt 1 ]] ; then |
|
|
438 | for i in "${EGIT_PATCHES[@]}"; do |
|
|
439 | debug-print "$FUNCNAME: git_autopatch: patching from ${i}" |
|
|
440 | epatch "${i}" |
| 269 | done |
441 | done |
| 270 | echo |
|
|
| 271 | fi |
|
|
| 272 | |
|
|
| 273 | if [[ -n ${EGIT_BOOTSTRAP} ]] ; then |
442 | elif [[ -n ${EGIT_PATCHES} ]]; then |
| 274 | einfo "begin bootstrap -->" |
443 | # no need for loop if space separated string is passed. |
| 275 | |
444 | debug-print "$FUNCNAME: git_autopatch: patching from ${EGIT_PATCHES}" |
| 276 | if [[ -f ${EGIT_BOOTSTRAP} ]] && [[ -x ${EGIT_BOOTSTRAP} ]] ; then |
445 | epatch "${EGIT_PATCHES}" |
| 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 |
446 | fi |
| 285 | fi |
|
|
| 286 | |
447 | |
|
|
448 | popd > /dev/null |
| 287 | } |
449 | } |
| 288 | |
450 | |
| 289 | |
451 | # @FUNCTION: git_src_unpack |
| 290 | ## -- git_src_unpack() ------------------------------------------------ # |
452 | # @DESCRIPTION: |
| 291 | |
453 | # src_upack function, calls src_prepare one if EAPI!=2. |
| 292 | git_src_unpack() { |
454 | git_src_unpack() { |
|
|
455 | debug-print-function ${FUNCNAME} "$@" |
| 293 | |
456 | |
| 294 | git_fetch || die "${EGIT}: unknown problem in git_fetch()." |
457 | git_fetch || die "${EGIT}: unknown problem in git_fetch()." |
| 295 | git_bootstrap || die "${EGIT}: unknown problem in git_bootstrap()." |
|
|
| 296 | |
458 | |
|
|
459 | has src_prepare ${EXPORTED_FUNCTIONS} || git_src_prepare |
| 297 | } |
460 | } |
|
|
461 | |
|
|
462 | # @FUNCTION: git_src_prepare |
|
|
463 | # @DESCRIPTION: |
|
|
464 | # src_prepare function for git stuff. Patches, bootstrap... |
|
|
465 | git_src_prepare() { |
|
|
466 | debug-print-function ${FUNCNAME} "$@" |
|
|
467 | |
|
|
468 | git_apply_patches |
|
|
469 | git_bootstrap |
|
|
470 | } |