| 1 | # Copyright 1999-2011 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.71 2011/12/14 23:40:18 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/subversion.eclass,v 1.75 2012/02/21 18:03:49 jlec 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 | # Bo Ørsted Andresen <zlin@gentoo.org> |
| … | |
… | |
| 153 | # @DESCRIPTION: |
153 | # @DESCRIPTION: |
| 154 | # Set this variable to a non-empty value to disable the automatic updating of |
154 | # Set this variable to a non-empty value to disable the automatic updating of |
| 155 | # an svn source tree. This is intended to be set outside the subversion source |
155 | # an svn source tree. This is intended to be set outside the subversion source |
| 156 | # tree by users. |
156 | # tree by users. |
| 157 | ESVN_OFFLINE="${ESVN_OFFLINE:-${ESCM_OFFLINE}}" |
157 | ESVN_OFFLINE="${ESVN_OFFLINE:-${ESCM_OFFLINE}}" |
|
|
158 | |
|
|
159 | # @ECLASS-VARIABLE: ESVN_UMASK |
|
|
160 | # @DESCRIPTION: |
|
|
161 | # Set this variable to a custom umask. This is intended to be set by users. |
|
|
162 | # By setting this to something like 002, it can make life easier for people |
|
|
163 | # who do development as non-root (but are in the portage group), and then |
|
|
164 | # switch over to building with FEATURES=userpriv. Or vice-versa. Shouldn't |
|
|
165 | # be a security issue here as anyone who has portage group write access |
|
|
166 | # already can screw the system over in more creative ways. |
|
|
167 | ESVN_UMASK="${ESVN_UMASK:-${EVCS_UMASK}}" |
| 158 | |
168 | |
| 159 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
169 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
| 160 | # @DESCRIPTION: |
170 | # @DESCRIPTION: |
| 161 | # Set the minimum number of hours between svn up'ing in any given svn module. This is particularly |
171 | # Set the minimum number of hours between svn up'ing in any given svn module. This is particularly |
| 162 | # useful for split KDE ebuilds where we want to ensure that all submodules are compiled for the same |
172 | # useful for split KDE ebuilds where we want to ensure that all submodules are compiled for the same |
| … | |
… | |
| 213 | esac |
223 | esac |
| 214 | |
224 | |
| 215 | addread "/etc/subversion" |
225 | addread "/etc/subversion" |
| 216 | addwrite "${ESVN_STORE_DIR}" |
226 | addwrite "${ESVN_STORE_DIR}" |
| 217 | |
227 | |
|
|
228 | if [[ -n "${ESVN_UMASK}" ]]; then |
|
|
229 | eumask_push "${ESVN_UMASK}" |
|
|
230 | fi |
|
|
231 | |
| 218 | if [[ ! -d ${ESVN_STORE_DIR} ]]; then |
232 | if [[ ! -d ${ESVN_STORE_DIR} ]]; then |
| 219 | debug-print "${FUNCNAME}: initial checkout. creating subversion directory" |
233 | debug-print "${FUNCNAME}: initial checkout. creating subversion directory" |
| 220 | mkdir -m 775 -p "${ESVN_STORE_DIR}" || die "${ESVN}: can't mkdir ${ESVN_STORE_DIR}." |
234 | mkdir -m 775 -p "${ESVN_STORE_DIR}" || die "${ESVN}: can't mkdir ${ESVN_STORE_DIR}." |
| 221 | fi |
235 | fi |
| 222 | |
236 | |
| … | |
… | |
| 281 | esvn_up_freq=no_update |
295 | esvn_up_freq=no_update |
| 282 | fi |
296 | fi |
| 283 | fi |
297 | fi |
| 284 | |
298 | |
| 285 | if [[ -z ${esvn_up_freq} ]]; then |
299 | if [[ -z ${esvn_up_freq} ]]; then |
|
|
300 | if [[ ${ESVN_WC_UUID} != $(subversion__svn_info "${repo_uri}" "Repository UUID") ]]; then |
|
|
301 | # UUID mismatch. Delete working copy and check out it again. |
|
|
302 | einfo "subversion recheck out start -->" |
|
|
303 | einfo " old UUID: ${ESVN_WC_UUID}" |
|
|
304 | einfo " new UUID: $(subversion__svn_info "${repo_uri}" "Repository UUID")" |
|
|
305 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
|
|
306 | |
|
|
307 | rm -fr "${ESVN_PROJECT}" || die |
|
|
308 | |
|
|
309 | debug-print "${FUNCNAME}: ${ESVN_FETCH_CMD} ${options} ${repo_uri}" |
|
|
310 | |
|
|
311 | mkdir -m 775 -p "${ESVN_PROJECT}" || die "${ESVN}: can't mkdir ${ESVN_PROJECT}." |
|
|
312 | cd "${ESVN_PROJECT}" || die "${ESVN}: can't chdir to ${ESVN_PROJECT}" |
|
|
313 | if [[ -n "${ESVN_USER}" ]]; then |
|
|
314 | ${ESVN_FETCH_CMD} ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" "${repo_uri}" || die "${ESVN}: can't fetch to ${wc_path} from ${repo_uri}." |
|
|
315 | else |
|
|
316 | ${ESVN_FETCH_CMD} ${options} "${repo_uri}" || die "${ESVN}: can't fetch to ${wc_path} from ${repo_uri}." |
|
|
317 | fi |
| 286 | if [[ ${ESVN_WC_URL} != $(subversion__get_repository_uri "${repo_uri}") ]]; then |
318 | elif [[ ${ESVN_WC_URL} != $(subversion__get_repository_uri "${repo_uri}") ]]; then |
| 287 | einfo "subversion switch start -->" |
319 | einfo "subversion switch start -->" |
| 288 | einfo " old repository: ${ESVN_WC_URL}@${ESVN_WC_REVISION}" |
320 | einfo " old repository: ${ESVN_WC_URL}@${ESVN_WC_REVISION}" |
| 289 | einfo " new repository: ${repo_uri}${revision:+@}${revision}" |
321 | einfo " new repository: ${repo_uri}${revision:+@}${revision}" |
| 290 | |
322 | |
| 291 | debug-print "${FUNCNAME}: ${ESVN_SWITCH_CMD} ${options} ${repo_uri}" |
323 | debug-print "${FUNCNAME}: ${ESVN_SWITCH_CMD} ${options} ${repo_uri}" |
| … | |
… | |
| 311 | fi |
343 | fi |
| 312 | fi |
344 | fi |
| 313 | fi |
345 | fi |
| 314 | fi |
346 | fi |
| 315 | |
347 | |
|
|
348 | if [[ -n "${ESVN_UMASK}" ]]; then |
|
|
349 | eumask_pop |
|
|
350 | fi |
|
|
351 | |
| 316 | einfo " working copy: ${wc_path}" |
352 | einfo " working copy: ${wc_path}" |
| 317 | |
353 | |
| 318 | if ! has "export" ${ESVN_RESTRICT}; then |
354 | if ! has "export" ${ESVN_RESTRICT}; then |
| 319 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
355 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
| 320 | |
356 | |
| … | |
… | |
| 435 | # |
471 | # |
| 436 | subversion__svn_info() { |
472 | subversion__svn_info() { |
| 437 | local target="${1}" |
473 | local target="${1}" |
| 438 | local key="${2}" |
474 | local key="${2}" |
| 439 | |
475 | |
|
|
476 | env LC_ALL=C svn info \ |
|
|
477 | ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" \ |
| 440 | env LC_ALL=C svn info "${target}" | grep -i "^${key}" | cut -d" " -f2- |
478 | "${target}" | grep -i "^${key}" | cut -d" " -f2- |
| 441 | } |
479 | } |
| 442 | |
480 | |
| 443 | ## -- subversion__get_repository_uri() --------------------------------------- # |
481 | ## -- subversion__get_repository_uri() --------------------------------------- # |
| 444 | # |
482 | # |
| 445 | # param $1 - a repository URI. |
483 | # param $1 - a repository URI. |