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