| 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.5 2007/04/10 11:42:29 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.24 2009/04/13 15:35:58 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 base |
| 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.4.0" |
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. |
| 37 | EGIT_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/git-src" |
44 | EGIT_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/git-src" |
| 38 | |
45 | |
| 39 | |
46 | # @ECLASS-VARIABLE: EGIT_FETCH_CMD |
| 40 | ## -- EGIT_FETCH_CMD: git clone command |
47 | # @DESCRIPTION: |
| 41 | # |
48 | # Command for cloning the repository. |
| 42 | EGIT_FETCH_CMD="git clone --bare" |
49 | : ${EGIT_FETCH_CMD:="git clone --bare"} |
| 43 | |
50 | |
| 44 | ## -- EGIT_UPDATE_CMD: git fetch command |
51 | # @ECLASS-VARIABLE: EGIT_UPDATE_CMD |
| 45 | # |
52 | # @DESCRIPTION: |
|
|
53 | # Git fetch command. |
| 46 | EGIT_UPDATE_CMD="git fetch -f -u" |
54 | EGIT_UPDATE_CMD="git fetch -f -u" |
| 47 | |
55 | |
| 48 | ## -- EGIT_DIFFSTAT_CMD: Command to get diffstat output |
56 | # @ECLASS-VARIABLE: EGIT_DIFFSTAT_CMD |
| 49 | # |
57 | # @DESCRIPTION: |
|
|
58 | # Git command for diffstat. |
| 50 | EGIT_DIFFSTAT_CMD="git diff --stat" |
59 | EGIT_DIFFSTAT_CMD="git --no-pager diff --stat" |
| 51 | |
60 | |
| 52 | |
61 | # @ECLASS-VARIABLE: EGIT_OPTIONS |
| 53 | ## -- EGIT_OPTIONS: |
62 | # @DESCRIPTION: |
| 54 | # |
63 | # This variable value is passed to clone and fetch. |
| 55 | # the options passed to clone and fetch |
|
|
| 56 | # |
|
|
| 57 | : ${EGIT_OPTIONS:=} |
64 | : ${EGIT_OPTIONS:=} |
| 58 | |
65 | |
| 59 | |
66 | # @ECLASS-VARIABLE: EGIT_REPO_URI |
| 60 | ## -- EGIT_REPO_URI: repository uri |
67 | # @DESCRIPTION: |
| 61 | # |
68 | # URI for the repository |
| 62 | # e.g. http://foo, git://bar |
69 | # e.g. http://foo, git://bar |
| 63 | # |
|
|
| 64 | # supported protocols: |
70 | # Supported protocols: |
| 65 | # http:// |
71 | # http:// |
| 66 | # https:// |
72 | # https:// |
| 67 | # git:// |
73 | # git:// |
| 68 | # git+ssh:// |
74 | # git+ssh:// |
| 69 | # rsync:// |
75 | # rsync:// |
| 70 | # ssh:// |
76 | # ssh:// |
| 71 | # |
|
|
| 72 | : ${EGIT_REPO_URI:=} |
77 | : ${EGIT_REPO_URI:=} |
| 73 | |
78 | |
| 74 | |
79 | # @ECLASS-VARIABLE: EGIT_PROJECT |
| 75 | ## -- EGIT_PROJECT: project name of your ebuild |
80 | # @DESCRIPTION: |
| 76 | # |
81 | # Project name of your ebuild. |
| 77 | # git eclass will check out the git repository like: |
82 | # Git eclass will check out the git repository like: |
| 78 | # |
|
|
| 79 | # ${EGIT_STORE_DIR}/${EGIT_PROJECT}/${EGIT_REPO_URI##*/} |
83 | # ${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 |
84 | # 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. |
85 | # http://git.collab.net/repo/git. and PN is subversion-git. |
| 83 | # it will check out like: |
86 | # it will check out like: |
| 84 | # |
|
|
| 85 | # ${EGIT_STORE_DIR}/subversion |
87 | # ${EGIT_STORE_DIR}/subversion |
| 86 | # |
|
|
| 87 | # default: ${PN/-git}. |
|
|
| 88 | # |
|
|
| 89 | : ${EGIT_PROJECT:=${PN/-git}} |
88 | : ${EGIT_PROJECT:=${PN/-git}} |
| 90 | |
89 | |
| 91 | |
90 | # @ECLASS-VARIABLE: EGIT_BOOSTRAP |
| 92 | ## -- EGIT_BOOTSTRAP: |
91 | # @DESCRIPTION: |
| 93 | # |
|
|
| 94 | # bootstrap script or command like autogen.sh or etc.. |
92 | # bootstrap script or command like autogen.sh or etc... |
| 95 | # |
|
|
| 96 | : ${EGIT_BOOTSTRAP:=} |
93 | : ${EGIT_BOOTSTRAP:=} |
| 97 | |
94 | |
|
|
95 | # @ECLASS-VARIABLE: EGIT_OFFLINE |
|
|
96 | # @DESCRIPTION: |
|
|
97 | # Set this variable to a non-empty value to disable the automatic updating of |
|
|
98 | # an GIT source tree. This is intended to be set outside the git source |
|
|
99 | # tree by users. |
|
|
100 | EGIT_OFFLINE="${EGIT_OFFLINE:-${ESCM_OFFLINE}}" |
| 98 | |
101 | |
| 99 | ## -- EGIT_PATCHES: |
102 | # @ECLASS-VARIABLE: EGIT_PATCHES |
| 100 | # |
103 | # @DESCRIPTION: |
| 101 | # git eclass can apply pathces in git_bootstrap(). |
104 | # Similar to PATCHES array from base.eclass |
| 102 | # you can use regexp in this valiable like *.diff or *.patch or etc. |
105 | # Only difference is that this patches are applied before bootstrap. |
| 103 | # NOTE: this patches will apply before eval EGIT_BOOTSTRAP. |
106 | # 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 | |
107 | |
| 112 | |
108 | # @ECLASS-VARIABLE: EGIT_BRANCH |
| 113 | ## -- EGIT_BRANCH: |
109 | # @DESCRIPTION: |
| 114 | # |
|
|
| 115 | # git eclass can fetch any branch in git_fetch(). |
110 | # git eclass can fetch any branch in git_fetch(). |
| 116 | # Defaults to 'master' |
|
|
| 117 | # |
|
|
| 118 | : ${EGIT_BRANCH:=master} |
111 | : ${EGIT_BRANCH:=master} |
| 119 | |
112 | |
| 120 | |
113 | # @ECLASS-VARIABLE: EGIT_TREE |
| 121 | ## -- EGIT_TREE: |
114 | # @DESCRIPTION: |
| 122 | # |
|
|
| 123 | # git eclass can checkout any tree. |
115 | # git eclass can checkout any tree (commit). |
| 124 | # Defaults to EGIT_BRANCH. |
|
|
| 125 | # |
|
|
| 126 | : ${EGIT_TREE:=${EGIT_BRANCH}} |
116 | : ${EGIT_TREE:=${EGIT_BRANCH}} |
| 127 | |
117 | |
| 128 | |
118 | # @ECLASS-VARIABLE: EGIT_REPACK |
| 129 | ## - EGIT_REPACK: |
119 | # @DESCRIPTION: |
| 130 | # |
|
|
| 131 | # git eclass will repack objects to save disk space. However this can take a |
120 | # git eclass will repack objects to save disk space. However this can take a |
| 132 | # long time with VERY big repositories. If this is your case set: |
121 | # long time with VERY big repositories. |
| 133 | # EGIT_REPACK=false |
|
|
| 134 | # |
|
|
| 135 | : ${EGIT_REPACK:=false} |
122 | : ${EGIT_REPACK:=false} |
| 136 | |
123 | |
| 137 | ## - EGIT_PRUNE: |
124 | # @ECLASS-VARIABLE: EGIT_PRUNE |
| 138 | # |
125 | # @DESCRIPTION: |
| 139 | # git eclass can prune the local clone. This is useful if upstream rewinds and |
126 | # git.eclass can prune the local clone. This is useful if upstream rewinds and |
| 140 | # rebases branches too often. If you don't want this to happen, set: |
127 | # rebases branches too often. |
| 141 | # EGIT_PRUNE=false |
|
|
| 142 | # |
|
|
| 143 | : ${EGIT_PRUNE:=false} |
128 | : ${EGIT_PRUNE:=false} |
| 144 | |
129 | |
| 145 | |
130 | # @FUNCTION: git_fetch |
| 146 | ## -- git_fetch() ------------------------------------------------- # |
131 | # @DESCRIPTION: |
| 147 | |
132 | # Gets repository from EGIT_REPO_URI and store it in specified EGIT_STORE_DIR |
| 148 | git_fetch() { |
133 | git_fetch() { |
|
|
134 | debug-print-function ${FUNCNAME} "$@" |
| 149 | |
135 | |
| 150 | local EGIT_CLONE_DIR |
136 | local EGIT_CLONE_DIR oldsha1 cursha1 |
|
|
137 | |
|
|
138 | # choose if user wants elog or just einfo. |
|
|
139 | if [[ ${EGIT_QUIET} != OFF ]]; then |
|
|
140 | elogcmd="einfo" |
|
|
141 | else |
|
|
142 | elogcmd="elog" |
|
|
143 | fi |
|
|
144 | |
|
|
145 | # If we have same branch and the tree we can do --depth 1 clone |
|
|
146 | # which outputs into really smaller data transfers. |
|
|
147 | # Sadly we can do shallow copy for now because quite a few packages need .git |
|
|
148 | # folder. |
|
|
149 | #[[ ${EGIT_TREE} = ${EGIT_BRANCH} ]] && \ |
|
|
150 | # EGIT_FETCH_CMD="${EGIT_FETCH_CMD} --depth 1" |
| 151 | |
151 | |
| 152 | # EGIT_REPO_URI is empty. |
152 | # EGIT_REPO_URI is empty. |
| 153 | [[ -z ${EGIT_REPO_URI} ]] && die "${EGIT}: EGIT_REPO_URI is empty." |
153 | [[ -z ${EGIT_REPO_URI} ]] && die "${EGIT}: EGIT_REPO_URI is empty." |
| 154 | |
154 | |
| 155 | # check for the protocol or pull from a local repo. |
155 | # check for the protocol or pull from a local repo. |
| 156 | if [[ -z ${EGIT_REPO_URI%%:*} ]] ; then |
156 | if [[ -z ${EGIT_REPO_URI%%:*} ]] ; then |
| 157 | case ${EGIT_REPO_URI%%:*} in |
157 | case ${EGIT_REPO_URI%%:*} in |
| 158 | git*|http|https|rsync|ssh) |
158 | git*|http|https|rsync|ssh) ;; |
| 159 | ;; |
|
|
| 160 | *) |
|
|
| 161 | die "${EGIT}: fetch from "${EGIT_REPO_URI%:*}" is not yet implemented." |
159 | *) die "${EGIT}: protocol for fetch from "${EGIT_REPO_URI%:*}" is not yet implemented in eclass." ;; |
| 162 | ;; |
|
|
| 163 | esac |
160 | esac |
| 164 | fi |
161 | fi |
| 165 | |
162 | |
|
|
163 | # initial clone, we have to create master git storage directory and play |
|
|
164 | # nicely with sandbox |
| 166 | if [[ ! -d ${EGIT_STORE_DIR} ]] ; then |
165 | if [[ ! -d ${EGIT_STORE_DIR} ]] ; then |
| 167 | debug-print "${FUNCNAME}: initial clone. creating git directory" |
166 | debug-print "${FUNCNAME}: initial clone. creating git directory" |
| 168 | addwrite / |
167 | addwrite / |
| 169 | mkdir -p "${EGIT_STORE_DIR}" \ |
168 | mkdir -p "${EGIT_STORE_DIR}" \ |
| 170 | || die "${EGIT}: can't mkdir ${EGIT_STORE_DIR}." |
169 | || 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%%:/}" |
170 | export SANDBOX_WRITE="${SANDBOX_WRITE%%:/}" |
| 174 | fi |
171 | fi |
| 175 | |
172 | |
| 176 | cd -P "${EGIT_STORE_DIR}" || die "${EGIT}: can't chdir to ${EGIT_STORE_DIR}" |
173 | cd -P "${EGIT_STORE_DIR}" || die "${EGIT}: can't chdir to ${EGIT_STORE_DIR}" |
| 177 | EGIT_STORE_DIR=${PWD} |
174 | EGIT_STORE_DIR=${PWD} |
| 178 | |
175 | |
| 179 | # every time |
176 | # allow writing into EGIT_STORE_DIR |
| 180 | addwrite "${EGIT_STORE_DIR}" |
177 | addwrite "${EGIT_STORE_DIR}" |
| 181 | |
178 | |
| 182 | [[ -z ${EGIT_REPO_URI##*/} ]] && EGIT_REPO_URI="${EGIT_REPO_URI%/}" |
179 | [[ -z ${EGIT_REPO_URI##*/} ]] && EGIT_REPO_URI="${EGIT_REPO_URI%/}" |
| 183 | EGIT_CLONE_DIR="${EGIT_PROJECT}" |
180 | EGIT_CLONE_DIR="${EGIT_PROJECT}" |
| 184 | |
181 | |
| 185 | debug-print "${FUNCNAME}: EGIT_OPTIONS = \"${EGIT_OPTIONS}\"" |
182 | debug-print "${FUNCNAME}: EGIT_OPTIONS = \"${EGIT_OPTIONS}\"" |
| 186 | |
183 | |
| 187 | export GIT_DIR="${EGIT_CLONE_DIR}" |
184 | export GIT_DIR="${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
|
|
185 | |
|
|
186 | # we also have to remove all shallow copied repositories |
|
|
187 | # and fetch them again |
|
|
188 | if [[ -e "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}/shallow" ]]; then |
|
|
189 | rm -rf "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
|
|
190 | einfo "The ${EGIT_CLONE_DIR} was shallow copy. Refetching." |
|
|
191 | fi |
| 188 | |
192 | |
| 189 | if [[ ! -d ${EGIT_CLONE_DIR} ]] ; then |
193 | if [[ ! -d ${EGIT_CLONE_DIR} ]] ; then |
| 190 | # first clone |
194 | # first clone |
| 191 | einfo "git clone start -->" |
195 | ${elogcmd} "GIT NEW clone -->" |
| 192 | einfo " repository: ${EGIT_REPO_URI}" |
196 | ${elogcmd} " repository: ${EGIT_REPO_URI}" |
| 193 | |
197 | |
| 194 | ${EGIT_FETCH_CMD} ${EGIT_OPTIONS} "${EGIT_REPO_URI}" ${EGIT_PROJECT} \ |
198 | ${EGIT_FETCH_CMD} ${EGIT_OPTIONS} "${EGIT_REPO_URI}" ${EGIT_PROJECT} \ |
| 195 | || die "${EGIT}: can't fetch from ${EGIT_REPO_URI}." |
199 | || die "${EGIT}: can't fetch from ${EGIT_REPO_URI}." |
| 196 | |
200 | |
|
|
201 | oldsha1=$(git rev-parse ${EGIT_BRANCH}) |
|
|
202 | ${elogcmd} " at the commit: ${oldsha1}" |
|
|
203 | |
| 197 | # We use --bare cloning, so git doesn't do this for us. |
204 | # We use --bare cloning, so git doesn't do this for us. |
| 198 | git repo-config remote.origin.url "${EGIT_REPO_URI}" |
205 | git config remote.origin.url "${EGIT_REPO_URI}" |
|
|
206 | elif [[ -n ${EGIT_OFFLINE} ]] ; then |
|
|
207 | oldsha1=$(git rev-parse ${EGIT_BRANCH}) |
|
|
208 | ${elogcmd} "GIT offline update -->" |
|
|
209 | ${elogcmd} " repository: ${EGIT_REPO_URI}" |
|
|
210 | ${elogcmd} " at the commit: ${oldsha1}" |
| 199 | else |
211 | else |
|
|
212 | # Git urls might change, so unconditionally set it here |
|
|
213 | git config remote.origin.url "${EGIT_REPO_URI}" |
|
|
214 | |
| 200 | # fetch updates |
215 | # fetch updates |
| 201 | einfo "git update start -->" |
216 | ${elogcmd} "GIT update -->" |
| 202 | einfo " repository: ${EGIT_REPO_URI}" |
217 | ${elogcmd} " repository: ${EGIT_REPO_URI}" |
| 203 | |
218 | |
| 204 | local oldsha1=$(git rev-parse ${EGIT_BRANCH}) |
219 | oldsha1=$(git rev-parse ${EGIT_BRANCH}) |
| 205 | |
220 | |
| 206 | ${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} origin ${EGIT_BRANCH}:${EGIT_BRANCH} \ |
221 | ${EGIT_UPDATE_CMD} ${EGIT_OPTIONS} origin ${EGIT_BRANCH}:${EGIT_BRANCH} \ |
| 207 | || die "${EGIT}: can't update from ${EGIT_REPO_URI}." |
222 | || die "${EGIT}: can't update from ${EGIT_REPO_URI}." |
| 208 | |
223 | |
| 209 | # piping through cat is needed to avoid a stupid Git feature |
224 | cursha1=$(git rev-parse ${EGIT_BRANCH}) |
|
|
225 | |
|
|
226 | # write out message based on the revisions |
|
|
227 | if [[ ${oldsha1} != ${cursha1} ]]; then |
|
|
228 | ${elogcmd} " updating from commit: ${oldsha1}" |
|
|
229 | ${elogcmd} " to commit: ${cursha1}" |
|
|
230 | else |
|
|
231 | ${elogcmd} " at the commit: ${cursha1}" |
|
|
232 | fi |
| 210 | ${EGIT_DIFFSTAT_CMD} ${oldsha1}..${EGIT_BRANCH} | cat |
233 | ${EGIT_DIFFSTAT_CMD} ${oldsha1}..${EGIT_BRANCH} |
| 211 | fi |
234 | fi |
| 212 | |
235 | |
| 213 | einfo " local clone: ${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
236 | if ${EGIT_REPACK} || ${EGIT_PRUNE} ; then |
| 214 | |
237 | ebegin "Garbage collecting the repository" |
| 215 | if ${EGIT_REPACK} ; then |
238 | git gc $(${EGIT_PRUNE} && echo '--prune') |
| 216 | ebegin "Repacking objects" |
|
|
| 217 | # Strangely enough mv asks confirmation |
|
|
| 218 | yes y | git repack -a -d -f -q > /dev/null |
|
|
| 219 | eend $? |
239 | eend $? |
| 220 | fi |
240 | fi |
| 221 | |
241 | |
| 222 | if ${EGIT_PRUNE} ; then |
242 | [[ ${EGIT_TREE} != ${EGIT_BRANCH} ]] && elog " tree: ${EGIT_TREE}" |
| 223 | ebegin "Removing unreachable objects" |
243 | ${elogcmd} " branch: ${EGIT_BRANCH}" |
| 224 | git prune |
244 | ${elogcmd} " storage directory: \"${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}\"" |
| 225 | eend $? |
|
|
| 226 | fi |
|
|
| 227 | |
245 | |
| 228 | einfo " committish: ${EGIT_TREE}" |
246 | # unpack to the ${S} |
|
|
247 | unset GIT_DIR |
|
|
248 | debug-print "git clone -l -s -n \"${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}\" \"${S}\"" |
|
|
249 | git clone -l -s -n "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" "${S}" |
|
|
250 | |
|
|
251 | # set correct branch and the tree ebuild specified |
|
|
252 | pushd "${S}" > /dev/null |
|
|
253 | local branchname=branch-${EGIT_BRANCH} src=origin/${EGIT_BRANCH} |
|
|
254 | if [[ ${EGIT_TREE} != ${EGIT_BRANCH} ]]; then |
|
|
255 | branchname=tree-${EGIT_TREE} |
|
|
256 | src=${EGIT_TREE} |
|
|
257 | fi |
|
|
258 | debug-print "git checkout -b ${branchname} ${src}" |
|
|
259 | git checkout -b ${branchname} ${src} 2>&1 > /dev/null |
|
|
260 | popd > /dev/null |
| 229 | |
261 | |
| 230 | # export to the ${WORKDIR} |
262 | unset branchname src |
| 231 | mkdir -p "${S}" |
|
|
| 232 | git tar-tree ${EGIT_TREE} | ( cd "${S}" ; tar xf - ) |
|
|
| 233 | |
263 | |
| 234 | echo ">>> Unpacked to ${S}" |
264 | echo ">>> Unpacked to ${S}" |
| 235 | |
|
|
| 236 | } |
265 | } |
| 237 | |
266 | |
| 238 | |
267 | # @FUNCTION: git_bootstrap |
| 239 | ## -- git_bootstrap() ------------------------------------------------ # |
268 | # @DESCRIPTION: |
| 240 | |
269 | # Runs bootstrap command if EGIT_BOOTSTRAP variable contains some value |
|
|
270 | # Remember that what ever gets to the EGIT_BOOTSTRAP variable gets evaled by bash. |
| 241 | git_bootstrap() { |
271 | git_bootstrap() { |
|
|
272 | debug-print-function ${FUNCNAME} "$@" |
| 242 | |
273 | |
| 243 | local patch lpatch |
|
|
| 244 | |
|
|
| 245 | cd "${S}" |
|
|
| 246 | |
|
|
| 247 | if [[ -n ${EGIT_PATCHES} ]] ; then |
274 | if [[ -n ${EGIT_BOOTSTRAP} ]] ; then |
| 248 | einfo "apply patches -->" |
275 | pushd "${S}" > /dev/null |
|
|
276 | einfo "Starting bootstrap" |
| 249 | |
277 | |
| 250 | for patch in ${EGIT_PATCHES} ; do |
278 | if [[ -f ${EGIT_BOOTSTRAP} ]]; then |
| 251 | if [[ -f ${patch} ]] ; then |
279 | # we have file in the repo which we should execute |
| 252 | epatch ${patch} |
280 | debug-print "$FUNCNAME: bootstraping with file \"${EGIT_BOOTSTRAP}\"" |
|
|
281 | |
|
|
282 | if [[ -x ${EGIT_BOOTSTRAP} ]]; then |
|
|
283 | eval "./${EGIT_BOOTSTRAP}" \ |
|
|
284 | || die "${EGIT}: bootstrap script failed" |
| 253 | else |
285 | else |
| 254 | for lpatch in "${FILESDIR}"/${patch} ; do |
286 | eerror "\"${EGIT_BOOTSTRAP}\" is not executable." |
| 255 | if [[ -f ${lpatch} ]] ; then |
287 | eerror "Report upstream, or bug ebuild maintainer to remove bootstrap command." |
| 256 | epatch ${lpatch} |
288 | die "${EGIT}: \"${EGIT_BOOTSTRAP}\" is not executable." |
| 257 | else |
|
|
| 258 | die "${EGIT}: ${patch} is not found" |
|
|
| 259 | fi |
|
|
| 260 | done |
|
|
| 261 | fi |
289 | fi |
|
|
290 | else |
|
|
291 | # we execute some system command |
|
|
292 | debug-print "$FUNCNAME: bootstraping with commands \"${EGIT_BOOTSTRAP}\"" |
|
|
293 | |
|
|
294 | eval "${EGIT_BOOTSTRAP}" \ |
|
|
295 | || die "${EGIT}: bootstrap commands failed." |
|
|
296 | |
|
|
297 | fi |
|
|
298 | |
|
|
299 | einfo "Bootstrap finished" |
|
|
300 | popd > /dev/null |
|
|
301 | fi |
|
|
302 | } |
|
|
303 | |
|
|
304 | # @FUNCTION: git_apply_patches |
|
|
305 | # @DESCRIPTION: |
|
|
306 | # Apply patches from EGIT_PATCHES bash array. |
|
|
307 | # Preffered is using the variable as bash array but for now it allows to write |
|
|
308 | # it also as normal space separated string list. (This part of code should be |
|
|
309 | # removed when all ebuilds get converted on bash array). |
|
|
310 | git_apply_patches() { |
|
|
311 | debug-print-function ${FUNCNAME} "$@" |
|
|
312 | |
|
|
313 | pushd "${S}" > /dev/null |
|
|
314 | if [[ ${#EGIT_PATCHES[@]} -gt 1 ]] ; then |
|
|
315 | for i in "${EGIT_PATCHES[@]}"; do |
|
|
316 | debug-print "$FUNCNAME: git_autopatch: patching from ${i}" |
|
|
317 | epatch "${i}" |
| 262 | done |
318 | done |
| 263 | echo |
319 | elif [[ ${EGIT_PATCHES} != "" ]]; then |
| 264 | fi |
320 | # no need for loop if space separated string is passed. |
| 265 | |
321 | debug-print "$FUNCNAME: git_autopatch: patching from ${EGIT_PATCHES}" |
| 266 | if [[ -n ${EGIT_BOOTSTRAP} ]] ; then |
322 | epatch "${EGIT_PATCHES}" |
| 267 | einfo "begin bootstrap -->" |
|
|
| 268 | |
|
|
| 269 | if [[ -f ${EGIT_BOOTSTRAP} ]] && [[ -x ${EGIT_BOOTSTRAP} ]] ; then |
|
|
| 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 |
323 | fi |
| 278 | fi |
|
|
| 279 | |
324 | |
|
|
325 | popd > /dev/null |
| 280 | } |
326 | } |
| 281 | |
327 | |
| 282 | |
328 | # @FUNCTION: git_src_unpack |
| 283 | ## -- git_src_unpack() ------------------------------------------------ # |
329 | # @DESCRIPTION: |
| 284 | |
330 | # src_upack function, calls src_prepare one if EAPI!=2. |
| 285 | git_src_unpack() { |
331 | git_src_unpack() { |
|
|
332 | debug-print-function ${FUNCNAME} "$@" |
| 286 | |
333 | |
| 287 | git_fetch || die "${EGIT}: unknown problem in git_fetch()." |
334 | git_fetch || die "${EGIT}: unknown problem in git_fetch()." |
| 288 | git_bootstrap || die "${EGIT}: unknown problem in git_bootstrap()." |
|
|
| 289 | |
335 | |
|
|
336 | has src_prepare ${EXPORTED_FUNCTIONS} || git_src_prepare |
| 290 | } |
337 | } |
|
|
338 | |
|
|
339 | # @FUNCTION: git_src_prepare |
|
|
340 | # @DESCRIPTION: |
|
|
341 | # src_prepare function for git stuff. Patches, bootstrap... |
|
|
342 | git_src_prepare() { |
|
|
343 | debug-print-function ${FUNCNAME} "$@" |
|
|
344 | |
|
|
345 | git_apply_patches |
|
|
346 | git_bootstrap |
|
|
347 | } |