| 1 | # Copyright 1999-2007 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.44 2007/07/03 08:27:40 peper Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/subversion.eclass,v 1.66 2009/04/29 22:47:08 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 | DESCRIPTION="Based on the ${ECLASS} eclass" |
30 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 25 | |
31 | |
| 26 | |
|
|
| 27 | ## -- add subversion in DEPEND |
|
|
| 28 | # |
|
|
| 29 | DEPEND="dev-util/subversion" |
32 | DEPEND="dev-util/subversion |
|
|
33 | net-misc/rsync" |
| 30 | |
34 | |
| 31 | |
35 | # @ECLASS-VARIABLE: ESVN_STORE_DIR |
| 32 | ## -- ESVN_STORE_DIR: subversion sources store directory |
36 | # @DESCRIPTION: |
| 33 | # |
37 | # subversion sources store directory. Users may override this in /etc/make.conf |
| 34 | ESVN_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/svn-src" |
38 | [[ -z ${ESVN_STORE_DIR} ]] && ESVN_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}/svn-src" |
| 35 | |
39 | |
| 36 | |
40 | # @ECLASS-VARIABLE: ESVN_FETCH_CMD |
| 37 | ## -- ESVN_FETCH_CMD: subversion fetch command |
41 | # @DESCRIPTION: |
| 38 | # |
42 | # subversion checkout command |
| 39 | ESVN_FETCH_CMD="svn checkout" |
43 | ESVN_FETCH_CMD="svn checkout" |
| 40 | |
44 | |
| 41 | ## -- ESVN_UPDATE_CMD: subversion update command |
45 | # @ECLASS-VARIABLE: ESVN_UPDATE_CMD |
| 42 | # |
46 | # @DESCRIPTION: |
|
|
47 | # subversion update command |
| 43 | ESVN_UPDATE_CMD="svn update" |
48 | ESVN_UPDATE_CMD="svn update" |
| 44 | |
49 | |
|
|
50 | # @ECLASS-VARIABLE: ESVN_SWITCH_CMD |
|
|
51 | # @DESCRIPTION: |
|
|
52 | # subversion switch command |
|
|
53 | ESVN_SWITCH_CMD="svn switch" |
| 45 | |
54 | |
| 46 | ## -- ESVN_OPTIONS: |
55 | # @ECLASS-VARIABLE: ESVN_OPTIONS |
| 47 | # |
56 | # @DESCRIPTION: |
| 48 | # the options passed to checkout or update. |
57 | # the options passed to checkout or update. If you want a specific revision see |
| 49 | # |
58 | # ESVN_REPO_URI instead of using -rREV. |
| 50 | : ${ESVN_OPTIONS=} |
59 | ESVN_OPTIONS="${ESVN_OPTIONS:-}" |
| 51 | |
60 | |
| 52 | |
61 | # @ECLASS-VARIABLE: ESVN_REPO_URI |
| 53 | ## -- ESVN_REPO_URI: repository uri |
62 | # @DESCRIPTION: |
|
|
63 | # repository uri |
| 54 | # |
64 | # |
| 55 | # e.g. http://foo/trunk, svn://bar/trunk |
65 | # e.g. http://foo/trunk, svn://bar/trunk, svn://bar/branch/foo@1234 |
| 56 | # |
66 | # |
| 57 | # supported protocols: |
67 | # supported protocols: |
| 58 | # http:// |
68 | # http:// |
| 59 | # https:// |
69 | # https:// |
| 60 | # svn:// |
70 | # svn:// |
| 61 | # svn+ssh:// |
71 | # svn+ssh:// |
| 62 | # |
72 | # |
| 63 | : ${ESVN_REPO_URI=} |
73 | # to peg to a specific revision, append @REV to the repo's uri |
|
|
74 | ESVN_REPO_URI="${ESVN_REPO_URI:-}" |
| 64 | |
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:-}" |
| 65 | |
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: |
| 66 | ## -- ESVN_PROJECT: project name of your ebuild (= name space) |
98 | # project name of your ebuild (= name space) |
| 67 | # |
99 | # |
| 68 | # subversion eclass will check out the subversion repository like: |
100 | # subversion eclass will check out the subversion repository like: |
| 69 | # |
101 | # |
| 70 | # ${ESVN_STORE_DIR}/${ESVN_PROJECT}/${ESVN_REPO_URI##*/} |
102 | # ${ESVN_STORE_DIR}/${ESVN_PROJECT}/${ESVN_REPO_URI##*/} |
| 71 | # |
103 | # |
| … | |
… | |
| 80 | # |
112 | # |
| 81 | # # jakarta commons-loggin |
113 | # # jakarta commons-loggin |
| 82 | # ESVN_PROJECT=commons/logging |
114 | # ESVN_PROJECT=commons/logging |
| 83 | # |
115 | # |
| 84 | # default: ${PN/-svn}. |
116 | # default: ${PN/-svn}. |
| 85 | # |
117 | ESVN_PROJECT="${ESVN_PROJECT:-${PN/-svn}}" |
| 86 | : ${ESVN_PROJECT:=${PN/-svn}} |
|
|
| 87 | |
118 | |
| 88 | |
119 | # @ECLASS-VARIABLE: ESVN_BOOTSTRAP |
| 89 | ## -- ESVN_BOOTSTRAP: |
120 | # @DESCRIPTION: |
| 90 | # |
|
|
| 91 | # bootstrap script or command like autogen.sh or etc.. |
121 | # bootstrap script or command like autogen.sh or etc.. |
| 92 | # |
122 | ESVN_BOOTSTRAP="${ESVN_BOOTSTRAP:-}" |
| 93 | : ${ESVN_BOOTSTRAP=} |
|
|
| 94 | |
123 | |
| 95 | |
124 | # @ECLASS-VARIABLE: ESVN_PATCHES |
| 96 | ## -- ESVN_PATCHES: |
125 | # @DESCRIPTION: |
| 97 | # |
|
|
| 98 | # subversion eclass can apply pathces in subversion_bootstrap(). |
126 | # subversion eclass can apply patches in subversion_bootstrap(). |
| 99 | # you can use regexp in this variable like *.diff or *.patch or etc. |
127 | # you can use regexp in this variable like *.diff or *.patch or etc. |
| 100 | # NOTE: patches will be applied before ESVN_BOOTSTRAP is processed. |
128 | # NOTE: patches will be applied before ESVN_BOOTSTRAP is processed. |
| 101 | # |
129 | # |
| 102 | # Patches are searched both in / and ${FILESDIR}, if not found in both locations, |
130 | # Patches are searched both in ${PWD} and ${FILESDIR}, if not found in either |
| 103 | # the installation dies. |
131 | # location, the installation dies. |
| 104 | # |
132 | ESVN_PATCHES="${ESVN_PATCHES:-}" |
| 105 | : ${ESVN_PATCHES=} |
|
|
| 106 | |
133 | |
| 107 | |
134 | # @ECLASS-VARIABLE: ESVN_RESTRICT |
| 108 | ## -- ESVN_RESTRICT: |
135 | # @DESCRIPTION: |
| 109 | # |
|
|
| 110 | # this should be a space delimited list of subversion eclass features to |
136 | # this should be a space delimited list of subversion eclass features to |
| 111 | # restrict. |
137 | # restrict. |
| 112 | # export) |
138 | # export) |
| 113 | # don't export the working copy to S. |
139 | # don't export the working copy to S. |
| 114 | # |
140 | ESVN_RESTRICT="${ESVN_RESTRICT:-}" |
| 115 | : ${ESVN_RESTRICT=} |
|
|
| 116 | |
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}}" |
| 117 | |
148 | |
| 118 | ## -- 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:=}" |
|
|
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}. |
| 119 | # |
169 | # |
|
|
170 | # Can take two optional parameters: |
| 120 | # @param $1 - a repository URI. default is the ESVN_REPO_URI. |
171 | # repo_uri - a repository URI. default is ESVN_REPO_URI. |
| 121 | # @param $2 - a check out path in S. |
172 | # destination - a check out path in S. |
| 122 | # |
|
|
| 123 | function subversion_fetch() { |
173 | subversion_fetch() { |
| 124 | local repo_uri="$(subversion__get_repository_uri "${1}")" |
174 | local repo_uri="$(subversion__get_repository_uri "${1:-${ESVN_REPO_URI}}")" |
|
|
175 | local revision="$(subversion__get_peg_revision "${1:-${ESVN_REPO_URI}}")" |
| 125 | local S_dest="${2}" |
176 | local S_dest="${2}" |
|
|
177 | |
|
|
178 | if [[ -z ${repo_uri} ]]; then |
|
|
179 | die "${ESVN}: ESVN_REPO_URI (or specified URI) is empty." |
|
|
180 | fi |
|
|
181 | |
|
|
182 | [[ -n "${ESVN_REVISION}" ]] && revision="${ESVN_REVISION}" |
| 126 | |
183 | |
| 127 | # check for the protocol |
184 | # check for the protocol |
| 128 | local protocol="${repo_uri%%:*}" |
185 | local protocol="${repo_uri%%:*}" |
| 129 | |
186 | |
| 130 | case "${protocol}" in |
187 | case "${protocol}" in |
| 131 | http|https) |
188 | http|https) |
|
|
189 | if ! built_with_use --missing true -o dev-util/subversion webdav-neon webdav-serf || \ |
| 132 | if built_with_use dev-util/subversion nowebdav; then |
190 | built_with_use --missing false dev-util/subversion nowebdav; then |
| 133 | echo |
191 | echo |
| 134 | eerror "In order to emerge this package, you need to" |
192 | eerror "In order to emerge this package, you need to" |
| 135 | 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." |
| 136 | echo |
195 | echo |
| 137 | die "${ESVN}: please run 'USE=-nowebdav emerge subversion'" |
196 | die "${ESVN}: reinstall Subversion with support for WebDAV." |
| 138 | fi |
197 | fi |
| 139 | ;; |
198 | ;; |
| 140 | svn|svn+ssh) |
199 | svn|svn+ssh) |
| 141 | ;; |
200 | ;; |
| 142 | *) |
201 | *) |
| 143 | die "${ESVN}: fetch from "${protocol}" is not yet implemented." |
202 | die "${ESVN}: fetch from '${protocol}' is not yet implemented." |
| 144 | ;; |
203 | ;; |
| 145 | esac |
204 | esac |
| 146 | |
205 | |
| 147 | addread "/etc/subversion" |
206 | addread "/etc/subversion" |
| 148 | addwrite "${ESVN_STORE_DIR}" |
207 | addwrite "${ESVN_STORE_DIR}" |
| 149 | |
208 | |
| 150 | if [[ ! -d "${ESVN_STORE_DIR}" ]]; then |
209 | if [[ ! -d ${ESVN_STORE_DIR} ]]; then |
| 151 | debug-print "${FUNCNAME}: initial checkout. creating subversion directory" |
210 | debug-print "${FUNCNAME}: initial checkout. creating subversion directory" |
| 152 | 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}." |
| 153 | fi |
212 | fi |
| 154 | |
213 | |
| 155 | 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}" |
| 156 | |
215 | |
| 157 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
216 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
| 158 | local options="${ESVN_OPTIONS} --config-dir ${ESVN_STORE_DIR}/.subversion" |
217 | local options="${ESVN_OPTIONS} --config-dir ${ESVN_STORE_DIR}/.subversion" |
|
|
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 |
| 159 | |
229 | |
| 160 | debug-print "${FUNCNAME}: wc_path = \"${wc_path}\"" |
230 | debug-print "${FUNCNAME}: wc_path = \"${wc_path}\"" |
| 161 | debug-print "${FUNCNAME}: ESVN_OPTIONS = \"${ESVN_OPTIONS}\"" |
231 | debug-print "${FUNCNAME}: ESVN_OPTIONS = \"${ESVN_OPTIONS}\"" |
| 162 | debug-print "${FUNCNAME}: options = \"${options}\"" |
232 | debug-print "${FUNCNAME}: options = \"${options}\"" |
| 163 | |
233 | |
| 164 | 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 |
| 165 | # first check out |
238 | # first check out |
| 166 | einfo "subversion check out start -->" |
239 | einfo "subversion check out start -->" |
| 167 | einfo " repository: ${repo_uri}" |
240 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
| 168 | |
241 | |
| 169 | debug-print "${FUNCNAME}: ${ESVN_FETCH_CMD} ${options} ${repo_uri}" |
242 | debug-print "${FUNCNAME}: ${ESVN_FETCH_CMD} ${options} ${repo_uri}" |
| 170 | |
243 | |
| 171 | mkdir -p "${ESVN_PROJECT}" || die "${ESVN}: can't mkdir ${ESVN_PROJECT}." |
244 | mkdir -p "${ESVN_PROJECT}" || die "${ESVN}: can't mkdir ${ESVN_PROJECT}." |
| 172 | cd "${ESVN_PROJECT}" || die "${ESVN}: can't chdir to ${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 |
| 173 | ${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 |
| 174 | |
251 | |
|
|
252 | elif [[ -n ${ESVN_OFFLINE} ]]; then |
|
|
253 | svn cleanup "${wc_path}" |
| 175 | subversion_wc_info "${repo_uri}" || die "${ESVN}: unknown problem occurred while accessing working copy." |
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}." |
| 176 | else |
259 | else |
|
|
260 | svn cleanup "${wc_path}" |
| 177 | subversion_wc_info "${repo_uri}" || die "${ESVN}: unknown problem occurred while accessing working copy." |
261 | subversion_wc_info "${repo_uri}" || die "${ESVN}: unknown problem occurred while accessing working copy." |
|
|
262 | |
|
|
263 | local esvn_up_freq= |
|
|
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 |
|
|
271 | fi |
|
|
272 | fi |
|
|
273 | |
|
|
274 | if [[ -z ${esvn_up_freq} ]]; then |
| 178 | if [ "${ESVN_WC_URL}" != "$(subversion__get_repository_uri "${repo_uri}" 1)" ]; then |
275 | if [[ ${ESVN_WC_URL} != $(subversion__get_repository_uri "${repo_uri}") ]]; then |
| 179 | die "${ESVN}: ESVN_REPO_URI (or specified URI) and working copy's URL are not matched." |
|
|
| 180 | fi |
|
|
| 181 | |
|
|
| 182 | # update working copy |
|
|
| 183 | einfo "subversion update start -->" |
276 | einfo "subversion switch start -->" |
| 184 | einfo " repository: ${repo_uri}" |
277 | einfo " old repository: ${ESVN_WC_URL}@${ESVN_WC_REVISION}" |
|
|
278 | einfo " new repository: ${repo_uri}${revision:+@}${revision}" |
| 185 | |
279 | |
| 186 | debug-print "${FUNCNAME}: ${ESVN_UPDATE_CMD} ${options}" |
280 | debug-print "${FUNCNAME}: ${ESVN_SWITCH_CMD} ${options} ${repo_uri}" |
| 187 | |
281 | |
| 188 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
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 |
|
|
289 | # update working copy |
|
|
290 | einfo "subversion update start -->" |
|
|
291 | einfo " repository: ${repo_uri}${revision:+@}${revision}" |
|
|
292 | |
|
|
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 |
| 189 | ${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}." |
|
|
300 | fi |
|
|
301 | fi |
|
|
302 | fi |
| 190 | fi |
303 | fi |
| 191 | |
304 | |
| 192 | einfo " working copy: ${wc_path}" |
305 | einfo " working copy: ${wc_path}" |
| 193 | |
306 | |
| 194 | if ! has "export" ${ESVN_RESTRICT}; then |
307 | if ! has "export" ${ESVN_RESTRICT}; then |
| 195 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
308 | cd "${wc_path}" || die "${ESVN}: can't chdir to ${wc_path}" |
| 196 | |
309 | |
| 197 | local S="${S}/${S_dest}" |
310 | local S="${S}/${S_dest}" |
|
|
311 | mkdir -p "${S}" |
| 198 | |
312 | |
| 199 | # export to the ${WORKDIR} |
313 | # export to the ${WORKDIR} |
| 200 | #* "svn export" has a bug. see http://bugs.gentoo.org/119236 |
314 | #* "svn export" has a bug. see http://bugs.gentoo.org/119236 |
| 201 | #* svn export . "${S}" || die "${ESVN}: can't export to ${S}." |
315 | #* svn export . "${S}" || die "${ESVN}: can't export to ${S}." |
| 202 | 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}." |
| 203 | fi |
317 | fi |
| 204 | |
318 | |
| 205 | echo |
319 | echo |
| 206 | } |
320 | } |
| 207 | |
321 | |
| 208 | |
322 | # @FUNCTION: subversion_bootstrap |
| 209 | ## -- subversion_bootstrap() ------------------------------------------------ # |
323 | # @DESCRIPTION: |
| 210 | # |
324 | # Apply patches in ${ESVN_PATCHES} and run ${ESVN_BOOTSTRAP} if specified. |
| 211 | function subversion_bootstrap() { |
325 | subversion_bootstrap() { |
| 212 | if has "export" ${ESVN_RESTRICT}; then |
326 | if has "export" ${ESVN_RESTRICT}; then |
| 213 | return |
327 | return |
| 214 | fi |
328 | fi |
| 215 | |
329 | |
| 216 | cd "${S}" |
330 | cd "${S}" |
| 217 | |
331 | |
| 218 | if [[ -n "${ESVN_PATCHES}" ]]; then |
332 | if [[ -n ${ESVN_PATCHES} ]]; then |
| 219 | einfo "apply patches -->" |
333 | einfo "apply patches -->" |
| 220 | |
334 | |
| 221 | local patch fpatch |
335 | local patch fpatch |
|
|
336 | |
| 222 | for patch in ${ESVN_PATCHES}; do |
337 | for patch in ${ESVN_PATCHES}; do |
| 223 | if [[ -f "${patch}" ]]; then |
338 | if [[ -f ${patch} ]]; then |
| 224 | epatch "${patch}" |
339 | epatch "${patch}" |
|
|
340 | |
| 225 | else |
341 | else |
| 226 | for fpatch in ${FILESDIR}/${patch}; do |
342 | for fpatch in ${FILESDIR}/${patch}; do |
| 227 | if [[ -f "${fpatch}" ]]; then |
343 | if [[ -f ${fpatch} ]]; then |
| 228 | epatch "${fpatch}" |
344 | epatch "${fpatch}" |
|
|
345 | |
| 229 | else |
346 | else |
| 230 | die "${ESVN}: ${patch} not found" |
347 | die "${ESVN}: ${patch} not found" |
|
|
348 | |
| 231 | fi |
349 | fi |
| 232 | done |
350 | done |
|
|
351 | |
| 233 | fi |
352 | fi |
| 234 | done |
353 | done |
|
|
354 | |
| 235 | echo |
355 | echo |
| 236 | fi |
356 | fi |
| 237 | |
357 | |
| 238 | if [[ -n "${ESVN_BOOTSTRAP}" ]]; then |
358 | if [[ -n ${ESVN_BOOTSTRAP} ]]; then |
| 239 | einfo "begin bootstrap -->" |
359 | einfo "begin bootstrap -->" |
| 240 | |
360 | |
| 241 | if [[ -f "${ESVN_BOOTSTRAP}" && -x "${ESVN_BOOTSTRAP}" ]]; then |
361 | if [[ -f ${ESVN_BOOTSTRAP} && -x ${ESVN_BOOTSTRAP} ]]; then |
| 242 | einfo " bootstrap with a file: ${ESVN_BOOTSTRAP}" |
362 | einfo " bootstrap with a file: ${ESVN_BOOTSTRAP}" |
| 243 | eval "./${ESVN_BOOTSTRAP}" || die "${ESVN}: can't execute ESVN_BOOTSTRAP." |
363 | eval "./${ESVN_BOOTSTRAP}" || die "${ESVN}: can't execute ESVN_BOOTSTRAP." |
|
|
364 | |
| 244 | else |
365 | else |
| 245 | einfo " bootstrap with command: ${ESVN_BOOTSTRAP}" |
366 | einfo " bootstrap with command: ${ESVN_BOOTSTRAP}" |
| 246 | eval "${ESVN_BOOTSTRAP}" || die "${ESVN}: can't eval ESVN_BOOTSTRAP." |
367 | eval "${ESVN_BOOTSTRAP}" || die "${ESVN}: can't eval ESVN_BOOTSTRAP." |
| 247 | fi |
368 | |
| 248 | fi |
369 | fi |
|
|
370 | fi |
| 249 | } |
371 | } |
| 250 | |
372 | |
| 251 | ## -- subversion_src_unpack() ------------------------------------------------ # |
373 | # @FUNCTION: subversion_src_unpack |
| 252 | # |
374 | # @DESCRIPTION: |
|
|
375 | # Default src_unpack. Fetch and, in older EAPIs, bootstrap. |
| 253 | function subversion_src_unpack() { |
376 | subversion_src_unpack() { |
| 254 | 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} || subversion_src_prepare |
|
|
379 | } |
|
|
380 | |
|
|
381 | # @FUNCTION: subversion_src_prepare |
|
|
382 | # @DESCRIPTION: |
|
|
383 | # Default src_prepare. Bootstrap. |
|
|
384 | subversion_src_prepare() { |
| 255 | subversion_bootstrap || die "${ESVN}: unknown problem occurred in subversion_bootstrap." |
385 | subversion_bootstrap || die "${ESVN}: unknown problem occurred in subversion_bootstrap." |
| 256 | } |
386 | } |
| 257 | |
387 | |
| 258 | |
388 | # @FUNCTION: subversion_wc_info |
| 259 | ## -- 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. |
| 260 | # |
393 | # |
| 261 | # @param $1 - repository URI. default is ESVN_REPO_URI. |
394 | # The working copy information on the specified repository URI are set to |
| 262 | # |
395 | # ESVN_WC_* variables. |
| 263 | function subversion_wc_info() { |
396 | subversion_wc_info() { |
| 264 | local repo_uri="$(subversion__get_repository_uri "${1}")" |
397 | local repo_uri="$(subversion__get_repository_uri "${1:-${ESVN_REPO_URI}}")" |
| 265 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
398 | local wc_path="$(subversion__get_wc_path "${repo_uri}")" |
| 266 | |
399 | |
| 267 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
400 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
| 268 | debug-print "${FUNCNAME}: wc_path = ${wc_path}" |
401 | debug-print "${FUNCNAME}: wc_path = ${wc_path}" |
| 269 | |
402 | |
| 270 | if [[ ! -e "${wc_path}" ]]; then |
403 | if [[ ! -d ${wc_path} ]]; then |
| 271 | return 1 |
404 | return 1 |
| 272 | fi |
405 | fi |
| 273 | |
406 | |
| 274 | local k |
407 | export ESVN_WC_URL="$(subversion__svn_info "${wc_path}" "URL")" |
| 275 | for k in url revision; do |
408 | export ESVN_WC_ROOT="$(subversion__svn_info "${wc_path}" "Repository Root")" |
| 276 | export ESVN_WC_$(subversion__to_upper_case "${k}")="$(subversion__svn_info "${wc_path}" "${k}")" |
409 | export ESVN_WC_UUID="$(subversion__svn_info "${wc_path}" "Repository UUID")" |
| 277 | done |
410 | export ESVN_WC_REVISION="$(subversion__svn_info "${wc_path}" "Revision")" |
|
|
411 | export ESVN_WC_PATH="${wc_path}" |
| 278 | } |
412 | } |
| 279 | |
413 | |
| 280 | ## -- Private Functions |
414 | ## -- Private Functions |
| 281 | |
415 | |
| 282 | |
|
|
| 283 | ## -- subversion__svn_info() ------------------------------------------------- # |
416 | ## -- subversion__svn_info() ------------------------------------------------- # |
| 284 | # |
417 | # |
| 285 | # @param $1 - a target. |
418 | # param $1 - a target. |
| 286 | # @param $2 - a key name. |
419 | # param $2 - a key name. |
| 287 | # |
420 | # |
| 288 | function subversion__svn_info() { |
421 | subversion__svn_info() { |
| 289 | local target="${1}" |
422 | local target="${1}" |
| 290 | local key="${2}" |
423 | local key="${2}" |
| 291 | |
424 | |
| 292 | env LC_ALL=C svn info "${target}" | grep -i "^${key}" | cut -d" " -f2- |
425 | env LC_ALL=C svn info "${target}" | grep -i "^${key}" | cut -d" " -f2- |
| 293 | } |
426 | } |
| 294 | |
427 | |
| 295 | |
|
|
| 296 | ## -- subversion__get_repository_uri() --------------------------------------- # |
428 | ## -- subversion__get_repository_uri() --------------------------------------- # |
| 297 | # |
429 | # |
| 298 | # @param $1 - a repository URI. |
430 | # param $1 - a repository URI. |
| 299 | # @param $2 - a peg revision is deleted from a return value if this is |
|
|
| 300 | # specified. |
|
|
| 301 | # |
|
|
| 302 | function subversion__get_repository_uri() { |
431 | subversion__get_repository_uri() { |
| 303 | local repo_uri="${1:-${ESVN_REPO_URI}}" |
432 | local repo_uri="${1}" |
| 304 | local remove_peg_revision="${2}" |
|
|
| 305 | |
433 | |
| 306 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
434 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
| 307 | debug-print "${FUNCNAME}: remove_peg_revision = ${remove_peg_revision}" |
|
|
| 308 | |
435 | |
| 309 | if [[ -z "${repo_uri}" ]]; then |
436 | if [[ -z ${repo_uri} ]]; then |
| 310 | die "${ESVN}: ESVN_REPO_URI (or specified URI) is empty." |
437 | die "${ESVN}: ESVN_REPO_URI (or specified URI) is empty." |
| 311 | fi |
438 | fi |
| 312 | |
439 | |
| 313 | # delete trailing slash |
440 | # delete trailing slash |
| 314 | if [[ -z "${repo_uri##*/}" ]]; then |
441 | if [[ -z ${repo_uri##*/} ]]; then |
| 315 | repo_uri="${repo_uri%/}" |
442 | repo_uri="${repo_uri%/}" |
| 316 | fi |
443 | fi |
| 317 | |
444 | |
| 318 | if [[ -n "${remove_peg_revision}" ]]; then |
|
|
| 319 | if subversion__has_peg_revision "${repo_uri}"; then |
|
|
| 320 | repo_uri="${repo_uri%@*}" |
445 | repo_uri="${repo_uri%@*}" |
| 321 | |
|
|
| 322 | debug-print "${FUNCNAME}: repo_uri has a peg revision" |
|
|
| 323 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
|
|
| 324 | fi |
|
|
| 325 | fi |
|
|
| 326 | |
446 | |
| 327 | echo "${repo_uri}" |
447 | echo "${repo_uri}" |
| 328 | } |
448 | } |
| 329 | |
449 | |
| 330 | |
|
|
| 331 | ## -- subversion__get_wc_path() ---------------------------------------------- # |
450 | ## -- subversion__get_wc_path() ---------------------------------------------- # |
| 332 | # |
451 | # |
| 333 | # @param $1 - a repository URI. |
452 | # param $1 - a repository URI. |
| 334 | # |
|
|
| 335 | function subversion__get_wc_path() { |
453 | subversion__get_wc_path() { |
| 336 | local repo_uri="$(subversion__get_repository_uri "${1}" 1)" |
454 | local repo_uri="$(subversion__get_repository_uri "${1}")" |
| 337 | |
455 | |
| 338 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
456 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
| 339 | |
457 | |
| 340 | echo "${ESVN_STORE_DIR}/${ESVN_PROJECT}/${repo_uri##*/}" |
458 | echo "${ESVN_STORE_DIR}/${ESVN_PROJECT}/${repo_uri##*/}" |
| 341 | } |
459 | } |
| 342 | |
460 | |
| 343 | |
|
|
| 344 | ## -- subversion__has_peg_revision() ----------------------------------------- # |
461 | ## -- subversion__get_peg_revision() ----------------------------------------- # |
| 345 | # |
462 | # |
| 346 | # @param $1 - a repository URI. |
463 | # param $1 - a repository URI. |
| 347 | # |
|
|
| 348 | function subversion__has_peg_revision() { |
464 | subversion__get_peg_revision() { |
| 349 | local repo_uri="${1}" |
465 | local repo_uri="${1}" |
| 350 | |
466 | |
| 351 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
467 | debug-print "${FUNCNAME}: repo_uri = ${repo_uri}" |
| 352 | |
468 | |
| 353 | # repo_uri has peg revision ? |
469 | # repo_uri has peg revision ? |
| 354 | if [[ "${repo_uri}" != *@* ]]; then |
470 | if [[ ${repo_uri} != *@* ]]; then |
| 355 | debug-print "${FUNCNAME}: repo_uri does not have a peg revision." |
471 | debug-print "${FUNCNAME}: repo_uri does not have a peg revision." |
| 356 | return 1 |
|
|
| 357 | fi |
472 | fi |
| 358 | |
473 | |
| 359 | local peg_rev="${repo_uri##*@}" |
474 | local peg_rev= |
| 360 | |
475 | [[ ${repo_uri} = *@* ]] && peg_rev="${repo_uri##*@}" |
| 361 | case "$(subversion__to_upper_case "${peg_rev}")" in |
|
|
| 362 | [[:digit:]]*) |
|
|
| 363 | # NUMBER |
|
|
| 364 | ;; |
|
|
| 365 | HEAD|BASE|COMMITED|PREV) |
|
|
| 366 | ;; |
|
|
| 367 | {[^}]*}) |
|
|
| 368 | # DATE |
|
|
| 369 | ;; |
|
|
| 370 | *) |
|
|
| 371 | debug-print "${FUNCNAME}: repo_uri does not have a peg revision." |
|
|
| 372 | return 1 |
|
|
| 373 | ;; |
|
|
| 374 | esac |
|
|
| 375 | |
476 | |
| 376 | debug-print "${FUNCNAME}: peg_rev = ${peg_rev}" |
477 | debug-print "${FUNCNAME}: peg_rev = ${peg_rev}" |
| 377 | |
478 | |
| 378 | return 0 |
479 | echo "${peg_rev}" |
| 379 | } |
480 | } |
| 380 | |
481 | |
| 381 | |
482 | # @FUNCTION: subversion_pkg_preinst |
| 382 | ## -- subversion__to_upper_case() ----------------------------------------- # |
483 | # @USAGE: [repo_uri] |
| 383 | # |
484 | # @DESCRIPTION: |
| 384 | # @param $@ - the strings to upper case. |
485 | # Log the svn revision of source code. Doing this in pkg_preinst because we |
| 385 | # |
486 | # want the logs to stick around if packages are uninstalled without messing with |
| 386 | function subversion__to_upper_case() { |
487 | # config protection. |
| 387 | echo "${@}" | tr "[a-z]" "[A-Z]" |
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}'" |
|
|
496 | fi |
|
|
497 | local logmessage="svn: ${pkgdate} - ${PF}:${SLOT} was merged at revision ${ESVN_WC_REVISION}" |
|
|
498 | if [[ -d ${dir} ]]; then |
|
|
499 | echo "${logmessage}" >> "${dir}/${PN}.log" |
|
|
500 | else |
|
|
501 | eerror "Could not log the message '${logmessage}' to '${dir}/${PN}.log'" |
|
|
502 | fi |
|
|
503 | fi |
| 388 | } |
504 | } |