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