| 1 | # Copyright 1999-2004 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2007 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.6 2004/03/01 16:34:42 hattya Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/subversion.eclass,v 1.42 2007/04/23 18:55:15 cardoe Exp $ |
| 4 | |
4 | |
| 5 | ## --------------------------------------------------------------------------- # |
5 | ## --------------------------------------------------------------------------- # |
| 6 | # Author: Akinori Hattori <hattya@gentoo.org> |
6 | # Author: Akinori Hattori <hattya@gentoo.org> |
| 7 | # |
7 | # |
| 8 | # The subversion eclass is written to fetch the software sources from |
8 | # The subversion eclass is written to fetch the software sources from |
| 9 | # subversion repositories like the cvs eclass. |
9 | # subversion repositories like the cvs eclass. |
| 10 | # |
10 | # |
| 11 | # |
11 | # |
| 12 | # Description: |
12 | # Description: |
| 13 | # If you use this eclass, the ${S} is ${WORKDIR}/${P}. |
13 | # If you use this eclass, the ${S} is ${WORKDIR}/${P}. |
| 14 | # It is necessary to define the ESVN_REPOURI variable at least. |
14 | # It is necessary to define the ESVN_REPO_URI variable at least. |
| 15 | # |
15 | # |
| 16 | ## --------------------------------------------------------------------------- # |
16 | ## --------------------------------------------------------------------------- # |
| 17 | |
17 | |
|
|
18 | inherit eutils |
| 18 | |
19 | |
| 19 | ECLASS="subversion" |
20 | ESVN="subversion.eclass" |
| 20 | INHERITED="${INHERITED} ${ECLASS}" |
|
|
| 21 | |
21 | |
| 22 | EXPORT_FUNCTIONS src_unpack |
22 | EXPORT_FUNCTIONS src_unpack |
| 23 | |
23 | |
| 24 | HOMEPAGE="http://subversion.tigris.org/" |
|
|
| 25 | DESCRIPTION="Based on the ${ECLASS} eclass" |
24 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 26 | |
25 | |
| 27 | |
26 | |
| 28 | ## -- add subversion in DEPEND |
27 | ## -- add subversion in DEPEND |
| 29 | # |
28 | # |
| 30 | newdepend "dev-util/subversion" |
29 | DEPEND="dev-util/subversion" |
| 31 | |
30 | |
| 32 | |
31 | |
| 33 | ## -- ESVN_STORE_DIR: subversion sources store directory |
32 | ## -- ESVN_STORE_DIR: subversion sources store directory |
| 34 | # |
33 | # |
| 35 | ESVN_STORE_DIR="${DISTDIR}/svn-src" |
34 | ESVN_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/svn-src" |
| 36 | |
35 | |
| 37 | |
36 | |
| 38 | ## -- ESVN_FETCH_CMD: subversion fetch command |
37 | ## -- ESVN_FETCH_CMD: subversion fetch command |
| 39 | # |
38 | # |
| 40 | # default: svn checkout |
39 | ESVN_FETCH_CMD="svn checkout" |
| 41 | # |
|
|
| 42 | [ -z "${ESVN_FETCH_CMD}" ] && ESVN_FETCH_CMD="svn checkout" |
|
|
| 43 | |
40 | |
| 44 | ## -- ESVN_UPDATE_CMD: subversion update command |
41 | ## -- ESVN_UPDATE_CMD: subversion update command |
| 45 | # |
42 | # |
| 46 | # default: svn update |
43 | ESVN_UPDATE_CMD="svn update" |
|
|
44 | |
|
|
45 | |
|
|
46 | ## -- ESVN_OPTIONS: |
| 47 | # |
47 | # |
| 48 | [ -z "${ESVN_UPDATE_CMD}" ] && ESVN_UPDATE_CMD="svn update" |
48 | # the options passed to checkout or update. |
|
|
49 | # |
|
|
50 | : ESVN_OPTIONS=${ESVN_OPTIONS:=} |
| 49 | |
51 | |
| 50 | |
52 | |
| 51 | ## -- ESVN_REPO_URI: repository uri |
53 | ## -- ESVN_REPO_URI: repository uri |
| 52 | # |
54 | # |
| 53 | # e.g. http://foo/trunk, svn://bar/trunk |
55 | # e.g. http://foo/trunk, svn://bar/trunk |
| 54 | # but currentry support http and https only. |
|
|
| 55 | # |
56 | # |
| 56 | [ -z "${ESVN_REPO_URI}" ] && ESVN_REPO_URI="" |
57 | # supported protocols: |
|
|
58 | # http:// |
|
|
59 | # https:// |
|
|
60 | # svn:// |
|
|
61 | # svn+ssh:// |
|
|
62 | # |
|
|
63 | : ESVN_REPO_URI=${ESVN_REPO_URI:=} |
| 57 | |
64 | |
| 58 | |
65 | |
| 59 | ## -- ESVN_PROJECT: project name of your ebuild |
66 | ## -- ESVN_PROJECT: project name of your ebuild (= name space) |
| 60 | # |
67 | # |
| 61 | # subversion eclass will check out the subversion repository like: |
68 | # subversion eclass will check out the subversion repository like: |
| 62 | # |
69 | # |
| 63 | # ${ESVN_STORE_DIR}/${ESVN_PROJECT}/${ESVN_REPO_URI##*/} |
70 | # ${ESVN_STORE_DIR}/${ESVN_PROJECT}/${ESVN_REPO_URI##*/} |
| 64 | # |
71 | # |
| … | |
… | |
| 66 | # http://svn.collab.net/repo/svn/trunk/. and PN is subversion-svn. |
73 | # http://svn.collab.net/repo/svn/trunk/. and PN is subversion-svn. |
| 67 | # it will check out like: |
74 | # it will check out like: |
| 68 | # |
75 | # |
| 69 | # ${ESVN_STORE_DIR}/subversion/trunk |
76 | # ${ESVN_STORE_DIR}/subversion/trunk |
| 70 | # |
77 | # |
|
|
78 | # this is not used in order to declare the name of the upstream project. |
|
|
79 | # so that you can declare this like: |
|
|
80 | # |
|
|
81 | # # jakarta commons-loggin |
|
|
82 | # ESVN_PROJECT=commons/logging |
|
|
83 | # |
| 71 | # default: ${PN/-svn}. |
84 | # default: ${PN/-svn}. |
| 72 | # |
85 | # |
| 73 | [ -z "${ESVN_PROJECT}" ] && ESVN_PROJECT="${PN/-svn}" |
86 | : ESVN_PROJECT=${ESVN_PROJECT:=${PN/-svn}} |
| 74 | |
87 | |
| 75 | |
88 | |
| 76 | ## -- ESVN_BOOTSTRAP: |
89 | ## -- ESVN_BOOTSTRAP: |
| 77 | # |
90 | # |
| 78 | # bootstrap script. like autogen.sh or etc.. |
91 | # bootstrap script or command like autogen.sh or etc.. |
| 79 | # |
92 | # |
| 80 | [ -z "${ESVN_BOOTSTRAP}" ] && ESVN_BOOTSTRAP="" |
93 | : ESVN_BOOTSTRAP=${ESVN_BOOTSTRAP:=} |
| 81 | |
94 | |
| 82 | |
95 | |
|
|
96 | ## -- ESVN_PATCHES: |
|
|
97 | # |
|
|
98 | # subversion eclass can apply pathces in subversion_bootstrap(). |
|
|
99 | # you can use regexp in this valiable like *.diff or *.patch or etc. |
|
|
100 | # NOTE: this patches will apply before eval ESVN_BOOTSTRAP. |
|
|
101 | # |
|
|
102 | # the process of applying the patch is: |
|
|
103 | # 1. just epatch it, if the patch exists in the path. |
|
|
104 | # 2. scan it under FILESDIR and epatch it, if the patch exists in FILESDIR. |
|
|
105 | # 3. die. |
|
|
106 | # |
|
|
107 | : ESVN_PATCHES=${ESVN_PATCHES:=} |
|
|
108 | |
|
|
109 | |
|
|
110 | ## -- ESVN_RESTRICT: |
|
|
111 | # |
|
|
112 | # this should be a space delimited list of subversion eclass features to |
|
|
113 | # restrict. |
|
|
114 | # export) |
|
|
115 | # don't export the working copy to S. |
|
|
116 | # |
|
|
117 | : ESVN_RESTRICT=${ESVN_RESTRICT:=} |
|
|
118 | |
|
|
119 | |
| 83 | ## -- subversion_svn_fetch() ------------------------------------------------- # |
120 | ## -- subversion_fetch() ----------------------------------------------------- # |
| 84 | |
121 | # |
|
|
122 | # @param $1 - a repository URI. default is the ESVN_REPO_URI. |
|
|
123 | # @param $2 - a check out path in S. |
|
|
124 | # |
| 85 | subversion_svn_fetch() { |
125 | function subversion_fetch() { |
| 86 | |
126 | |
| 87 | # ESVN_REPO_URI is empty. |
127 | local repo_uri="$(subversion__get_repository_uri "${1}")" |
| 88 | [ -z "${ESVN_REPO_URI}" ] && die "subversion.eclass: ESVN_REPO_URI is empty." |
128 | local S_dest="${2}" |
| 89 | |
129 | |
| 90 | # http and https only... |
130 | # check for the protocol |
| 91 | case ${ESVN_REPO_URI%%:*} in |
131 | local protocol="${repo_uri%%:*}" |
| 92 | http) ;; |
132 | |
| 93 | https) ;; |
133 | case "${protocol}" in |
|
|
134 | http|https) |
|
|
135 | if built_with_use dev-util/subversion nowebdav; then |
|
|
136 | echo |
|
|
137 | eerror "In order to emerge this package, you need to" |
|
|
138 | eerror "re-emerge subversion with USE=-nowebdav" |
|
|
139 | echo |
|
|
140 | die "${ESVN}: please run 'USE=-nowebdav emerge subversion'" |
|
|
141 | fi |
|
|
142 | ;; |
|
|
143 | svn|svn+ssh) |
|
|
144 | ;; |
| 94 | *) |
145 | *) |
| 95 | die "subversion.eclass: fetch from "${ESVN_REPO_URI%:*}" is not yet implemented." |
146 | die "${ESVN}: fetch from "${protocol}" is not yet implemented." |
| 96 | ;; |
147 | ;; |
| 97 | esac |
148 | esac |
| 98 | |
149 | |
| 99 | # every time |
150 | # every time |
|
|
151 | addread "/etc/subversion" |
| 100 | addwrite "${ESVN_STORE_DIR}" |
152 | addwrite "${ESVN_STORE_DIR}" |
| 101 | addwrite "/etc/subversion" |
|
|
| 102 | |
153 | |
| 103 | # -userpriv |
|
|
| 104 | addwrite "/root/.subversion" |
|
|
| 105 | |
|
|
| 106 | if [ ! -d "${ESVN_STORE_DIR}" ]; then |
154 | if [[ ! -d "${ESVN_STORE_DIR}" ]]; then |
|
|
155 | debug-print "${FUNCNAME}: initial checkout. creating subversion directory" |
| 107 | mkdir -p "${ESVN_STORE_DIR}" || die "subversion.eclass: can't mkdir ${ESVN_STORE_DIR}." |
156 | mkdir -p "${ESVN_STORE_DIR}" || die "${ESVN}: can't mkdir ${ESVN_STORE_DIR}." |
| 108 | chmod -f o+rw "${ESVN_STORE_DIR}" || die "subversion.eclass: can't chmod ${ESVN_STORE_DIR}." |
|
|
| 109 | einfo "created store directory: ${ESVN_STORE_DIR}" |
|
|
| 110 | einfo |
|
|
| 111 | fi |
157 | fi |
| 112 | |
158 | |
| 113 | cd "${ESVN_STORE_DIR}" |
159 | cd "${ESVN_STORE_DIR}" || die "${ESVN}: can't chdir to ${ESVN_STORE_DIR}" |
| 114 | |
160 | |
| 115 | if [ -z ${ESVN_REPO_URI##*/} ]; then |
161 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
| 116 | ESVN_REPO_FIX="${ESVN_REPO_URI%/}" |
162 | local options="${ESVN_OPTIONS} --config-dir ${ESVN_STORE_DIR}/.subversion" |
| 117 | else |
|
|
| 118 | ESVN_REPO_FIX="${ESVN_REPO_URI}" |
|
|
| 119 | fi |
|
|
| 120 | |
163 | |
| 121 | ESVN_CO_DIR="${ESVN_PROJECT}/${ESVN_REPO_FIX##*/}" |
164 | debug-print "${FUNCNAME}: wc_path = \"${wc_path}\"" |
|
|
165 | debug-print "${FUNCNAME}: ESVN_OPTIONS = \"${ESVN_OPTIONS}\"" |
|
|
166 | debug-print "${FUNCNAME}: options = \"${options}\"" |
| 122 | |
167 | |
| 123 | if [ ! -d "${ESVN_CO_DIR}/.svn" ]; then |
168 | if [[ ! -d "${wc_path}/.svn" ]]; then |
| 124 | # first check out |
169 | # first check out |
| 125 | einfo "subversion check out start -->" |
170 | einfo "subversion check out start -->" |
| 126 | einfo |
171 | einfo " repository: ${repo_uri}" |
| 127 | einfo "check out from: ${ESVN_REPO_URI}" |
|
|
| 128 | |
172 | |
|
|
173 | debug-print "${FUNCNAME}: ${ESVN_FETCH_CMD} ${options} ${repo_uri}" |
|
|
174 | |
| 129 | mkdir -p "${ESVN_PROJECT}" || die "subversion.eclass: can't mkdir ${ESVN_PROJECT}." |
175 | mkdir -p "${ESVN_PROJECT}" || die "${ESVN}: can't mkdir ${ESVN_PROJECT}." |
| 130 | chmod -f o+rw "${ESVN_PROJECT}" || die "subversion.eclass: can't chmod ${ESVN_PROJECT}." |
176 | cd "${ESVN_PROJECT}" || die "${ESVN}: can't chdir to ${ESVN_PROJECT}" |
| 131 | cd "${ESVN_PROJECT}" |
177 | ${ESVN_FETCH_CMD} ${options} "${repo_uri}" || die "${ESVN}: can't fetch from ${repo_uri}." |
| 132 | ${ESVN_FETCH_CMD} "${ESVN_REPO_URI}" || die "subversion.eclass: can't fetch from ${ESVN_REPO_URI}." |
|
|
| 133 | einfo " stored in: ${ESVN_STORE_DIR}/${ESVN_CO_DIR}" |
|
|
| 134 | |
178 | |
| 135 | else |
179 | else |
|
|
180 | subversion_wc_info "${repo_uri}" || die "${ESVN}: unknown problem occurred while accessing working copy." |
|
|
181 | |
|
|
182 | if [ "${ESVN_WC_URL}" != "$(subversion__get_repository_uri "${repo_uri}" 1)" ]; then |
|
|
183 | die "${ESVN}: ESVN_REPO_URI (or specified URI) and working copy's URL are not matched." |
|
|
184 | fi |
|
|
185 | |
| 136 | # update working copy |
186 | # update working copy |
| 137 | einfo "subversion update start -->" |
187 | einfo "subversion update start -->" |
| 138 | einfo |
188 | einfo " repository: ${repo_uri}" |
| 139 | einfo " update from: ${ESVN_REPO_URI}" |
|
|
| 140 | |
189 | |
| 141 | cd "${ESVN_CO_DIR}" |
190 | debug-print "${FUNCNAME}: ${ESVN_UPDATE_CMD} ${options}" |
| 142 | ${ESVN_UPDATE_CMD} || die "subversion.eclass: can't update from ${ESVN_REPO_URI}." |
|
|
| 143 | einfo " updated in: ${ESVN_STORE_DIR}/${ESVN_CO_DIR}" |
|
|
| 144 | fi |
|
|
| 145 | |
191 | |
| 146 | # permission fix |
192 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
| 147 | chmod -Rf o+rw . |
193 | ${ESVN_UPDATE_CMD} ${options} || die "${ESVN}: can't update from ${repo_uri}." |
| 148 | |
194 | |
|
|
195 | fi |
|
|
196 | |
|
|
197 | einfo " working copy: ${wc_path}" |
|
|
198 | |
|
|
199 | if ! has "export" ${ESVN_RESTRICT}; then |
|
|
200 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
|
|
201 | |
|
|
202 | local S="${S}/${S_dest}" |
|
|
203 | |
| 149 | # copy to the ${WORKDIR} |
204 | # export to the ${WORKDIR} |
| 150 | cp -Rf "${ESVN_STORE_DIR}/${ESVN_CO_DIR}" "${WORKDIR}/${P}" || die "subversion.eclass: can't copy to ${WORKDIR}/${P}." |
205 | #* "svn export" has a bug. see http://bugs.gentoo.org/119236 |
| 151 | einfo |
206 | #* svn export . "${S}" || die "${ESVN}: can't export to ${S}." |
|
|
207 | rsync -rlpgo --exclude=".svn/" . "${S}" || die "${ESVN}: can't export to ${S}." |
|
|
208 | fi |
|
|
209 | |
|
|
210 | echo |
| 152 | |
211 | |
| 153 | } |
212 | } |
| 154 | |
213 | |
| 155 | |
214 | |
| 156 | ## -- subversion_bootstrap() ------------------------------------------------ # |
215 | ## -- subversion_bootstrap() ------------------------------------------------ # |
| 157 | |
216 | # |
| 158 | subversion_bootstrap() { |
217 | function subversion_bootstrap() { |
| 159 | |
218 | |
|
|
219 | if has "export" ${ESVN_RESTRICT}; then |
|
|
220 | return |
|
|
221 | fi |
|
|
222 | |
|
|
223 | cd "${S}" |
|
|
224 | |
|
|
225 | if [[ -n "${ESVN_PATCHES}" ]]; then |
|
|
226 | einfo "apply patches -->" |
|
|
227 | |
|
|
228 | local p= |
|
|
229 | |
|
|
230 | for p in ${ESVN_PATCHES}; do |
|
|
231 | if [[ -f "${p}" ]]; then |
|
|
232 | epatch "${p}" |
|
|
233 | |
|
|
234 | else |
|
|
235 | local q= |
|
|
236 | |
|
|
237 | for q in ${FILESDIR}/${p}; do |
|
|
238 | if [[ -f "${q}" ]]; then |
|
|
239 | epatch "${q}" |
|
|
240 | |
|
|
241 | else |
|
|
242 | die "${ESVN}; ${p} is not found" |
|
|
243 | |
|
|
244 | fi |
|
|
245 | done |
|
|
246 | fi |
|
|
247 | done |
|
|
248 | |
|
|
249 | echo |
|
|
250 | |
|
|
251 | fi |
|
|
252 | |
| 160 | if [ -n "${ESVN_BOOTSTRAP}" ]; then |
253 | if [[ -n "${ESVN_BOOTSTRAP}" ]]; then |
| 161 | cd "${WORKDIR}/${P}" |
|
|
| 162 | |
|
|
| 163 | if [ -x "${ESVN_BOOTSTRAP}" ]; then |
|
|
| 164 | einfo "begin bootstrap -->" |
254 | einfo "begin bootstrap -->" |
| 165 | ./${ESVN_BOOTSTRAP} || die "subversion.eclass: can't bootstrap with ${ESVN_BOOTSTRAP}." |
255 | |
|
|
256 | if [[ -f "${ESVN_BOOTSTRAP}" && -x "${ESVN_BOOTSTRAP}" ]]; then |
|
|
257 | einfo " bootstrap with a file: ${ESVN_BOOTSTRAP}" |
|
|
258 | eval "./${ESVN_BOOTSTRAP}" || die "${ESVN}: can't execute ESVN_BOOTSTRAP." |
|
|
259 | |
|
|
260 | else |
|
|
261 | einfo " bootstrap with commands: ${ESVN_BOOTSTRAP}" |
|
|
262 | eval "${ESVN_BOOTSTRAP}" || die "${ESVN}: can't eval ESVN_BOOTSTRAP." |
|
|
263 | |
| 166 | fi |
264 | fi |
| 167 | |
|
|
| 168 | fi |
265 | fi |
| 169 | |
266 | |
| 170 | } |
267 | } |
| 171 | |
268 | |
| 172 | |
269 | |
| 173 | ## -- subversion_src_unpack() ------------------------------------------------ # |
270 | ## -- subversion_src_unpack() ------------------------------------------------ # |
| 174 | |
271 | # |
| 175 | subversion_src_unpack() { |
272 | function subversion_src_unpack() { |
| 176 | |
273 | |
| 177 | subversion_svn_fetch || die "subversion.eclass: unknown problem in subversion_svn_fetch()." |
274 | subversion_fetch || die "${ESVN}: unknown problem occurred in subversion_fetch." |
| 178 | subversion_bootstrap || die "subversion.eclass: unknown problem in subversion_bootstrap()." |
275 | subversion_bootstrap || die "${ESVN}: unknown problem occurred in subversion_bootstrap." |
| 179 | |
276 | |
| 180 | } |
277 | } |
|
|
278 | |
|
|
279 | |
|
|
280 | ## -- subversion_wc_info() --------------------------------------------------- # |
|
|
281 | # |
|
|
282 | # @param $1 - repository URI. default is ESVN_REPO_URI. |
|
|
283 | # |
|
|
284 | function subversion_wc_info() { |
|
|
285 | |
|
|
286 | local repo_uri="$(subversion__get_repository_uri "${1}")" |
|
|
287 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
|
|
288 | |
|
|
289 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
290 | debug-print "${FUNCNAME}: wc_path = ${wc_path}" |
|
|
291 | |
|
|
292 | if [[ ! -e "${wc_path}" ]]; then |
|
|
293 | return 1 |
|
|
294 | fi |
|
|
295 | |
|
|
296 | local k |
|
|
297 | |
|
|
298 | for k in url revision; do |
|
|
299 | export ESVN_WC_$(subversion__to_upper_case "${k}")="$(subversion__svn_info "${wc_path}" "${k}")" |
|
|
300 | done |
|
|
301 | |
|
|
302 | } |
|
|
303 | |
|
|
304 | |
|
|
305 | ## -- Private Functions |
|
|
306 | |
|
|
307 | |
|
|
308 | ## -- subversion__svn_info() ------------------------------------------------- # |
|
|
309 | # |
|
|
310 | # @param $1 - a target. |
|
|
311 | # @param $2 - a key name. |
|
|
312 | # |
|
|
313 | function subversion__svn_info() { |
|
|
314 | |
|
|
315 | local target="${1}" |
|
|
316 | local key="${2}" |
|
|
317 | |
|
|
318 | env LC_ALL=C svn info "${target}" | grep -i "^${key}" | cut -d" " -f2- |
|
|
319 | |
|
|
320 | } |
|
|
321 | |
|
|
322 | |
|
|
323 | ## -- subversion__get_repository_uri() --------------------------------------- # |
|
|
324 | # |
|
|
325 | # @param $1 - a repository URI. |
|
|
326 | # @param $2 - a peg revision is deleted from a return value if this is |
|
|
327 | # specified. |
|
|
328 | # |
|
|
329 | function subversion__get_repository_uri() { |
|
|
330 | |
|
|
331 | local repo_uri="${1:-${ESVN_REPO_URI}}" |
|
|
332 | local remove_peg_revision="${2}" |
|
|
333 | |
|
|
334 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
335 | debug-print "${FUNCNAME}: remove_peg_revision = ${remove_peg_revision}" |
|
|
336 | |
|
|
337 | if [[ -z "${repo_uri}" ]]; then |
|
|
338 | die "${ESVN}: ESVN_REPO_URI (or specified URI) is empty." |
|
|
339 | fi |
|
|
340 | |
|
|
341 | # delete trailing slash |
|
|
342 | if [[ -z "${repo_uri##*/}" ]]; then |
|
|
343 | repo_uri="${repo_uri%/}" |
|
|
344 | fi |
|
|
345 | |
|
|
346 | if [[ -n "${remove_peg_revision}" ]]; then |
|
|
347 | if subversion__has_peg_revision "${repo_uri}"; then |
|
|
348 | repo_uri="${repo_uri%@*}" |
|
|
349 | |
|
|
350 | debug-print "${FUNCNAME}: repo_uri has a peg revision" |
|
|
351 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
352 | fi |
|
|
353 | fi |
|
|
354 | |
|
|
355 | echo "${repo_uri}" |
|
|
356 | |
|
|
357 | } |
|
|
358 | |
|
|
359 | |
|
|
360 | ## -- subversion__get_wc_path() ---------------------------------------------- # |
|
|
361 | # |
|
|
362 | # @param $1 - a repository URI. |
|
|
363 | # |
|
|
364 | function subversion__get_wc_path() { |
|
|
365 | |
|
|
366 | local repo_uri="$(subversion__get_repository_uri "${1}" 1)" |
|
|
367 | |
|
|
368 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
369 | |
|
|
370 | echo "${ESVN_STORE_DIR}/${ESVN_PROJECT}/${repo_uri##*/}" |
|
|
371 | |
|
|
372 | } |
|
|
373 | |
|
|
374 | |
|
|
375 | ## -- subversion__has_peg_revision() ----------------------------------------- # |
|
|
376 | # |
|
|
377 | # @param $1 - a repository URI. |
|
|
378 | # |
|
|
379 | function subversion__has_peg_revision() { |
|
|
380 | |
|
|
381 | local repo_uri="${1}" |
|
|
382 | |
|
|
383 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
384 | |
|
|
385 | # repo_uri has peg revision ? |
|
|
386 | if [[ "${repo_uri}" != *@* ]]; then |
|
|
387 | debug-print "${FUNCNAME}: repo_uri does not have a peg revision." |
|
|
388 | return 1 |
|
|
389 | fi |
|
|
390 | |
|
|
391 | local peg_rev="${repo_uri##*@}" |
|
|
392 | |
|
|
393 | case "$(subversion__to_upper_case "${peg_rev}")" in |
|
|
394 | [[:digit:]]*) |
|
|
395 | # NUMBER |
|
|
396 | ;; |
|
|
397 | HEAD|BASE|COMMITED|PREV) |
|
|
398 | ;; |
|
|
399 | {[^}]*}) |
|
|
400 | # DATE |
|
|
401 | ;; |
|
|
402 | *) |
|
|
403 | debug-print "${FUNCNAME}: repo_uri does not have a peg revision." |
|
|
404 | return 1 |
|
|
405 | ;; |
|
|
406 | esac |
|
|
407 | |
|
|
408 | debug-print "${FUNCNAME}: peg_rev = ${peg_rev}" |
|
|
409 | |
|
|
410 | return 0 |
|
|
411 | |
|
|
412 | } |
|
|
413 | |
|
|
414 | |
|
|
415 | ## -- subversion__to_upper_case() ----------------------------------------- # |
|
|
416 | # |
|
|
417 | # @param $@ - the strings to upper case. |
|
|
418 | # |
|
|
419 | function subversion__to_upper_case() { |
|
|
420 | echo "${@}" | tr "[a-z]" "[A-Z]" |
|
|
421 | } |