| 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.82 2012/07/29 05:38:42 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" |
| … | |
… | |
| 74 | # to a specific revision |
78 | # to a specific revision |
| 75 | # |
79 | # |
| 76 | # Note: This should never be set in an ebuild! |
80 | # Note: This should never be set in an ebuild! |
| 77 | ESVN_REVISION="${ESVN_REVISION:-}" |
81 | ESVN_REVISION="${ESVN_REVISION:-}" |
| 78 | |
82 | |
|
|
83 | # @ECLASS-VARIABLE: ESVN_USER |
|
|
84 | # @DESCRIPTION: |
|
|
85 | # User name |
|
|
86 | ESVN_USER="${ESVN_USER:-}" |
|
|
87 | |
|
|
88 | # @ECLASS-VARIABLE: ESVN_PASSWORD |
|
|
89 | # @DESCRIPTION: |
|
|
90 | # Password |
|
|
91 | ESVN_PASSWORD="${ESVN_PASSWORD:-}" |
|
|
92 | |
| 79 | # @ECLASS-VARIABLE: ESVN_PROJECT |
93 | # @ECLASS-VARIABLE: ESVN_PROJECT |
| 80 | # @DESCRIPTION: |
94 | # @DESCRIPTION: |
| 81 | # project name of your ebuild (= name space) |
95 | # project name of your ebuild (= name space) |
| 82 | # |
96 | # |
| 83 | # subversion eclass will check out the subversion repository like: |
97 | # subversion eclass will check out the subversion repository like: |
| … | |
… | |
| 125 | # @ECLASS-VARIABLE: ESVN_OFFLINE |
139 | # @ECLASS-VARIABLE: ESVN_OFFLINE |
| 126 | # @DESCRIPTION: |
140 | # @DESCRIPTION: |
| 127 | # Set this variable to a non-empty value to disable the automatic updating of |
141 | # 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 |
142 | # an svn source tree. This is intended to be set outside the subversion source |
| 129 | # tree by users. |
143 | # tree by users. |
| 130 | ESVN_OFFLINE="${ESVN_OFFLINE:-${ESCM_OFFLINE}}" |
144 | ESVN_OFFLINE="${ESVN_OFFLINE:-${EVCS_OFFLINE}}" |
|
|
145 | |
|
|
146 | # @ECLASS-VARIABLE: ESVN_UMASK |
|
|
147 | # @DESCRIPTION: |
|
|
148 | # Set this variable to a custom umask. This is intended to be set by users. |
|
|
149 | # By setting this to something like 002, it can make life easier for people |
|
|
150 | # who do development as non-root (but are in the portage group), and then |
|
|
151 | # switch over to building with FEATURES=userpriv. Or vice-versa. Shouldn't |
|
|
152 | # be a security issue here as anyone who has portage group write access |
|
|
153 | # already can screw the system over in more creative ways. |
|
|
154 | ESVN_UMASK="${ESVN_UMASK:-${EVCS_UMASK}}" |
| 131 | |
155 | |
| 132 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
156 | # @ECLASS-VARIABLE: ESVN_UP_FREQ |
| 133 | # @DESCRIPTION: |
157 | # @DESCRIPTION: |
| 134 | # Set the minimum number of hours between svn up'ing in any given svn module. This is particularly |
158 | # 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 |
159 | # useful for split KDE ebuilds where we want to ensure that all submodules are compiled for the same |
| … | |
… | |
| 164 | |
188 | |
| 165 | [[ -n "${ESVN_REVISION}" ]] && revision="${ESVN_REVISION}" |
189 | [[ -n "${ESVN_REVISION}" ]] && revision="${ESVN_REVISION}" |
| 166 | |
190 | |
| 167 | # check for the protocol |
191 | # check for the protocol |
| 168 | local protocol="${repo_uri%%:*}" |
192 | local protocol="${repo_uri%%:*}" |
| 169 | |
|
|
| 170 | case "${protocol}" in |
193 | case "${protocol}" in |
| 171 | http|https) |
194 | 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 | ;; |
195 | ;; |
| 182 | svn|svn+ssh) |
196 | svn|svn+ssh) |
| 183 | ;; |
197 | ;; |
| 184 | *) |
198 | *) |
| 185 | die "${ESVN}: fetch from '${protocol}' is not yet implemented." |
199 | die "${ESVN}: fetch from '${protocol}' is not yet implemented." |
| … | |
… | |
| 187 | esac |
201 | esac |
| 188 | |
202 | |
| 189 | addread "/etc/subversion" |
203 | addread "/etc/subversion" |
| 190 | addwrite "${ESVN_STORE_DIR}" |
204 | addwrite "${ESVN_STORE_DIR}" |
| 191 | |
205 | |
|
|
206 | if [[ -n "${ESVN_UMASK}" ]]; then |
|
|
207 | eumask_push "${ESVN_UMASK}" |
|
|
208 | fi |
|
|
209 | |
| 192 | if [[ ! -d ${ESVN_STORE_DIR} ]]; then |
210 | if [[ ! -d ${ESVN_STORE_DIR} ]]; then |
| 193 | debug-print "${FUNCNAME}: initial checkout. creating subversion directory" |
211 | debug-print "${FUNCNAME}: initial checkout. creating subversion directory" |
| 194 | mkdir -p "${ESVN_STORE_DIR}" || die "${ESVN}: can't mkdir ${ESVN_STORE_DIR}." |
212 | mkdir -m 775 -p "${ESVN_STORE_DIR}" || die "${ESVN}: can't mkdir ${ESVN_STORE_DIR}." |
| 195 | fi |
213 | fi |
| 196 | |
214 | |
| 197 | cd "${ESVN_STORE_DIR}" || die "${ESVN}: can't chdir to ${ESVN_STORE_DIR}" |
215 | pushd "${ESVN_STORE_DIR}" >/dev/null || die "${ESVN}: can't chdir to ${ESVN_STORE_DIR}" |
| 198 | |
216 | |
| 199 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
217 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
| 200 | local options="${ESVN_OPTIONS} --config-dir ${ESVN_STORE_DIR}/.subversion" |
218 | local options="${ESVN_OPTIONS} --config-dir ${ESVN_STORE_DIR}/.subversion" |
| 201 | |
219 | |
| 202 | [[ -n "${revision}" ]] && options="${options} -r ${revision}" |
220 | [[ -n "${revision}" ]] && options="${options} -r ${revision}" |
| … | |
… | |
| 204 | if [[ "${ESVN_OPTIONS}" = *-r* ]]; then |
222 | if [[ "${ESVN_OPTIONS}" = *-r* ]]; then |
| 205 | ewarn "\${ESVN_OPTIONS} contains -r, this usage is unsupported. Please" |
223 | ewarn "\${ESVN_OPTIONS} contains -r, this usage is unsupported. Please" |
| 206 | ewarn "see \${ESVN_REPO_URI}" |
224 | ewarn "see \${ESVN_REPO_URI}" |
| 207 | fi |
225 | fi |
| 208 | |
226 | |
|
|
227 | if has_version ">=dev-vcs/subversion-1.6.0"; then |
|
|
228 | options="${options} --config-option=config:auth:password-stores=" |
|
|
229 | fi |
|
|
230 | |
| 209 | debug-print "${FUNCNAME}: wc_path = \"${wc_path}\"" |
231 | debug-print "${FUNCNAME}: wc_path = \"${wc_path}\"" |
| 210 | debug-print "${FUNCNAME}: ESVN_OPTIONS = \"${ESVN_OPTIONS}\"" |
232 | debug-print "${FUNCNAME}: ESVN_OPTIONS = \"${ESVN_OPTIONS}\"" |
| 211 | debug-print "${FUNCNAME}: options = \"${options}\"" |
233 | debug-print "${FUNCNAME}: options = \"${options}\"" |
| 212 | |
234 | |
| 213 | if [[ ! -d ${wc_path}/.svn ]]; then |
235 | if [[ ! -d ${wc_path}/.svn ]]; then |
| 214 | if [[ -n ${ESVN_OFFLINE} ]]; then |
236 | if [[ -n ${ESVN_OFFLINE} ]]; then |
| 215 | ewarn "ESVN_OFFLINE cannot be used when the there is no existing checkout." |
237 | ewarn "ESVN_OFFLINE cannot be used when there is no existing checkout." |
| 216 | fi |
238 | fi |
| 217 | # first check out |
239 | # first check out |
| 218 | einfo "subversion check out start -->" |
240 | einfo "subversion check out start -->" |
| 219 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
241 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
| 220 | |
242 | |
| 221 | debug-print "${FUNCNAME}: ${ESVN_FETCH_CMD} ${options} ${repo_uri}" |
243 | debug-print "${FUNCNAME}: ${ESVN_FETCH_CMD} ${options} ${repo_uri}" |
| 222 | |
244 | |
| 223 | mkdir -p "${ESVN_PROJECT}" || die "${ESVN}: can't mkdir ${ESVN_PROJECT}." |
245 | 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}" |
246 | cd "${ESVN_PROJECT}" || die "${ESVN}: can't chdir to ${ESVN_PROJECT}" |
|
|
247 | if [[ -n "${ESVN_USER}" ]]; then |
|
|
248 | ${ESVN_FETCH_CMD} ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" "${repo_uri}" || die "${ESVN}: can't fetch to ${wc_path} from ${repo_uri}." |
|
|
249 | else |
| 225 | ${ESVN_FETCH_CMD} ${options} "${repo_uri}" || die "${ESVN}: can't fetch to ${wc_path} from ${repo_uri}." |
250 | ${ESVN_FETCH_CMD} ${options} "${repo_uri}" || die "${ESVN}: can't fetch to ${wc_path} from ${repo_uri}." |
|
|
251 | fi |
| 226 | |
252 | |
| 227 | elif [[ -n ${ESVN_OFFLINE} ]]; then |
253 | elif [[ -n ${ESVN_OFFLINE} ]]; then |
|
|
254 | svn upgrade "${wc_path}" &>/dev/null |
|
|
255 | svn cleanup "${wc_path}" &>/dev/null |
| 228 | subversion_wc_info "${repo_uri}" || die "${ESVN}: unknown problem occurred while accessing working copy." |
256 | subversion_wc_info "${repo_uri}" || die "${ESVN}: unknown problem occurred while accessing working copy." |
|
|
257 | |
| 229 | if [[ -n ${ESVN_REVISION} && ${ESVN_REVISION} != ${ESVN_WC_REVISION} ]]; then |
258 | 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." |
259 | die "${ESVN}: You requested off-line updating and revision ${ESVN_REVISION} but only revision ${ESVN_WC_REVISION} is available locally." |
| 231 | fi |
260 | fi |
| 232 | einfo "Fetching disabled: Using existing repository copy at revision ${ESVN_WC_REVISION}." |
261 | einfo "Fetching disabled: Using existing repository copy at revision ${ESVN_WC_REVISION}." |
| 233 | else |
262 | else |
|
|
263 | svn upgrade "${wc_path}" &>/dev/null |
|
|
264 | svn cleanup "${wc_path}" &>/dev/null |
| 234 | subversion_wc_info "${repo_uri}" || die "${ESVN}: unknown problem occurred while accessing working copy." |
265 | subversion_wc_info "${repo_uri}" || die "${ESVN}: unknown problem occurred while accessing working copy." |
| 235 | |
266 | |
| 236 | local esvn_up_freq= |
267 | local esvn_up_freq= |
| 237 | if [[ -n ${ESVN_UP_FREQ} ]]; then |
268 | if [[ -n ${ESVN_UP_FREQ} ]]; then |
| 238 | if [[ -n ${ESVN_UP_FREQ//[[:digit:]]} ]]; then |
269 | if [[ -n ${ESVN_UP_FREQ//[[:digit:]]} ]]; then |
| … | |
… | |
| 243 | esvn_up_freq=no_update |
274 | esvn_up_freq=no_update |
| 244 | fi |
275 | fi |
| 245 | fi |
276 | fi |
| 246 | |
277 | |
| 247 | if [[ -z ${esvn_up_freq} ]]; then |
278 | if [[ -z ${esvn_up_freq} ]]; then |
|
|
279 | if [[ ${ESVN_WC_UUID} != $(subversion__svn_info "${repo_uri}" "Repository UUID") ]]; then |
|
|
280 | # UUID mismatch. Delete working copy and check out it again. |
|
|
281 | einfo "subversion recheck out start -->" |
|
|
282 | einfo " old UUID: ${ESVN_WC_UUID}" |
|
|
283 | einfo " new UUID: $(subversion__svn_info "${repo_uri}" "Repository UUID")" |
|
|
284 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
|
|
285 | |
|
|
286 | rm -fr "${ESVN_PROJECT}" || die |
|
|
287 | |
|
|
288 | debug-print "${FUNCNAME}: ${ESVN_FETCH_CMD} ${options} ${repo_uri}" |
|
|
289 | |
|
|
290 | mkdir -m 775 -p "${ESVN_PROJECT}" || die "${ESVN}: can't mkdir ${ESVN_PROJECT}." |
|
|
291 | cd "${ESVN_PROJECT}" || die "${ESVN}: can't chdir to ${ESVN_PROJECT}" |
|
|
292 | if [[ -n "${ESVN_USER}" ]]; then |
|
|
293 | ${ESVN_FETCH_CMD} ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" "${repo_uri}" || die "${ESVN}: can't fetch to ${wc_path} from ${repo_uri}." |
|
|
294 | else |
|
|
295 | ${ESVN_FETCH_CMD} ${options} "${repo_uri}" || die "${ESVN}: can't fetch to ${wc_path} from ${repo_uri}." |
|
|
296 | fi |
| 248 | if [[ ${ESVN_WC_URL} != $(subversion__get_repository_uri "${repo_uri}") ]]; then |
297 | elif [[ ${ESVN_WC_URL} != $(subversion__get_repository_uri "${repo_uri}") ]]; then |
| 249 | einfo "subversion switch start -->" |
298 | einfo "subversion switch start -->" |
| 250 | einfo " old repository: ${ESVN_WC_URL}@${ESVN_WC_REVISION}" |
299 | einfo " old repository: ${ESVN_WC_URL}@${ESVN_WC_REVISION}" |
| 251 | einfo " new repository: ${repo_uri}${revision:+@}${revision}" |
300 | einfo " new repository: ${repo_uri}${revision:+@}${revision}" |
| 252 | |
301 | |
| 253 | debug-print "${FUNCNAME}: ${ESVN_SWITCH_CMD} ${options} ${repo_uri}" |
302 | debug-print "${FUNCNAME}: ${ESVN_SWITCH_CMD} ${options} ${repo_uri}" |
| 254 | |
303 | |
| 255 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
304 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
|
|
305 | if [[ -n "${ESVN_USER}" ]]; then |
|
|
306 | ${ESVN_SWITCH_CMD} ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" ${repo_uri} || die "${ESVN}: can't update ${wc_path} from ${repo_uri}." |
|
|
307 | else |
| 256 | ${ESVN_SWITCH_CMD} ${options} ${repo_uri} || die "${ESVN}: can't update ${wc_path} from ${repo_uri}" |
308 | ${ESVN_SWITCH_CMD} ${options} ${repo_uri} || die "${ESVN}: can't update ${wc_path} from ${repo_uri}." |
|
|
309 | fi |
| 257 | else |
310 | else |
| 258 | # update working copy |
311 | # update working copy |
| 259 | einfo "subversion update start -->" |
312 | einfo "subversion update start -->" |
| 260 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
313 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
| 261 | |
314 | |
| 262 | debug-print "${FUNCNAME}: ${ESVN_UPDATE_CMD} ${options}" |
315 | debug-print "${FUNCNAME}: ${ESVN_UPDATE_CMD} ${options}" |
| 263 | |
316 | |
| 264 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
317 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
|
|
318 | if [[ -n "${ESVN_USER}" ]]; then |
|
|
319 | ${ESVN_UPDATE_CMD} ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" || die "${ESVN}: can't update ${wc_path} from ${repo_uri}." |
|
|
320 | else |
| 265 | ${ESVN_UPDATE_CMD} ${options} || die "${ESVN}: can't update ${wc_path} from ${repo_uri}." |
321 | ${ESVN_UPDATE_CMD} ${options} || die "${ESVN}: can't update ${wc_path} from ${repo_uri}." |
|
|
322 | fi |
| 266 | fi |
323 | fi |
| 267 | fi |
324 | fi |
|
|
325 | fi |
|
|
326 | |
|
|
327 | if [[ -n "${ESVN_UMASK}" ]]; then |
|
|
328 | eumask_pop |
| 268 | fi |
329 | fi |
| 269 | |
330 | |
| 270 | einfo " working copy: ${wc_path}" |
331 | einfo " working copy: ${wc_path}" |
| 271 | |
332 | |
| 272 | if ! has "export" ${ESVN_RESTRICT}; then |
333 | if ! has "export" ${ESVN_RESTRICT}; then |
| 273 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
334 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
| 274 | |
335 | |
| 275 | local S="${S}/${S_dest}" |
336 | local S="${S}/${S_dest}" |
|
|
337 | mkdir -p "${S}" |
| 276 | |
338 | |
| 277 | # export to the ${WORKDIR} |
339 | # export to the ${WORKDIR} |
| 278 | #* "svn export" has a bug. see http://bugs.gentoo.org/119236 |
340 | #* "svn export" has a bug. see http://bugs.gentoo.org/119236 |
| 279 | #* svn export . "${S}" || die "${ESVN}: can't export to ${S}." |
341 | #* svn export . "${S}" || die "${ESVN}: can't export to ${S}." |
| 280 | rsync -rlpgo --exclude=".svn/" . "${S}" || die "${ESVN}: can't export to ${S}." |
342 | rsync -rlpgo --exclude=".svn/" . "${S}" || die "${ESVN}: can't export to ${S}." |
| 281 | fi |
343 | fi |
| 282 | |
344 | |
|
|
345 | popd >/dev/null |
| 283 | echo |
346 | echo |
| 284 | } |
347 | } |
| 285 | |
348 | |
| 286 | # @FUNCTION: subversion_bootstrap |
349 | # @FUNCTION: subversion_bootstrap |
| 287 | # @DESCRIPTION: |
350 | # @DESCRIPTION: |
| … | |
… | |
| 292 | fi |
355 | fi |
| 293 | |
356 | |
| 294 | cd "${S}" |
357 | cd "${S}" |
| 295 | |
358 | |
| 296 | if [[ -n ${ESVN_PATCHES} ]]; then |
359 | if [[ -n ${ESVN_PATCHES} ]]; then |
|
|
360 | local patch fpatch |
| 297 | einfo "apply patches -->" |
361 | einfo "apply patches -->" |
| 298 | |
|
|
| 299 | local patch fpatch |
|
|
| 300 | |
|
|
| 301 | for patch in ${ESVN_PATCHES}; do |
362 | for patch in ${ESVN_PATCHES}; do |
| 302 | if [[ -f ${patch} ]]; then |
363 | if [[ -f ${patch} ]]; then |
| 303 | epatch "${patch}" |
364 | epatch "${patch}" |
| 304 | |
|
|
| 305 | else |
365 | else |
| 306 | for fpatch in ${FILESDIR}/${patch}; do |
366 | for fpatch in ${FILESDIR}/${patch}; do |
| 307 | if [[ -f ${fpatch} ]]; then |
367 | if [[ -f ${fpatch} ]]; then |
| 308 | epatch "${fpatch}" |
368 | epatch "${fpatch}" |
| 309 | |
|
|
| 310 | else |
369 | else |
| 311 | die "${ESVN}: ${patch} not found" |
370 | die "${ESVN}: ${patch} not found" |
| 312 | |
|
|
| 313 | fi |
371 | fi |
| 314 | done |
372 | done |
| 315 | |
|
|
| 316 | fi |
373 | fi |
| 317 | done |
374 | done |
| 318 | |
|
|
| 319 | echo |
375 | echo |
| 320 | fi |
376 | fi |
| 321 | |
377 | |
| 322 | if [[ -n ${ESVN_BOOTSTRAP} ]]; then |
378 | if [[ -n ${ESVN_BOOTSTRAP} ]]; then |
| 323 | einfo "begin bootstrap -->" |
379 | einfo "begin bootstrap -->" |
| 324 | |
|
|
| 325 | if [[ -f ${ESVN_BOOTSTRAP} && -x ${ESVN_BOOTSTRAP} ]]; then |
380 | if [[ -f ${ESVN_BOOTSTRAP} && -x ${ESVN_BOOTSTRAP} ]]; then |
| 326 | einfo " bootstrap with a file: ${ESVN_BOOTSTRAP}" |
381 | einfo " bootstrap with a file: ${ESVN_BOOTSTRAP}" |
| 327 | eval "./${ESVN_BOOTSTRAP}" || die "${ESVN}: can't execute ESVN_BOOTSTRAP." |
382 | eval "./${ESVN_BOOTSTRAP}" || die "${ESVN}: can't execute ESVN_BOOTSTRAP." |
| 328 | |
|
|
| 329 | else |
383 | else |
| 330 | einfo " bootstrap with command: ${ESVN_BOOTSTRAP}" |
384 | einfo " bootstrap with command: ${ESVN_BOOTSTRAP}" |
| 331 | eval "${ESVN_BOOTSTRAP}" || die "${ESVN}: can't eval ESVN_BOOTSTRAP." |
385 | eval "${ESVN_BOOTSTRAP}" || die "${ESVN}: can't eval ESVN_BOOTSTRAP." |
| 332 | |
|
|
| 333 | fi |
|
|
| 334 | fi |
386 | fi |
| 335 | } |
387 | 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 | } |
388 | } |
| 344 | |
389 | |
| 345 | # @FUNCTION: subversion_wc_info |
390 | # @FUNCTION: subversion_wc_info |
| 346 | # @USAGE: [repo_uri] |
391 | # @USAGE: [repo_uri] |
| 347 | # @RETURN: ESVN_WC_URL, ESVN_WC_ROOT, ESVN_WC_UUID, ESVN_WC_REVISION and ESVN_WC_PATH |
392 | # @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")" |
411 | export ESVN_WC_UUID="$(subversion__svn_info "${wc_path}" "Repository UUID")" |
| 367 | export ESVN_WC_REVISION="$(subversion__svn_info "${wc_path}" "Revision")" |
412 | export ESVN_WC_REVISION="$(subversion__svn_info "${wc_path}" "Revision")" |
| 368 | export ESVN_WC_PATH="${wc_path}" |
413 | export ESVN_WC_PATH="${wc_path}" |
| 369 | } |
414 | } |
| 370 | |
415 | |
| 371 | ## -- Private Functions |
416 | # @FUNCTION: subversion_src_unpack |
| 372 | |
417 | # @DESCRIPTION: |
| 373 | ## -- subversion__svn_info() ------------------------------------------------- # |
418 | # Default src_unpack. Fetch and, in older EAPIs, bootstrap. |
| 374 | # |
419 | subversion_src_unpack() { |
| 375 | # param $1 - a target. |
420 | subversion_fetch || die "${ESVN}: unknown problem occurred in subversion_fetch." |
| 376 | # param $2 - a key name. |
421 | if has "${EAPI:-0}" 0 1; then |
| 377 | # |
422 | 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 |
423 | 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 | } |
424 | } |
| 406 | |
425 | |
| 407 | ## -- subversion__get_wc_path() ---------------------------------------------- # |
426 | # @FUNCTION: subversion_src_prepare |
| 408 | # |
427 | # @DESCRIPTION: |
| 409 | # param $1 - a repository URI. |
428 | # Default src_prepare. Bootstrap. |
| 410 | subversion__get_wc_path() { |
429 | subversion_src_prepare() { |
| 411 | local repo_uri="$(subversion__get_repository_uri "${1}")" |
430 | 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 | } |
431 | } |
| 438 | |
432 | |
| 439 | # @FUNCTION: subversion_pkg_preinst |
433 | # @FUNCTION: subversion_pkg_preinst |
| 440 | # @USAGE: [repo_uri] |
434 | # @USAGE: [repo_uri] |
| 441 | # @DESCRIPTION: |
435 | # @DESCRIPTION: |
| 442 | # Log the svn revision of source code. Doing this in pkg_preinst because we |
436 | # 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 |
437 | # want the logs to stick around if packages are uninstalled without messing with |
| 444 | # config protection. |
438 | # config protection. |
| 445 | subversion_pkg_preinst() { |
439 | subversion_pkg_preinst() { |
| 446 | local pkgdate=$(date "+%Y%m%d %H:%M:%S") |
440 | local pkgdate=$(date "+%Y%m%d %H:%M:%S") |
| 447 | subversion_wc_info "${1:-${ESVN_REPO_URI}}" |
441 | subversion_wc_info "${1}" |
| 448 | if [[ -n ${ESCM_LOGDIR} ]]; then |
442 | if [[ -n ${ESCM_LOGDIR} ]]; then |
| 449 | local dir="${ROOT}/${ESCM_LOGDIR}/${CATEGORY}" |
443 | local dir="${ROOT}/${ESCM_LOGDIR}/${CATEGORY}" |
| 450 | if [[ ! -d ${dir} ]]; then |
444 | if [[ ! -d ${dir} ]]; then |
| 451 | mkdir -p "${dir}" || \ |
445 | 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 |
446 | fi |
| 454 | local logmessage="svn: ${pkgdate} - ${PF}:${SLOT} was merged at revision ${ESVN_WC_REVISION}" |
447 | local logmessage="svn: ${pkgdate} - ${PF}:${SLOT} was merged at revision ${ESVN_WC_REVISION}" |
| 455 | if [[ -d ${dir} ]]; then |
448 | if [[ -d ${dir} ]]; then |
| 456 | echo "${logmessage}" >> "${dir}/${PN}.log" |
449 | echo "${logmessage}" >>"${dir}/${PN}.log" |
| 457 | else |
450 | else |
| 458 | eerror "Could not log the message '${logmessage}' to '${dir}/${PN}.log'" |
451 | eerror "Could not log the message '${logmessage}' to '${dir}/${PN}.log'" |
| 459 | fi |
452 | fi |
| 460 | fi |
453 | fi |
| 461 | } |
454 | } |
|
|
455 | |
|
|
456 | ## -- Private Functions |
|
|
457 | |
|
|
458 | ## -- subversion__svn_info() ------------------------------------------------- # |
|
|
459 | # |
|
|
460 | # param $1 - a target. |
|
|
461 | # param $2 - a key name. |
|
|
462 | # |
|
|
463 | subversion__svn_info() { |
|
|
464 | local target="${1}" |
|
|
465 | local key="${2}" |
|
|
466 | |
|
|
467 | env LC_ALL=C svn info ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" "${target}" \ |
|
|
468 | | grep -i "^${key}" \ |
|
|
469 | | cut -d" " -f2- |
|
|
470 | } |
|
|
471 | |
|
|
472 | ## -- subversion__get_repository_uri() --------------------------------------- # |
|
|
473 | # |
|
|
474 | # param $1 - a repository URI. |
|
|
475 | subversion__get_repository_uri() { |
|
|
476 | local repo_uri="${1}" |
|
|
477 | |
|
|
478 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
479 | if [[ -z ${repo_uri} ]]; then |
|
|
480 | die "${ESVN}: ESVN_REPO_URI (or specified URI) is empty." |
|
|
481 | fi |
|
|
482 | # delete trailing slash |
|
|
483 | if [[ -z ${repo_uri##*/} ]]; then |
|
|
484 | repo_uri="${repo_uri%/}" |
|
|
485 | fi |
|
|
486 | repo_uri="${repo_uri%@*}" |
|
|
487 | |
|
|
488 | echo "${repo_uri}" |
|
|
489 | } |
|
|
490 | |
|
|
491 | ## -- subversion__get_wc_path() ---------------------------------------------- # |
|
|
492 | # |
|
|
493 | # param $1 - a repository URI. |
|
|
494 | subversion__get_wc_path() { |
|
|
495 | local repo_uri="$(subversion__get_repository_uri "${1}")" |
|
|
496 | |
|
|
497 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
498 | |
|
|
499 | echo "${ESVN_STORE_DIR}/${ESVN_PROJECT}/${repo_uri##*/}" |
|
|
500 | } |
|
|
501 | |
|
|
502 | ## -- subversion__get_peg_revision() ----------------------------------------- # |
|
|
503 | # |
|
|
504 | # param $1 - a repository URI. |
|
|
505 | subversion__get_peg_revision() { |
|
|
506 | local repo_uri="${1}" |
|
|
507 | local peg_rev= |
|
|
508 | |
|
|
509 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
510 | # repo_uri has peg revision? |
|
|
511 | if [[ ${repo_uri} = *@* ]]; then |
|
|
512 | peg_rev="${repo_uri##*@}" |
|
|
513 | debug-print "${FUNCNAME}: peg_rev = ${peg_rev}" |
|
|
514 | else |
|
|
515 | debug-print "${FUNCNAME}: repo_uri does not have a peg revision." |
|
|
516 | fi |
|
|
517 | |
|
|
518 | echo "${peg_rev}" |
|
|
519 | } |