| 1 | # Copyright 1999-2008 Gentoo Foundation |
1 | # Copyright 1999-2012 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/subversion.eclass,v 1.46 2008/02/20 17:11:34 zlin Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/subversion.eclass,v 1.83 2012/07/29 05:54:17 hattya Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: subversion.eclass |
5 | # @ECLASS: subversion.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Akinori Hattori <hattya@gentoo.org> |
7 | # Akinori Hattori <hattya@gentoo.org> |
| 8 | # Bo Ørsted Andresen <zlin@gentoo.org> |
8 | # @AUTHOR: |
| 9 | # |
|
|
| 10 | # Original Author: Akinori Hattori <hattya@gentoo.org> |
9 | # Original Author: Akinori Hattori <hattya@gentoo.org> |
| 11 | # |
|
|
| 12 | # @BLURB: The subversion eclass is written to fetch software sources from subversion repositories |
10 | # @BLURB: The subversion eclass is written to fetch software sources from subversion repositories |
| 13 | # @DESCRIPTION: |
11 | # @DESCRIPTION: |
| 14 | # The subversion eclass provides functions to fetch, patch and bootstrap |
12 | # The subversion eclass provides functions to fetch, patch and bootstrap |
| 15 | # software sources from subversion repositories. |
13 | # software sources from subversion repositories. |
| 16 | # |
|
|
| 17 | # You must define the ESVN_REPO_URI variable before inheriting this eclass. |
|
|
| 18 | |
14 | |
| 19 | inherit eutils |
15 | inherit eutils |
| 20 | |
16 | |
| 21 | ESVN="${ECLASS}" |
17 | ESVN="${ECLASS}" |
| 22 | |
18 | |
|
|
19 | case "${EAPI:-0}" in |
|
|
20 | 0|1) |
| 23 | EXPORT_FUNCTIONS src_unpack |
21 | EXPORT_FUNCTIONS src_unpack pkg_preinst |
| 24 | |
|
|
| 25 | DESCRIPTION="Based on the ${ECLASS} eclass" |
|
|
| 26 | |
|
|
| 27 | DEPEND="dev-util/subversion |
22 | DEPEND="dev-vcs/subversion" |
| 28 | net-misc/rsync" |
23 | ;; |
|
|
24 | *) |
|
|
25 | EXPORT_FUNCTIONS src_unpack src_prepare pkg_preinst |
|
|
26 | DEPEND="|| ( dev-vcs/subversion[webdav-neon] dev-vcs/subversion[webdav-serf] )" |
|
|
27 | ;; |
|
|
28 | esac |
|
|
29 | |
|
|
30 | DEPEND+=" net-misc/rsync" |
| 29 | |
31 | |
| 30 | # @ECLASS-VARIABLE: ESVN_STORE_DIR |
32 | # @ECLASS-VARIABLE: ESVN_STORE_DIR |
| 31 | # @DESCRIPTION: |
33 | # @DESCRIPTION: |
| 32 | # subversion sources store directory. Users may override this in /etc/make.conf |
34 | # subversion sources store directory. Users may override this in /etc/make.conf |
| 33 | [[ -z ${ESVN_STORE_DIR} ]] && ESVN_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}/svn-src" |
35 | [[ -z ${ESVN_STORE_DIR} ]] && ESVN_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}/svn-src" |
| … | |
… | |
| 39 | |
41 | |
| 40 | # @ECLASS-VARIABLE: ESVN_UPDATE_CMD |
42 | # @ECLASS-VARIABLE: ESVN_UPDATE_CMD |
| 41 | # @DESCRIPTION: |
43 | # @DESCRIPTION: |
| 42 | # subversion update command |
44 | # subversion update command |
| 43 | ESVN_UPDATE_CMD="svn update" |
45 | ESVN_UPDATE_CMD="svn update" |
|
|
46 | |
|
|
47 | # @ECLASS-VARIABLE: ESVN_SWITCH_CMD |
|
|
48 | # @DESCRIPTION: |
|
|
49 | # subversion switch command |
|
|
50 | ESVN_SWITCH_CMD="svn switch" |
| 44 | |
51 | |
| 45 | # @ECLASS-VARIABLE: ESVN_OPTIONS |
52 | # @ECLASS-VARIABLE: ESVN_OPTIONS |
| 46 | # @DESCRIPTION: |
53 | # @DESCRIPTION: |
| 47 | # the options passed to checkout or update. If you want a specific revision see |
54 | # the options passed to checkout or update. If you want a specific revision see |
| 48 | # ESVN_REPO_URI instead of using -rREV. |
55 | # ESVN_REPO_URI instead of using -rREV. |
| … | |
… | |
| 52 | # @DESCRIPTION: |
59 | # @DESCRIPTION: |
| 53 | # repository uri |
60 | # repository uri |
| 54 | # |
61 | # |
| 55 | # e.g. http://foo/trunk, svn://bar/trunk, svn://bar/branch/foo@1234 |
62 | # e.g. http://foo/trunk, svn://bar/trunk, svn://bar/branch/foo@1234 |
| 56 | # |
63 | # |
| 57 | # supported protocols: |
64 | # supported URI schemes: |
| 58 | # http:// |
65 | # http:// |
| 59 | # https:// |
66 | # https:// |
| 60 | # svn:// |
67 | # svn:// |
| 61 | # svn+ssh:// |
68 | # svn+ssh:// |
|
|
69 | # file:// |
| 62 | # |
70 | # |
| 63 | # to peg to a specific revision, append @REV to the repo's uri |
71 | # to peg to a specific revision, append @REV to the repo's uri |
| 64 | ESVN_REPO_URI="${ESVN_REPO_URI:-}" |
72 | ESVN_REPO_URI="${ESVN_REPO_URI:-}" |
|
|
73 | |
|
|
74 | # @ECLASS-VARIABLE: ESVN_REVISION |
|
|
75 | # @DESCRIPTION: |
|
|
76 | # User configurable revision checkout or update to from the repository |
|
|
77 | # |
|
|
78 | # Useful for live svn or trunk svn ebuilds allowing the user to peg |
|
|
79 | # to a specific revision |
|
|
80 | # |
|
|
81 | # Note: This should never be set in an ebuild! |
|
|
82 | ESVN_REVISION="${ESVN_REVISION:-}" |
|
|
83 | |
|
|
84 | # @ECLASS-VARIABLE: ESVN_USER |
|
|
85 | # @DESCRIPTION: |
|
|
86 | # User name |
|
|
87 | ESVN_USER="${ESVN_USER:-}" |
|
|
88 | |
|
|
89 | # @ECLASS-VARIABLE: ESVN_PASSWORD |
|
|
90 | # @DESCRIPTION: |
|
|
91 | # Password |
|
|
92 | ESVN_PASSWORD="${ESVN_PASSWORD:-}" |
| 65 | |
93 | |
| 66 | # @ECLASS-VARIABLE: ESVN_PROJECT |
94 | # @ECLASS-VARIABLE: ESVN_PROJECT |
| 67 | # @DESCRIPTION: |
95 | # @DESCRIPTION: |
| 68 | # project name of your ebuild (= name space) |
96 | # project name of your ebuild (= name space) |
| 69 | # |
97 | # |
| … | |
… | |
| 107 | # restrict. |
135 | # restrict. |
| 108 | # export) |
136 | # export) |
| 109 | # don't export the working copy to S. |
137 | # don't export the working copy to S. |
| 110 | ESVN_RESTRICT="${ESVN_RESTRICT:-}" |
138 | ESVN_RESTRICT="${ESVN_RESTRICT:-}" |
| 111 | |
139 | |
|
|
140 | # @ECLASS-VARIABLE: ESVN_OFFLINE |
|
|
141 | # @DESCRIPTION: |
|
|
142 | # Set this variable to a non-empty value to disable the automatic updating of |
|
|
143 | # an svn source tree. This is intended to be set outside the subversion source |
|
|
144 | # tree by users. |
|
|
145 | ESVN_OFFLINE="${ESVN_OFFLINE:-${EVCS_OFFLINE}}" |
|
|
146 | |
|
|
147 | # @ECLASS-VARIABLE: ESVN_UMASK |
|
|
148 | # @DESCRIPTION: |
|
|
149 | # Set this variable to a custom umask. This is intended to be set by users. |
|
|
150 | # By setting this to something like 002, it can make life easier for people |
|
|
151 | # who do development as non-root (but are in the portage group), and then |
|
|
152 | # switch over to building with FEATURES=userpriv. Or vice-versa. Shouldn't |
|
|
153 | # be a security issue here as anyone who has portage group write access |
|
|
154 | # already can screw the system over in more creative ways. |
|
|
155 | ESVN_UMASK="${ESVN_UMASK:-${EVCS_UMASK}}" |
|
|
156 | |
|
|
157 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
|
|
158 | # @DESCRIPTION: |
|
|
159 | # Set the minimum number of hours between svn up'ing in any given svn module. This is particularly |
|
|
160 | # useful for split KDE ebuilds where we want to ensure that all submodules are compiled for the same |
|
|
161 | # revision. It should also be kept user overrideable. |
|
|
162 | ESVN_UP_FREQ="${ESVN_UP_FREQ:=}" |
|
|
163 | |
|
|
164 | # @ECLASS-VARIABLE: ESCM_LOGDIR |
|
|
165 | # @DESCRIPTION: |
|
|
166 | # User configuration variable. If set to a path such as e.g. /var/log/scm any |
|
|
167 | # package inheriting from subversion.eclass will record svn revision to |
|
|
168 | # ${CATEGORY}/${PN}.log in that path in pkg_preinst. This is not supposed to be |
|
|
169 | # set by ebuilds/eclasses. It defaults to empty so users need to opt in. |
|
|
170 | ESCM_LOGDIR="${ESCM_LOGDIR:=}" |
|
|
171 | |
| 112 | # @FUNCTION: subversion_fetch |
172 | # @FUNCTION: subversion_fetch |
| 113 | # @USAGE: [repo_uri] [destination] |
173 | # @USAGE: [repo_uri] [destination] |
| 114 | # @DESCRIPTION: |
174 | # @DESCRIPTION: |
| 115 | # Wrapper function to fetch sources from subversion via svn checkout or svn update, |
175 | # Wrapper function to fetch sources from subversion via svn checkout or svn update, |
| 116 | # depending on whether there is an existing working copy in ${ESVN_STORE_DIR}. |
176 | # depending on whether there is an existing working copy in ${ESVN_STORE_DIR}. |
| 117 | # |
177 | # |
| 118 | # Can take two optional parameters: |
178 | # Can take two optional parameters: |
| 119 | # repo_uri - a repository URI. default is ESVN_REPO_URI. |
179 | # repo_uri - a repository URI. default is ESVN_REPO_URI. |
| 120 | # destination - a check out path in S. |
180 | # destination - a check out path in S. |
| 121 | subversion_fetch() { |
181 | subversion_fetch() { |
| 122 | local repo_uri="$(subversion__get_repository_uri "${1}")" |
182 | local repo_uri="$(subversion__get_repository_uri "${1:-${ESVN_REPO_URI}}")" |
|
|
183 | local revision="$(subversion__get_peg_revision "${1:-${ESVN_REPO_URI}}")" |
| 123 | local S_dest="${2}" |
184 | local S_dest="${2}" |
| 124 | |
185 | |
|
|
186 | if [[ -z ${repo_uri} ]]; then |
|
|
187 | die "${ESVN}: ESVN_REPO_URI (or specified URI) is empty." |
|
|
188 | fi |
|
|
189 | |
|
|
190 | [[ -n "${ESVN_REVISION}" ]] && revision="${ESVN_REVISION}" |
|
|
191 | |
| 125 | # check for the protocol |
192 | # check for the scheme |
| 126 | local protocol="${repo_uri%%:*}" |
193 | local scheme="${repo_uri%%:*}" |
| 127 | |
194 | case "${scheme}" in |
| 128 | case "${protocol}" in |
|
|
| 129 | http|https) |
195 | http|https) |
| 130 | if built_with_use dev-util/subversion nowebdav; then |
|
|
| 131 | echo |
|
|
| 132 | eerror "In order to emerge this package, you need to" |
|
|
| 133 | eerror "re-emerge subversion with USE=-nowebdav" |
|
|
| 134 | echo |
|
|
| 135 | die "${ESVN}: please run 'USE=-nowebdav emerge subversion'" |
|
|
| 136 | fi |
|
|
| 137 | ;; |
196 | ;; |
| 138 | svn|svn+ssh) |
197 | svn|svn+ssh) |
| 139 | ;; |
198 | ;; |
|
|
199 | file) |
|
|
200 | ;; |
| 140 | *) |
201 | *) |
| 141 | die "${ESVN}: fetch from '${protocol}' is not yet implemented." |
202 | die "${ESVN}: fetch from '${scheme}' is not yet implemented." |
| 142 | ;; |
203 | ;; |
| 143 | esac |
204 | esac |
| 144 | |
205 | |
| 145 | addread "/etc/subversion" |
206 | addread "/etc/subversion" |
| 146 | addwrite "${ESVN_STORE_DIR}" |
207 | addwrite "${ESVN_STORE_DIR}" |
| 147 | |
208 | |
|
|
209 | if [[ -n "${ESVN_UMASK}" ]]; then |
|
|
210 | eumask_push "${ESVN_UMASK}" |
|
|
211 | fi |
|
|
212 | |
| 148 | if [[ ! -d ${ESVN_STORE_DIR} ]]; then |
213 | if [[ ! -d ${ESVN_STORE_DIR} ]]; then |
| 149 | debug-print "${FUNCNAME}: initial checkout. creating subversion directory" |
214 | debug-print "${FUNCNAME}: initial checkout. creating subversion directory" |
| 150 | mkdir -p "${ESVN_STORE_DIR}" || die "${ESVN}: can't mkdir ${ESVN_STORE_DIR}." |
215 | mkdir -m 775 -p "${ESVN_STORE_DIR}" || die "${ESVN}: can't mkdir ${ESVN_STORE_DIR}." |
| 151 | fi |
216 | fi |
| 152 | |
217 | |
| 153 | cd "${ESVN_STORE_DIR}" || die "${ESVN}: can't chdir to ${ESVN_STORE_DIR}" |
218 | pushd "${ESVN_STORE_DIR}" >/dev/null || die "${ESVN}: can't chdir to ${ESVN_STORE_DIR}" |
| 154 | |
219 | |
| 155 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
220 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
| 156 | local options="${ESVN_OPTIONS} --config-dir ${ESVN_STORE_DIR}/.subversion" |
221 | local options="${ESVN_OPTIONS} --config-dir ${ESVN_STORE_DIR}/.subversion" |
|
|
222 | |
|
|
223 | [[ -n "${revision}" ]] && options="${options} -r ${revision}" |
|
|
224 | |
|
|
225 | if [[ "${ESVN_OPTIONS}" = *-r* ]]; then |
|
|
226 | ewarn "\${ESVN_OPTIONS} contains -r, this usage is unsupported. Please" |
|
|
227 | ewarn "see \${ESVN_REPO_URI}" |
|
|
228 | fi |
|
|
229 | |
|
|
230 | if has_version ">=dev-vcs/subversion-1.6.0"; then |
|
|
231 | options="${options} --config-option=config:auth:password-stores=" |
|
|
232 | fi |
| 157 | |
233 | |
| 158 | debug-print "${FUNCNAME}: wc_path = \"${wc_path}\"" |
234 | debug-print "${FUNCNAME}: wc_path = \"${wc_path}\"" |
| 159 | debug-print "${FUNCNAME}: ESVN_OPTIONS = \"${ESVN_OPTIONS}\"" |
235 | debug-print "${FUNCNAME}: ESVN_OPTIONS = \"${ESVN_OPTIONS}\"" |
| 160 | debug-print "${FUNCNAME}: options = \"${options}\"" |
236 | debug-print "${FUNCNAME}: options = \"${options}\"" |
| 161 | |
237 | |
| 162 | if [[ ! -d ${wc_path}/.svn ]]; then |
238 | if [[ ! -d ${wc_path}/.svn ]]; then |
|
|
239 | if [[ -n ${ESVN_OFFLINE} ]]; then |
|
|
240 | ewarn "ESVN_OFFLINE cannot be used when there is no existing checkout." |
|
|
241 | fi |
| 163 | # first check out |
242 | # first check out |
| 164 | einfo "subversion check out start -->" |
243 | einfo "subversion check out start -->" |
| 165 | einfo " repository: ${repo_uri}" |
244 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
| 166 | |
245 | |
| 167 | debug-print "${FUNCNAME}: ${ESVN_FETCH_CMD} ${options} ${repo_uri}" |
246 | debug-print "${FUNCNAME}: ${ESVN_FETCH_CMD} ${options} ${repo_uri}" |
| 168 | |
247 | |
| 169 | mkdir -p "${ESVN_PROJECT}" || die "${ESVN}: can't mkdir ${ESVN_PROJECT}." |
248 | mkdir -m 775 -p "${ESVN_PROJECT}" || die "${ESVN}: can't mkdir ${ESVN_PROJECT}." |
| 170 | cd "${ESVN_PROJECT}" || die "${ESVN}: can't chdir to ${ESVN_PROJECT}" |
249 | cd "${ESVN_PROJECT}" || die "${ESVN}: can't chdir to ${ESVN_PROJECT}" |
|
|
250 | if [[ -n "${ESVN_USER}" ]]; then |
|
|
251 | ${ESVN_FETCH_CMD} ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" "${repo_uri}" || die "${ESVN}: can't fetch to ${wc_path} from ${repo_uri}." |
|
|
252 | else |
| 171 | ${ESVN_FETCH_CMD} ${options} "${repo_uri}" || die "${ESVN}: can't fetch from ${repo_uri}." |
253 | ${ESVN_FETCH_CMD} ${options} "${repo_uri}" || die "${ESVN}: can't fetch to ${wc_path} from ${repo_uri}." |
|
|
254 | fi |
| 172 | |
255 | |
|
|
256 | elif [[ -n ${ESVN_OFFLINE} ]]; then |
|
|
257 | svn upgrade "${wc_path}" &>/dev/null |
|
|
258 | svn cleanup "${wc_path}" &>/dev/null |
|
|
259 | subversion_wc_info "${repo_uri}" || die "${ESVN}: unknown problem occurred while accessing working copy." |
|
|
260 | |
|
|
261 | if [[ -n ${ESVN_REVISION} && ${ESVN_REVISION} != ${ESVN_WC_REVISION} ]]; then |
|
|
262 | die "${ESVN}: You requested off-line updating and revision ${ESVN_REVISION} but only revision ${ESVN_WC_REVISION} is available locally." |
|
|
263 | fi |
|
|
264 | einfo "Fetching disabled: Using existing repository copy at revision ${ESVN_WC_REVISION}." |
| 173 | else |
265 | else |
|
|
266 | svn upgrade "${wc_path}" &>/dev/null |
|
|
267 | svn cleanup "${wc_path}" &>/dev/null |
| 174 | subversion_wc_info "${repo_uri}" || die "${ESVN}: unknown problem occurred while accessing working copy." |
268 | subversion_wc_info "${repo_uri}" || die "${ESVN}: unknown problem occurred while accessing working copy." |
| 175 | |
269 | |
|
|
270 | local esvn_up_freq= |
|
|
271 | if [[ -n ${ESVN_UP_FREQ} ]]; then |
|
|
272 | if [[ -n ${ESVN_UP_FREQ//[[:digit:]]} ]]; then |
|
|
273 | die "${ESVN}: ESVN_UP_FREQ must be an integer value corresponding to the minimum number of hours between svn up." |
|
|
274 | elif [[ -z $(find "${wc_path}/.svn/entries" -mmin "+$((ESVN_UP_FREQ*60))") ]]; then |
|
|
275 | einfo "Fetching disabled since ${ESVN_UP_FREQ} hours has not passed since last update." |
|
|
276 | einfo "Using existing repository copy at revision ${ESVN_WC_REVISION}." |
|
|
277 | esvn_up_freq=no_update |
|
|
278 | fi |
|
|
279 | fi |
|
|
280 | |
|
|
281 | if [[ -z ${esvn_up_freq} ]]; then |
|
|
282 | if [[ ${ESVN_WC_UUID} != $(subversion__svn_info "${repo_uri}" "Repository UUID") ]]; then |
|
|
283 | # UUID mismatch. Delete working copy and check out it again. |
|
|
284 | einfo "subversion recheck out start -->" |
|
|
285 | einfo " old UUID: ${ESVN_WC_UUID}" |
|
|
286 | einfo " new UUID: $(subversion__svn_info "${repo_uri}" "Repository UUID")" |
|
|
287 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
|
|
288 | |
|
|
289 | rm -fr "${ESVN_PROJECT}" || die |
|
|
290 | |
|
|
291 | debug-print "${FUNCNAME}: ${ESVN_FETCH_CMD} ${options} ${repo_uri}" |
|
|
292 | |
|
|
293 | mkdir -m 775 -p "${ESVN_PROJECT}" || die "${ESVN}: can't mkdir ${ESVN_PROJECT}." |
|
|
294 | cd "${ESVN_PROJECT}" || die "${ESVN}: can't chdir to ${ESVN_PROJECT}" |
|
|
295 | if [[ -n "${ESVN_USER}" ]]; then |
|
|
296 | ${ESVN_FETCH_CMD} ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" "${repo_uri}" || die "${ESVN}: can't fetch to ${wc_path} from ${repo_uri}." |
|
|
297 | else |
|
|
298 | ${ESVN_FETCH_CMD} ${options} "${repo_uri}" || die "${ESVN}: can't fetch to ${wc_path} from ${repo_uri}." |
|
|
299 | fi |
| 176 | if [[ ${ESVN_WC_URL} != $(subversion__get_repository_uri "${repo_uri}" 1) ]]; then |
300 | elif [[ ${ESVN_WC_URL} != $(subversion__get_repository_uri "${repo_uri}") ]]; then |
| 177 | die "${ESVN}: ESVN_REPO_URI (or specified URI) and working copy's URL are not matched." |
|
|
| 178 | fi |
|
|
| 179 | |
|
|
| 180 | # update working copy |
|
|
| 181 | einfo "subversion update start -->" |
301 | einfo "subversion switch start -->" |
| 182 | einfo " repository: ${repo_uri}" |
302 | einfo " old repository: ${ESVN_WC_URL}@${ESVN_WC_REVISION}" |
|
|
303 | einfo " new repository: ${repo_uri}${revision:+@}${revision}" |
| 183 | |
304 | |
| 184 | debug-print "${FUNCNAME}: ${ESVN_UPDATE_CMD} ${options}" |
305 | debug-print "${FUNCNAME}: ${ESVN_SWITCH_CMD} ${options} ${repo_uri}" |
| 185 | |
306 | |
| 186 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
307 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
|
|
308 | if [[ -n "${ESVN_USER}" ]]; then |
|
|
309 | ${ESVN_SWITCH_CMD} ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" ${repo_uri} || die "${ESVN}: can't update ${wc_path} from ${repo_uri}." |
|
|
310 | else |
|
|
311 | ${ESVN_SWITCH_CMD} ${options} ${repo_uri} || die "${ESVN}: can't update ${wc_path} from ${repo_uri}." |
|
|
312 | fi |
|
|
313 | else |
|
|
314 | # update working copy |
|
|
315 | einfo "subversion update start -->" |
|
|
316 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
|
|
317 | |
|
|
318 | debug-print "${FUNCNAME}: ${ESVN_UPDATE_CMD} ${options}" |
|
|
319 | |
|
|
320 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
|
|
321 | if [[ -n "${ESVN_USER}" ]]; then |
|
|
322 | ${ESVN_UPDATE_CMD} ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" || die "${ESVN}: can't update ${wc_path} from ${repo_uri}." |
|
|
323 | else |
| 187 | ${ESVN_UPDATE_CMD} ${options} || die "${ESVN}: can't update from ${repo_uri}." |
324 | ${ESVN_UPDATE_CMD} ${options} || die "${ESVN}: can't update ${wc_path} from ${repo_uri}." |
|
|
325 | fi |
|
|
326 | fi |
|
|
327 | fi |
|
|
328 | fi |
| 188 | |
329 | |
|
|
330 | if [[ -n "${ESVN_UMASK}" ]]; then |
|
|
331 | eumask_pop |
| 189 | fi |
332 | fi |
| 190 | |
333 | |
| 191 | einfo " working copy: ${wc_path}" |
334 | einfo " working copy: ${wc_path}" |
| 192 | |
335 | |
| 193 | if ! has "export" ${ESVN_RESTRICT}; then |
336 | if ! has "export" ${ESVN_RESTRICT}; then |
| 194 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
337 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
| 195 | |
338 | |
| 196 | local S="${S}/${S_dest}" |
339 | local S="${S}/${S_dest}" |
|
|
340 | mkdir -p "${S}" |
| 197 | |
341 | |
| 198 | # export to the ${WORKDIR} |
342 | # export to the ${WORKDIR} |
| 199 | #* "svn export" has a bug. see http://bugs.gentoo.org/119236 |
343 | #* "svn export" has a bug. see http://bugs.gentoo.org/119236 |
| 200 | #* svn export . "${S}" || die "${ESVN}: can't export to ${S}." |
344 | #* svn export . "${S}" || die "${ESVN}: can't export to ${S}." |
| 201 | rsync -rlpgo --exclude=".svn/" . "${S}" || die "${ESVN}: can't export to ${S}." |
345 | rsync -rlpgo --exclude=".svn/" . "${S}" || die "${ESVN}: can't export to ${S}." |
| 202 | fi |
346 | fi |
| 203 | |
347 | |
|
|
348 | popd >/dev/null |
| 204 | echo |
349 | echo |
| 205 | } |
350 | } |
| 206 | |
351 | |
| 207 | # @FUNCTION: subversion_bootstrap |
352 | # @FUNCTION: subversion_bootstrap |
| 208 | # @DESCRIPTION: |
353 | # @DESCRIPTION: |
| … | |
… | |
| 213 | fi |
358 | fi |
| 214 | |
359 | |
| 215 | cd "${S}" |
360 | cd "${S}" |
| 216 | |
361 | |
| 217 | if [[ -n ${ESVN_PATCHES} ]]; then |
362 | if [[ -n ${ESVN_PATCHES} ]]; then |
|
|
363 | local patch fpatch |
| 218 | einfo "apply patches -->" |
364 | einfo "apply patches -->" |
| 219 | |
|
|
| 220 | local patch fpatch |
|
|
| 221 | |
|
|
| 222 | for patch in ${ESVN_PATCHES}; do |
365 | for patch in ${ESVN_PATCHES}; do |
| 223 | if [[ -f ${patch} ]]; then |
366 | if [[ -f ${patch} ]]; then |
| 224 | epatch "${patch}" |
367 | epatch "${patch}" |
| 225 | |
|
|
| 226 | else |
368 | else |
| 227 | for fpatch in ${FILESDIR}/${patch}; do |
369 | for fpatch in ${FILESDIR}/${patch}; do |
| 228 | if [[ -f ${fpatch} ]]; then |
370 | if [[ -f ${fpatch} ]]; then |
| 229 | epatch "${fpatch}" |
371 | epatch "${fpatch}" |
| 230 | |
|
|
| 231 | else |
372 | else |
| 232 | die "${ESVN}: ${patch} not found" |
373 | die "${ESVN}: ${patch} not found" |
| 233 | |
|
|
| 234 | fi |
374 | fi |
| 235 | done |
375 | done |
| 236 | |
|
|
| 237 | fi |
376 | fi |
| 238 | done |
377 | done |
| 239 | |
|
|
| 240 | echo |
378 | echo |
| 241 | fi |
379 | fi |
| 242 | |
380 | |
| 243 | if [[ -n ${ESVN_BOOTSTRAP} ]]; then |
381 | if [[ -n ${ESVN_BOOTSTRAP} ]]; then |
| 244 | einfo "begin bootstrap -->" |
382 | einfo "begin bootstrap -->" |
| 245 | |
|
|
| 246 | if [[ -f ${ESVN_BOOTSTRAP} && -x ${ESVN_BOOTSTRAP} ]]; then |
383 | if [[ -f ${ESVN_BOOTSTRAP} && -x ${ESVN_BOOTSTRAP} ]]; then |
| 247 | einfo " bootstrap with a file: ${ESVN_BOOTSTRAP}" |
384 | einfo " bootstrap with a file: ${ESVN_BOOTSTRAP}" |
| 248 | eval "./${ESVN_BOOTSTRAP}" || die "${ESVN}: can't execute ESVN_BOOTSTRAP." |
385 | eval "./${ESVN_BOOTSTRAP}" || die "${ESVN}: can't execute ESVN_BOOTSTRAP." |
| 249 | |
|
|
| 250 | else |
386 | else |
| 251 | einfo " bootstrap with command: ${ESVN_BOOTSTRAP}" |
387 | einfo " bootstrap with command: ${ESVN_BOOTSTRAP}" |
| 252 | eval "${ESVN_BOOTSTRAP}" || die "${ESVN}: can't eval ESVN_BOOTSTRAP." |
388 | eval "${ESVN_BOOTSTRAP}" || die "${ESVN}: can't eval ESVN_BOOTSTRAP." |
| 253 | |
|
|
| 254 | fi |
|
|
| 255 | fi |
389 | fi |
| 256 | } |
390 | fi |
| 257 | |
|
|
| 258 | # @FUNCTION: subversion_src_unpack |
|
|
| 259 | # @DESCRIPTION: |
|
|
| 260 | # default src_unpack. fetch and bootstrap. |
|
|
| 261 | subversion_src_unpack() { |
|
|
| 262 | subversion_fetch || die "${ESVN}: unknown problem occurred in subversion_fetch." |
|
|
| 263 | subversion_bootstrap || die "${ESVN}: unknown problem occurred in subversion_bootstrap." |
|
|
| 264 | } |
391 | } |
| 265 | |
392 | |
| 266 | # @FUNCTION: subversion_wc_info |
393 | # @FUNCTION: subversion_wc_info |
| 267 | # @USAGE: [repo_uri] |
394 | # @USAGE: [repo_uri] |
| 268 | # @RETURN: ESVN_WC_URL, ESVN_WC_REVISION and ESVN_WC_PATH |
395 | # @RETURN: ESVN_WC_URL, ESVN_WC_ROOT, ESVN_WC_UUID, ESVN_WC_REVISION and ESVN_WC_PATH |
| 269 | # @DESCRIPTION: |
396 | # @DESCRIPTION: |
| 270 | # Get svn info for the specified repo_uri. The default repo_uri is ESVN_REPO_URI. |
397 | # Get svn info for the specified repo_uri. The default repo_uri is ESVN_REPO_URI. |
| 271 | # |
398 | # |
| 272 | # The working copy information on the specified repository URI are set to |
399 | # The working copy information on the specified repository URI are set to |
| 273 | # ESVN_WC_* variables. |
400 | # ESVN_WC_* variables. |
| 274 | subversion_wc_info() { |
401 | subversion_wc_info() { |
| 275 | local repo_uri="$(subversion__get_repository_uri "${1}")" |
402 | local repo_uri="$(subversion__get_repository_uri "${1:-${ESVN_REPO_URI}}")" |
| 276 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
403 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
| 277 | |
404 | |
| 278 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
405 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
| 279 | debug-print "${FUNCNAME}: wc_path = ${wc_path}" |
406 | debug-print "${FUNCNAME}: wc_path = ${wc_path}" |
| 280 | |
407 | |
| 281 | if [[ ! -d ${wc_path} ]]; then |
408 | if [[ ! -d ${wc_path} ]]; then |
| 282 | return 1 |
409 | return 1 |
| 283 | fi |
410 | fi |
| 284 | |
411 | |
| 285 | local k |
412 | export ESVN_WC_URL="$(subversion__svn_info "${wc_path}" "URL")" |
| 286 | |
413 | export ESVN_WC_ROOT="$(subversion__svn_info "${wc_path}" "Repository Root")" |
| 287 | for k in url revision; do |
414 | export ESVN_WC_UUID="$(subversion__svn_info "${wc_path}" "Repository UUID")" |
| 288 | export ESVN_WC_$(subversion__to_upper_case "${k}")="$(subversion__svn_info "${wc_path}" "${k}")" |
415 | export ESVN_WC_REVISION="$(subversion__svn_info "${wc_path}" "Revision")" |
| 289 | done |
|
|
| 290 | |
|
|
| 291 | export ESVN_WC_PATH="${wc_path}" |
416 | export ESVN_WC_PATH="${wc_path}" |
|
|
417 | } |
|
|
418 | |
|
|
419 | # @FUNCTION: subversion_src_unpack |
|
|
420 | # @DESCRIPTION: |
|
|
421 | # Default src_unpack. Fetch and, in older EAPIs, bootstrap. |
|
|
422 | subversion_src_unpack() { |
|
|
423 | subversion_fetch || die "${ESVN}: unknown problem occurred in subversion_fetch." |
|
|
424 | if has "${EAPI:-0}" 0 1; then |
|
|
425 | subversion_bootstrap || die "${ESVN}: unknown problem occurred in subversion_bootstrap." |
|
|
426 | fi |
|
|
427 | } |
|
|
428 | |
|
|
429 | # @FUNCTION: subversion_src_prepare |
|
|
430 | # @DESCRIPTION: |
|
|
431 | # Default src_prepare. Bootstrap. |
|
|
432 | subversion_src_prepare() { |
|
|
433 | subversion_bootstrap || die "${ESVN}: unknown problem occurred in subversion_bootstrap." |
|
|
434 | } |
|
|
435 | |
|
|
436 | # @FUNCTION: subversion_pkg_preinst |
|
|
437 | # @USAGE: [repo_uri] |
|
|
438 | # @DESCRIPTION: |
|
|
439 | # Log the svn revision of source code. Doing this in pkg_preinst because we |
|
|
440 | # want the logs to stick around if packages are uninstalled without messing with |
|
|
441 | # config protection. |
|
|
442 | subversion_pkg_preinst() { |
|
|
443 | local pkgdate=$(date "+%Y%m%d %H:%M:%S") |
|
|
444 | subversion_wc_info "${1}" |
|
|
445 | if [[ -n ${ESCM_LOGDIR} ]]; then |
|
|
446 | local dir="${ROOT}/${ESCM_LOGDIR}/${CATEGORY}" |
|
|
447 | if [[ ! -d ${dir} ]]; then |
|
|
448 | mkdir -p "${dir}" || eerror "Failed to create '${dir}' for logging svn revision" |
|
|
449 | fi |
|
|
450 | local logmessage="svn: ${pkgdate} - ${PF}:${SLOT} was merged at revision ${ESVN_WC_REVISION}" |
|
|
451 | if [[ -d ${dir} ]]; then |
|
|
452 | echo "${logmessage}" >>"${dir}/${PN}.log" |
|
|
453 | else |
|
|
454 | eerror "Could not log the message '${logmessage}' to '${dir}/${PN}.log'" |
|
|
455 | fi |
|
|
456 | fi |
| 292 | } |
457 | } |
| 293 | |
458 | |
| 294 | ## -- Private Functions |
459 | ## -- Private Functions |
| 295 | |
460 | |
| 296 | ## -- subversion__svn_info() ------------------------------------------------- # |
461 | ## -- subversion__svn_info() ------------------------------------------------- # |
| … | |
… | |
| 300 | # |
465 | # |
| 301 | subversion__svn_info() { |
466 | subversion__svn_info() { |
| 302 | local target="${1}" |
467 | local target="${1}" |
| 303 | local key="${2}" |
468 | local key="${2}" |
| 304 | |
469 | |
| 305 | env LC_ALL=C svn info "${target}" | grep -i "^${key}" | cut -d" " -f2- |
470 | env LC_ALL=C svn info ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" "${target}" \ |
|
|
471 | | grep -i "^${key}" \ |
|
|
472 | | cut -d" " -f2- |
| 306 | } |
473 | } |
| 307 | |
474 | |
| 308 | ## -- subversion__get_repository_uri() --------------------------------------- # |
475 | ## -- subversion__get_repository_uri() --------------------------------------- # |
| 309 | # |
476 | # |
| 310 | # param $1 - a repository URI. |
477 | # param $1 - a repository URI. |
| 311 | # param $2 - a peg revision is deleted from a return value if this is |
|
|
| 312 | # specified. |
|
|
| 313 | subversion__get_repository_uri() { |
478 | subversion__get_repository_uri() { |
| 314 | local repo_uri="${1:-${ESVN_REPO_URI}}" |
479 | local repo_uri="${1}" |
| 315 | local remove_peg_revision="${2}" |
|
|
| 316 | |
480 | |
| 317 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
481 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
| 318 | debug-print "${FUNCNAME}: remove_peg_revision = ${remove_peg_revision}" |
|
|
| 319 | |
|
|
| 320 | if [[ -z ${repo_uri} ]]; then |
482 | if [[ -z ${repo_uri} ]]; then |
| 321 | die "${ESVN}: ESVN_REPO_URI (or specified URI) is empty." |
483 | die "${ESVN}: ESVN_REPO_URI (or specified URI) is empty." |
| 322 | fi |
484 | fi |
| 323 | |
|
|
| 324 | # delete trailing slash |
485 | # delete trailing slash |
| 325 | if [[ -z ${repo_uri##*/} ]]; then |
486 | if [[ -z ${repo_uri##*/} ]]; then |
| 326 | repo_uri="${repo_uri%/}" |
487 | repo_uri="${repo_uri%/}" |
| 327 | fi |
488 | fi |
| 328 | |
|
|
| 329 | if [[ -n ${remove_peg_revision} ]]; then |
|
|
| 330 | if subversion__has_peg_revision "${repo_uri}"; then |
|
|
| 331 | repo_uri="${repo_uri%@*}" |
489 | repo_uri="${repo_uri%@*}" |
| 332 | |
|
|
| 333 | debug-print "${FUNCNAME}: repo_uri has a peg revision" |
|
|
| 334 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
| 335 | fi |
|
|
| 336 | fi |
|
|
| 337 | |
490 | |
| 338 | echo "${repo_uri}" |
491 | echo "${repo_uri}" |
| 339 | } |
492 | } |
| 340 | |
493 | |
| 341 | ## -- subversion__get_wc_path() ---------------------------------------------- # |
494 | ## -- subversion__get_wc_path() ---------------------------------------------- # |
| 342 | # |
495 | # |
| 343 | # param $1 - a repository URI. |
496 | # param $1 - a repository URI. |
| 344 | subversion__get_wc_path() { |
497 | subversion__get_wc_path() { |
| 345 | local repo_uri="$(subversion__get_repository_uri "${1}" 1)" |
498 | local repo_uri="$(subversion__get_repository_uri "${1}")" |
| 346 | |
499 | |
| 347 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
500 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
| 348 | |
501 | |
| 349 | echo "${ESVN_STORE_DIR}/${ESVN_PROJECT}/${repo_uri##*/}" |
502 | echo "${ESVN_STORE_DIR}/${ESVN_PROJECT}/${repo_uri##*/}" |
| 350 | } |
503 | } |
| 351 | |
504 | |
| 352 | ## -- subversion__has_peg_revision() ----------------------------------------- # |
505 | ## -- subversion__get_peg_revision() ----------------------------------------- # |
| 353 | # |
506 | # |
| 354 | # param $1 - a repository URI. |
507 | # param $1 - a repository URI. |
| 355 | subversion__has_peg_revision() { |
508 | subversion__get_peg_revision() { |
| 356 | local repo_uri="${1}" |
509 | local repo_uri="${1}" |
|
|
510 | local peg_rev= |
| 357 | |
511 | |
| 358 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
512 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
| 359 | |
|
|
| 360 | # repo_uri has peg revision ? |
513 | # repo_uri has peg revision? |
| 361 | if [[ ${repo_uri} != *@* ]]; then |
514 | if [[ ${repo_uri} = *@* ]]; then |
|
|
515 | peg_rev="${repo_uri##*@}" |
|
|
516 | debug-print "${FUNCNAME}: peg_rev = ${peg_rev}" |
|
|
517 | else |
| 362 | debug-print "${FUNCNAME}: repo_uri does not have a peg revision." |
518 | debug-print "${FUNCNAME}: repo_uri does not have a peg revision." |
| 363 | return 1 |
|
|
| 364 | fi |
519 | fi |
| 365 | |
520 | |
| 366 | local peg_rev="${repo_uri##*@}" |
521 | echo "${peg_rev}" |
| 367 | |
|
|
| 368 | case "$(subversion__to_upper_case "${peg_rev}")" in |
|
|
| 369 | [[:digit:]]*) |
|
|
| 370 | # NUMBER |
|
|
| 371 | ;; |
|
|
| 372 | HEAD|BASE|COMMITED|PREV) |
|
|
| 373 | ;; |
|
|
| 374 | {[^}]*}) |
|
|
| 375 | # DATE |
|
|
| 376 | ;; |
|
|
| 377 | *) |
|
|
| 378 | debug-print "${FUNCNAME}: repo_uri does not have a peg revision." |
|
|
| 379 | return 1 |
|
|
| 380 | ;; |
|
|
| 381 | esac |
|
|
| 382 | |
|
|
| 383 | debug-print "${FUNCNAME}: peg_rev = ${peg_rev}" |
|
|
| 384 | |
|
|
| 385 | return 0 |
|
|
| 386 | } |
522 | } |
| 387 | |
|
|
| 388 | ## -- subversion__to_upper_case() ----------------------------------------- # |
|
|
| 389 | # |
|
|
| 390 | # param $@ - the strings to upper case. |
|
|
| 391 | subversion__to_upper_case() { |
|
|
| 392 | echo "${@}" | tr "[:lower:]" "[:upper:]" |
|
|
| 393 | } |
|
|