| 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.59 2008/05/15 13:27:40 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 | |
14 | |
| 17 | inherit eutils |
15 | inherit eutils |
| 18 | |
16 | |
| 19 | ESVN="${ECLASS}" |
17 | ESVN="${ECLASS}" |
| 20 | |
18 | |
|
|
19 | case "${EAPI:-0}" in |
|
|
20 | 0|1) |
| 21 | EXPORT_FUNCTIONS src_unpack pkg_preinst |
21 | EXPORT_FUNCTIONS src_unpack pkg_preinst |
| 22 | |
|
|
| 23 | DESCRIPTION="Based on the ${ECLASS} eclass" |
|
|
| 24 | |
|
|
| 25 | DEPEND="dev-util/subversion |
22 | DEPEND="dev-vcs/subversion" |
| 26 | 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" |
| 27 | |
31 | |
| 28 | # @ECLASS-VARIABLE: ESVN_STORE_DIR |
32 | # @ECLASS-VARIABLE: ESVN_STORE_DIR |
| 29 | # @DESCRIPTION: |
33 | # @DESCRIPTION: |
| 30 | # 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 |
| 31 | [[ -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" |
| … | |
… | |
| 55 | # @DESCRIPTION: |
59 | # @DESCRIPTION: |
| 56 | # repository uri |
60 | # repository uri |
| 57 | # |
61 | # |
| 58 | # 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 |
| 59 | # |
63 | # |
| 60 | # supported protocols: |
64 | # supported URI schemes: |
| 61 | # http:// |
65 | # http:// |
| 62 | # https:// |
66 | # https:// |
| 63 | # svn:// |
67 | # svn:// |
| 64 | # svn+ssh:// |
68 | # svn+ssh:// |
|
|
69 | # file:// |
| 65 | # |
70 | # |
| 66 | # 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 |
| 67 | ESVN_REPO_URI="${ESVN_REPO_URI:-}" |
72 | ESVN_REPO_URI="${ESVN_REPO_URI:-}" |
| 68 | |
73 | |
| 69 | # @ECLASS-VARIABLE: ESVN_REVISION |
74 | # @ECLASS-VARIABLE: ESVN_REVISION |
| … | |
… | |
| 73 | # Useful for live svn or trunk svn ebuilds allowing the user to peg |
78 | # Useful for live svn or trunk svn ebuilds allowing the user to peg |
| 74 | # to a specific revision |
79 | # to a specific revision |
| 75 | # |
80 | # |
| 76 | # Note: This should never be set in an ebuild! |
81 | # Note: This should never be set in an ebuild! |
| 77 | ESVN_REVISION="${ESVN_REVISION:-}" |
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:-}" |
| 78 | |
93 | |
| 79 | # @ECLASS-VARIABLE: ESVN_PROJECT |
94 | # @ECLASS-VARIABLE: ESVN_PROJECT |
| 80 | # @DESCRIPTION: |
95 | # @DESCRIPTION: |
| 81 | # project name of your ebuild (= name space) |
96 | # project name of your ebuild (= name space) |
| 82 | # |
97 | # |
| … | |
… | |
| 125 | # @ECLASS-VARIABLE: ESVN_OFFLINE |
140 | # @ECLASS-VARIABLE: ESVN_OFFLINE |
| 126 | # @DESCRIPTION: |
141 | # @DESCRIPTION: |
| 127 | # Set this variable to a non-empty value to disable the automatic updating of |
142 | # Set this variable to a non-empty value to disable the automatic updating of |
| 128 | # an svn source tree. This is intended to be set outside the subversion source |
143 | # an svn source tree. This is intended to be set outside the subversion source |
| 129 | # tree by users. |
144 | # tree by users. |
| 130 | ESVN_OFFLINE="${ESVN_OFFLINE:-${ESCM_OFFLINE}}" |
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}}" |
| 131 | |
156 | |
| 132 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
157 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
| 133 | # @DESCRIPTION: |
158 | # @DESCRIPTION: |
| 134 | # Set the minimum number of hours between svn up'ing in any given svn module. This is particularly |
159 | # Set the minimum number of hours between svn up'ing in any given svn module. This is particularly |
| 135 | # useful for split KDE ebuilds where we want to ensure that all submodules are compiled for the same |
160 | # useful for split KDE ebuilds where we want to ensure that all submodules are compiled for the same |
| … | |
… | |
| 162 | die "${ESVN}: ESVN_REPO_URI (or specified URI) is empty." |
187 | die "${ESVN}: ESVN_REPO_URI (or specified URI) is empty." |
| 163 | fi |
188 | fi |
| 164 | |
189 | |
| 165 | [[ -n "${ESVN_REVISION}" ]] && revision="${ESVN_REVISION}" |
190 | [[ -n "${ESVN_REVISION}" ]] && revision="${ESVN_REVISION}" |
| 166 | |
191 | |
| 167 | # check for the protocol |
192 | # check for the scheme |
| 168 | local protocol="${repo_uri%%:*}" |
193 | local scheme="${repo_uri%%:*}" |
| 169 | |
194 | case "${scheme}" in |
| 170 | case "${protocol}" in |
|
|
| 171 | http|https) |
195 | http|https) |
| 172 | if ! built_with_use --missing true -o dev-util/subversion webdav-neon webdav-serf || \ |
|
|
| 173 | built_with_use --missing false dev-util/subversion nowebdav ; then |
|
|
| 174 | echo |
|
|
| 175 | eerror "In order to emerge this package, you need to" |
|
|
| 176 | eerror "reinstall Subversion with support for WebDAV." |
|
|
| 177 | eerror "Subversion requires either Neon or Serf to support WebDAV." |
|
|
| 178 | echo |
|
|
| 179 | die "${ESVN}: reinstall Subversion with support for WebDAV." |
|
|
| 180 | fi |
|
|
| 181 | ;; |
196 | ;; |
| 182 | svn|svn+ssh) |
197 | svn|svn+ssh) |
| 183 | ;; |
198 | ;; |
|
|
199 | file) |
|
|
200 | ;; |
| 184 | *) |
201 | *) |
| 185 | die "${ESVN}: fetch from '${protocol}' is not yet implemented." |
202 | die "${ESVN}: fetch from '${scheme}' is not yet implemented." |
| 186 | ;; |
203 | ;; |
| 187 | esac |
204 | esac |
| 188 | |
205 | |
| 189 | addread "/etc/subversion" |
206 | addread "/etc/subversion" |
| 190 | addwrite "${ESVN_STORE_DIR}" |
207 | addwrite "${ESVN_STORE_DIR}" |
| 191 | |
208 | |
|
|
209 | if [[ -n "${ESVN_UMASK}" ]]; then |
|
|
210 | eumask_push "${ESVN_UMASK}" |
|
|
211 | fi |
|
|
212 | |
| 192 | if [[ ! -d ${ESVN_STORE_DIR} ]]; then |
213 | if [[ ! -d ${ESVN_STORE_DIR} ]]; then |
| 193 | debug-print "${FUNCNAME}: initial checkout. creating subversion directory" |
214 | debug-print "${FUNCNAME}: initial checkout. creating subversion directory" |
| 194 | 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}." |
| 195 | fi |
216 | fi |
| 196 | |
217 | |
| 197 | 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}" |
| 198 | |
219 | |
| 199 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
220 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
| 200 | local options="${ESVN_OPTIONS} --config-dir ${ESVN_STORE_DIR}/.subversion" |
221 | local options="${ESVN_OPTIONS} --config-dir ${ESVN_STORE_DIR}/.subversion" |
| 201 | |
222 | |
| 202 | [[ -n "${revision}" ]] && options="${options} -r ${revision}" |
223 | [[ -n "${revision}" ]] && options="${options} -r ${revision}" |
| … | |
… | |
| 204 | if [[ "${ESVN_OPTIONS}" = *-r* ]]; then |
225 | if [[ "${ESVN_OPTIONS}" = *-r* ]]; then |
| 205 | ewarn "\${ESVN_OPTIONS} contains -r, this usage is unsupported. Please" |
226 | ewarn "\${ESVN_OPTIONS} contains -r, this usage is unsupported. Please" |
| 206 | ewarn "see \${ESVN_REPO_URI}" |
227 | ewarn "see \${ESVN_REPO_URI}" |
| 207 | fi |
228 | fi |
| 208 | |
229 | |
|
|
230 | if has_version ">=dev-vcs/subversion-1.6.0"; then |
|
|
231 | options="${options} --config-option=config:auth:password-stores=" |
|
|
232 | fi |
|
|
233 | |
| 209 | debug-print "${FUNCNAME}: wc_path = \"${wc_path}\"" |
234 | debug-print "${FUNCNAME}: wc_path = \"${wc_path}\"" |
| 210 | debug-print "${FUNCNAME}: ESVN_OPTIONS = \"${ESVN_OPTIONS}\"" |
235 | debug-print "${FUNCNAME}: ESVN_OPTIONS = \"${ESVN_OPTIONS}\"" |
| 211 | debug-print "${FUNCNAME}: options = \"${options}\"" |
236 | debug-print "${FUNCNAME}: options = \"${options}\"" |
| 212 | |
237 | |
| 213 | if [[ ! -d ${wc_path}/.svn ]]; then |
238 | if [[ ! -d ${wc_path}/.svn ]]; then |
| 214 | if [[ -n ${ESVN_OFFLINE} ]]; then |
239 | if [[ -n ${ESVN_OFFLINE} ]]; then |
| 215 | ewarn "ESVN_OFFLINE cannot be used when the there is no existing checkout." |
240 | ewarn "ESVN_OFFLINE cannot be used when there is no existing checkout." |
| 216 | fi |
241 | fi |
| 217 | # first check out |
242 | # first check out |
| 218 | einfo "subversion check out start -->" |
243 | einfo "subversion check out start -->" |
| 219 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
244 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
| 220 | |
245 | |
| 221 | debug-print "${FUNCNAME}: ${ESVN_FETCH_CMD} ${options} ${repo_uri}" |
246 | debug-print "${FUNCNAME}: ${ESVN_FETCH_CMD} ${options} ${repo_uri}" |
| 222 | |
247 | |
| 223 | 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}." |
| 224 | 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 |
| 225 | ${ESVN_FETCH_CMD} ${options} "${repo_uri}" || die "${ESVN}: can't fetch to ${wc_path} from ${repo_uri}." |
253 | ${ESVN_FETCH_CMD} ${options} "${repo_uri}" || die "${ESVN}: can't fetch to ${wc_path} from ${repo_uri}." |
|
|
254 | fi |
| 226 | |
255 | |
| 227 | elif [[ -n ${ESVN_OFFLINE} ]]; then |
256 | elif [[ -n ${ESVN_OFFLINE} ]]; then |
|
|
257 | svn upgrade "${wc_path}" &>/dev/null |
|
|
258 | svn cleanup "${wc_path}" &>/dev/null |
| 228 | subversion_wc_info "${repo_uri}" || die "${ESVN}: unknown problem occurred while accessing working copy." |
259 | subversion_wc_info "${repo_uri}" || die "${ESVN}: unknown problem occurred while accessing working copy." |
|
|
260 | |
| 229 | if [[ -n ${ESVN_REVISION} && ${ESVN_REVISION} != ${ESVN_WC_REVISION} ]]; then |
261 | if [[ -n ${ESVN_REVISION} && ${ESVN_REVISION} != ${ESVN_WC_REVISION} ]]; then |
| 230 | die "${ESVN}: You requested off-line updating and revision ${ESVN_REVISION} but only revision ${ESVN_WC_REVISION} is available locally." |
262 | die "${ESVN}: You requested off-line updating and revision ${ESVN_REVISION} but only revision ${ESVN_WC_REVISION} is available locally." |
| 231 | fi |
263 | fi |
| 232 | einfo "Fetching disabled: Using existing repository copy at revision ${ESVN_WC_REVISION}." |
264 | einfo "Fetching disabled: Using existing repository copy at revision ${ESVN_WC_REVISION}." |
| 233 | else |
265 | else |
|
|
266 | svn upgrade "${wc_path}" &>/dev/null |
|
|
267 | svn cleanup "${wc_path}" &>/dev/null |
| 234 | 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." |
| 235 | |
269 | |
| 236 | local esvn_up_freq= |
270 | local esvn_up_freq= |
| 237 | if [[ -n ${ESVN_UP_FREQ} ]]; then |
271 | if [[ -n ${ESVN_UP_FREQ} ]]; then |
| 238 | if [[ -n ${ESVN_UP_FREQ//[[:digit:]]} ]]; then |
272 | if [[ -n ${ESVN_UP_FREQ//[[:digit:]]} ]]; then |
| … | |
… | |
| 243 | esvn_up_freq=no_update |
277 | esvn_up_freq=no_update |
| 244 | fi |
278 | fi |
| 245 | fi |
279 | fi |
| 246 | |
280 | |
| 247 | if [[ -z ${esvn_up_freq} ]]; then |
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 |
| 248 | if [[ ${ESVN_WC_URL} != $(subversion__get_repository_uri "${repo_uri}") ]]; then |
300 | elif [[ ${ESVN_WC_URL} != $(subversion__get_repository_uri "${repo_uri}") ]]; then |
| 249 | einfo "subversion switch start -->" |
301 | einfo "subversion switch start -->" |
| 250 | einfo " old repository: ${ESVN_WC_URL}@${ESVN_WC_REVISION}" |
302 | einfo " old repository: ${ESVN_WC_URL}@${ESVN_WC_REVISION}" |
| 251 | einfo " new repository: ${repo_uri}${revision:+@}${revision}" |
303 | einfo " new repository: ${repo_uri}${revision:+@}${revision}" |
| 252 | |
304 | |
| 253 | debug-print "${FUNCNAME}: ${ESVN_SWITCH_CMD} ${options} ${repo_uri}" |
305 | debug-print "${FUNCNAME}: ${ESVN_SWITCH_CMD} ${options} ${repo_uri}" |
| 254 | |
306 | |
| 255 | 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 |
| 256 | ${ESVN_SWITCH_CMD} ${options} ${repo_uri} || die "${ESVN}: can't update ${wc_path} from ${repo_uri}" |
311 | ${ESVN_SWITCH_CMD} ${options} ${repo_uri} || die "${ESVN}: can't update ${wc_path} from ${repo_uri}." |
|
|
312 | fi |
| 257 | else |
313 | else |
| 258 | # update working copy |
314 | # update working copy |
| 259 | einfo "subversion update start -->" |
315 | einfo "subversion update start -->" |
| 260 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
316 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
| 261 | |
317 | |
| 262 | debug-print "${FUNCNAME}: ${ESVN_UPDATE_CMD} ${options}" |
318 | debug-print "${FUNCNAME}: ${ESVN_UPDATE_CMD} ${options}" |
| 263 | |
319 | |
| 264 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
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 |
| 265 | ${ESVN_UPDATE_CMD} ${options} || die "${ESVN}: can't update ${wc_path} from ${repo_uri}." |
324 | ${ESVN_UPDATE_CMD} ${options} || die "${ESVN}: can't update ${wc_path} from ${repo_uri}." |
|
|
325 | fi |
| 266 | fi |
326 | fi |
| 267 | fi |
327 | fi |
|
|
328 | fi |
|
|
329 | |
|
|
330 | if [[ -n "${ESVN_UMASK}" ]]; then |
|
|
331 | eumask_pop |
| 268 | fi |
332 | fi |
| 269 | |
333 | |
| 270 | einfo " working copy: ${wc_path}" |
334 | einfo " working copy: ${wc_path}" |
| 271 | |
335 | |
| 272 | if ! has "export" ${ESVN_RESTRICT}; then |
336 | if ! has "export" ${ESVN_RESTRICT}; then |
| 273 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
337 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
| 274 | |
338 | |
| 275 | local S="${S}/${S_dest}" |
339 | local S="${S}/${S_dest}" |
|
|
340 | mkdir -p "${S}" |
| 276 | |
341 | |
| 277 | # export to the ${WORKDIR} |
342 | # export to the ${WORKDIR} |
| 278 | #* "svn export" has a bug. see http://bugs.gentoo.org/119236 |
343 | #* "svn export" has a bug. see http://bugs.gentoo.org/119236 |
| 279 | #* svn export . "${S}" || die "${ESVN}: can't export to ${S}." |
344 | #* svn export . "${S}" || die "${ESVN}: can't export to ${S}." |
| 280 | 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}." |
| 281 | fi |
346 | fi |
| 282 | |
347 | |
|
|
348 | popd >/dev/null |
| 283 | echo |
349 | echo |
| 284 | } |
350 | } |
| 285 | |
351 | |
| 286 | # @FUNCTION: subversion_bootstrap |
352 | # @FUNCTION: subversion_bootstrap |
| 287 | # @DESCRIPTION: |
353 | # @DESCRIPTION: |
| … | |
… | |
| 292 | fi |
358 | fi |
| 293 | |
359 | |
| 294 | cd "${S}" |
360 | cd "${S}" |
| 295 | |
361 | |
| 296 | if [[ -n ${ESVN_PATCHES} ]]; then |
362 | if [[ -n ${ESVN_PATCHES} ]]; then |
|
|
363 | local patch fpatch |
| 297 | einfo "apply patches -->" |
364 | einfo "apply patches -->" |
| 298 | |
|
|
| 299 | local patch fpatch |
|
|
| 300 | |
|
|
| 301 | for patch in ${ESVN_PATCHES}; do |
365 | for patch in ${ESVN_PATCHES}; do |
| 302 | if [[ -f ${patch} ]]; then |
366 | if [[ -f ${patch} ]]; then |
| 303 | epatch "${patch}" |
367 | epatch "${patch}" |
| 304 | |
|
|
| 305 | else |
368 | else |
| 306 | for fpatch in ${FILESDIR}/${patch}; do |
369 | for fpatch in ${FILESDIR}/${patch}; do |
| 307 | if [[ -f ${fpatch} ]]; then |
370 | if [[ -f ${fpatch} ]]; then |
| 308 | epatch "${fpatch}" |
371 | epatch "${fpatch}" |
| 309 | |
|
|
| 310 | else |
372 | else |
| 311 | die "${ESVN}: ${patch} not found" |
373 | die "${ESVN}: ${patch} not found" |
| 312 | |
|
|
| 313 | fi |
374 | fi |
| 314 | done |
375 | done |
| 315 | |
|
|
| 316 | fi |
376 | fi |
| 317 | done |
377 | done |
| 318 | |
|
|
| 319 | echo |
378 | echo |
| 320 | fi |
379 | fi |
| 321 | |
380 | |
| 322 | if [[ -n ${ESVN_BOOTSTRAP} ]]; then |
381 | if [[ -n ${ESVN_BOOTSTRAP} ]]; then |
| 323 | einfo "begin bootstrap -->" |
382 | einfo "begin bootstrap -->" |
| 324 | |
|
|
| 325 | if [[ -f ${ESVN_BOOTSTRAP} && -x ${ESVN_BOOTSTRAP} ]]; then |
383 | if [[ -f ${ESVN_BOOTSTRAP} && -x ${ESVN_BOOTSTRAP} ]]; then |
| 326 | einfo " bootstrap with a file: ${ESVN_BOOTSTRAP}" |
384 | einfo " bootstrap with a file: ${ESVN_BOOTSTRAP}" |
| 327 | eval "./${ESVN_BOOTSTRAP}" || die "${ESVN}: can't execute ESVN_BOOTSTRAP." |
385 | eval "./${ESVN_BOOTSTRAP}" || die "${ESVN}: can't execute ESVN_BOOTSTRAP." |
| 328 | |
|
|
| 329 | else |
386 | else |
| 330 | einfo " bootstrap with command: ${ESVN_BOOTSTRAP}" |
387 | einfo " bootstrap with command: ${ESVN_BOOTSTRAP}" |
| 331 | eval "${ESVN_BOOTSTRAP}" || die "${ESVN}: can't eval ESVN_BOOTSTRAP." |
388 | eval "${ESVN_BOOTSTRAP}" || die "${ESVN}: can't eval ESVN_BOOTSTRAP." |
| 332 | |
|
|
| 333 | fi |
|
|
| 334 | fi |
389 | fi |
| 335 | } |
390 | fi |
| 336 | |
|
|
| 337 | # @FUNCTION: subversion_src_unpack |
|
|
| 338 | # @DESCRIPTION: |
|
|
| 339 | # default src_unpack. fetch and bootstrap. |
|
|
| 340 | subversion_src_unpack() { |
|
|
| 341 | subversion_fetch || die "${ESVN}: unknown problem occurred in subversion_fetch." |
|
|
| 342 | subversion_bootstrap || die "${ESVN}: unknown problem occurred in subversion_bootstrap." |
|
|
| 343 | } |
391 | } |
| 344 | |
392 | |
| 345 | # @FUNCTION: subversion_wc_info |
393 | # @FUNCTION: subversion_wc_info |
| 346 | # @USAGE: [repo_uri] |
394 | # @USAGE: [repo_uri] |
| 347 | # @RETURN: ESVN_WC_URL, ESVN_WC_ROOT, ESVN_WC_UUID, 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 |
| … | |
… | |
| 366 | export ESVN_WC_UUID="$(subversion__svn_info "${wc_path}" "Repository UUID")" |
414 | export ESVN_WC_UUID="$(subversion__svn_info "${wc_path}" "Repository UUID")" |
| 367 | export ESVN_WC_REVISION="$(subversion__svn_info "${wc_path}" "Revision")" |
415 | export ESVN_WC_REVISION="$(subversion__svn_info "${wc_path}" "Revision")" |
| 368 | export ESVN_WC_PATH="${wc_path}" |
416 | export ESVN_WC_PATH="${wc_path}" |
| 369 | } |
417 | } |
| 370 | |
418 | |
| 371 | ## -- Private Functions |
419 | # @FUNCTION: subversion_src_unpack |
| 372 | |
420 | # @DESCRIPTION: |
| 373 | ## -- subversion__svn_info() ------------------------------------------------- # |
421 | # Default src_unpack. Fetch and, in older EAPIs, bootstrap. |
| 374 | # |
422 | subversion_src_unpack() { |
| 375 | # param $1 - a target. |
423 | subversion_fetch || die "${ESVN}: unknown problem occurred in subversion_fetch." |
| 376 | # param $2 - a key name. |
424 | if has "${EAPI:-0}" 0 1; then |
| 377 | # |
425 | subversion_bootstrap || die "${ESVN}: unknown problem occurred in subversion_bootstrap." |
| 378 | subversion__svn_info() { |
|
|
| 379 | local target="${1}" |
|
|
| 380 | local key="${2}" |
|
|
| 381 | |
|
|
| 382 | env LC_ALL=C svn info "${target}" | grep -i "^${key}" | cut -d" " -f2- |
|
|
| 383 | } |
|
|
| 384 | |
|
|
| 385 | ## -- subversion__get_repository_uri() --------------------------------------- # |
|
|
| 386 | # |
|
|
| 387 | # param $1 - a repository URI. |
|
|
| 388 | subversion__get_repository_uri() { |
|
|
| 389 | local repo_uri="${1}" |
|
|
| 390 | |
|
|
| 391 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
| 392 | |
|
|
| 393 | if [[ -z ${repo_uri} ]]; then |
|
|
| 394 | die "${ESVN}: ESVN_REPO_URI (or specified URI) is empty." |
|
|
| 395 | fi |
426 | fi |
| 396 | |
|
|
| 397 | # delete trailing slash |
|
|
| 398 | if [[ -z ${repo_uri##*/} ]]; then |
|
|
| 399 | repo_uri="${repo_uri%/}" |
|
|
| 400 | fi |
|
|
| 401 | |
|
|
| 402 | repo_uri="${repo_uri%@*}" |
|
|
| 403 | |
|
|
| 404 | echo "${repo_uri}" |
|
|
| 405 | } |
427 | } |
| 406 | |
428 | |
| 407 | ## -- subversion__get_wc_path() ---------------------------------------------- # |
429 | # @FUNCTION: subversion_src_prepare |
| 408 | # |
430 | # @DESCRIPTION: |
| 409 | # param $1 - a repository URI. |
431 | # Default src_prepare. Bootstrap. |
| 410 | subversion__get_wc_path() { |
432 | subversion_src_prepare() { |
| 411 | local repo_uri="$(subversion__get_repository_uri "${1}")" |
433 | subversion_bootstrap || die "${ESVN}: unknown problem occurred in subversion_bootstrap." |
| 412 | |
|
|
| 413 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
| 414 | |
|
|
| 415 | echo "${ESVN_STORE_DIR}/${ESVN_PROJECT}/${repo_uri##*/}" |
|
|
| 416 | } |
|
|
| 417 | |
|
|
| 418 | ## -- subversion__get_peg_revision() ----------------------------------------- # |
|
|
| 419 | # |
|
|
| 420 | # param $1 - a repository URI. |
|
|
| 421 | subversion__get_peg_revision() { |
|
|
| 422 | local repo_uri="${1}" |
|
|
| 423 | |
|
|
| 424 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
| 425 | |
|
|
| 426 | # repo_uri has peg revision ? |
|
|
| 427 | if [[ ${repo_uri} != *@* ]]; then |
|
|
| 428 | debug-print "${FUNCNAME}: repo_uri does not have a peg revision." |
|
|
| 429 | fi |
|
|
| 430 | |
|
|
| 431 | local peg_rev= |
|
|
| 432 | [[ ${repo_uri} = *@* ]] && peg_rev="${repo_uri##*@}" |
|
|
| 433 | |
|
|
| 434 | debug-print "${FUNCNAME}: peg_rev = ${peg_rev}" |
|
|
| 435 | |
|
|
| 436 | echo "${peg_rev}" |
|
|
| 437 | } |
434 | } |
| 438 | |
435 | |
| 439 | # @FUNCTION: subversion_pkg_preinst |
436 | # @FUNCTION: subversion_pkg_preinst |
| 440 | # @USAGE: [repo_uri] |
437 | # @USAGE: [repo_uri] |
| 441 | # @DESCRIPTION: |
438 | # @DESCRIPTION: |
| 442 | # Log the svn revision of source code. Doing this in pkg_preinst because we |
439 | # Log the svn revision of source code. Doing this in pkg_preinst because we |
| 443 | # want the logs to stick around if packages are uninstalled without messing with |
440 | # want the logs to stick around if packages are uninstalled without messing with |
| 444 | # config protection. |
441 | # config protection. |
| 445 | subversion_pkg_preinst() { |
442 | subversion_pkg_preinst() { |
| 446 | local pkgdate=$(date "+%Y%m%d %H:%M:%S") |
443 | local pkgdate=$(date "+%Y%m%d %H:%M:%S") |
| 447 | subversion_wc_info "${1:-${ESVN_REPO_URI}}" |
444 | subversion_wc_info "${1}" |
| 448 | if [[ -n ${ESCM_LOGDIR} ]]; then |
445 | if [[ -n ${ESCM_LOGDIR} ]]; then |
| 449 | local dir="${ROOT}/${ESCM_LOGDIR}/${CATEGORY}" |
446 | local dir="${ROOT}/${ESCM_LOGDIR}/${CATEGORY}" |
| 450 | if [[ ! -d ${dir} ]]; then |
447 | if [[ ! -d ${dir} ]]; then |
| 451 | mkdir -p "${dir}" || \ |
448 | mkdir -p "${dir}" || eerror "Failed to create '${dir}' for logging svn revision" |
| 452 | eerror "Failed to create '${dir}' for logging svn revision to '${PORTDIR_SCM}'" |
|
|
| 453 | fi |
449 | fi |
| 454 | local logmessage="svn: ${pkgdate} - ${PF}:${SLOT} was merged at revision ${ESVN_WC_REVISION}" |
450 | local logmessage="svn: ${pkgdate} - ${PF}:${SLOT} was merged at revision ${ESVN_WC_REVISION}" |
| 455 | if [[ -d ${dir} ]]; then |
451 | if [[ -d ${dir} ]]; then |
| 456 | echo "${logmessage}" >> "${dir}/${PN}.log" |
452 | echo "${logmessage}" >>"${dir}/${PN}.log" |
| 457 | else |
453 | else |
| 458 | eerror "Could not log the message '${logmessage}' to '${dir}/${PN}.log'" |
454 | eerror "Could not log the message '${logmessage}' to '${dir}/${PN}.log'" |
| 459 | fi |
455 | fi |
| 460 | fi |
456 | fi |
| 461 | } |
457 | } |
|
|
458 | |
|
|
459 | ## -- Private Functions |
|
|
460 | |
|
|
461 | ## -- subversion__svn_info() ------------------------------------------------- # |
|
|
462 | # |
|
|
463 | # param $1 - a target. |
|
|
464 | # param $2 - a key name. |
|
|
465 | # |
|
|
466 | subversion__svn_info() { |
|
|
467 | local target="${1}" |
|
|
468 | local key="${2}" |
|
|
469 | |
|
|
470 | env LC_ALL=C svn info ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" "${target}" \ |
|
|
471 | | grep -i "^${key}" \ |
|
|
472 | | cut -d" " -f2- |
|
|
473 | } |
|
|
474 | |
|
|
475 | ## -- subversion__get_repository_uri() --------------------------------------- # |
|
|
476 | # |
|
|
477 | # param $1 - a repository URI. |
|
|
478 | subversion__get_repository_uri() { |
|
|
479 | local repo_uri="${1}" |
|
|
480 | |
|
|
481 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
482 | if [[ -z ${repo_uri} ]]; then |
|
|
483 | die "${ESVN}: ESVN_REPO_URI (or specified URI) is empty." |
|
|
484 | fi |
|
|
485 | # delete trailing slash |
|
|
486 | if [[ -z ${repo_uri##*/} ]]; then |
|
|
487 | repo_uri="${repo_uri%/}" |
|
|
488 | fi |
|
|
489 | repo_uri="${repo_uri%@*}" |
|
|
490 | |
|
|
491 | echo "${repo_uri}" |
|
|
492 | } |
|
|
493 | |
|
|
494 | ## -- subversion__get_wc_path() ---------------------------------------------- # |
|
|
495 | # |
|
|
496 | # param $1 - a repository URI. |
|
|
497 | subversion__get_wc_path() { |
|
|
498 | local repo_uri="$(subversion__get_repository_uri "${1}")" |
|
|
499 | |
|
|
500 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
501 | |
|
|
502 | echo "${ESVN_STORE_DIR}/${ESVN_PROJECT}/${repo_uri##*/}" |
|
|
503 | } |
|
|
504 | |
|
|
505 | ## -- subversion__get_peg_revision() ----------------------------------------- # |
|
|
506 | # |
|
|
507 | # param $1 - a repository URI. |
|
|
508 | subversion__get_peg_revision() { |
|
|
509 | local repo_uri="${1}" |
|
|
510 | local peg_rev= |
|
|
511 | |
|
|
512 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
513 | # repo_uri has peg revision? |
|
|
514 | if [[ ${repo_uri} = *@* ]]; then |
|
|
515 | peg_rev="${repo_uri##*@}" |
|
|
516 | debug-print "${FUNCNAME}: peg_rev = ${peg_rev}" |
|
|
517 | else |
|
|
518 | debug-print "${FUNCNAME}: repo_uri does not have a peg revision." |
|
|
519 | fi |
|
|
520 | |
|
|
521 | echo "${peg_rev}" |
|
|
522 | } |