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