Displaying 3 results from an estimated 3 matches for "svn_url".
2009 Aug 04
0
[LLVMdev] Mirroring of LLVM repository
...k with LLVM's SVN repository, please
only clone the latest SVN revision using git-svn's `--revision <n>`
option (combined with a huge log window: `--log-window-size 999999`).
You may find the following script helpful:
#!/bin/bash
if [ $# -ne 2 ]; then echo "Usage: $0 <svn_url> <dir>" >&2; exit 64; fi
SVN_URL=$1
SVN_REV=`svn info $SVN_URL | awk '/Rev:/ {print $4}'`
git svn clone --log-window-size 999999 --revision $SVN_REV $SVN_URL $2
This makes the initial clone roughly as demanding as a `svn checkout`.
> [..] There are some...
2009 Aug 03
3
[LLVMdev] Mirroring of LLVM repository
Dear All,
Currently the load of llvm.org is too high. This influences the whole
project services like buildbots, bugzilla, etc. It was found that this
workload is possible caused by massive mirroring of LLVM SVN
repository into git/hg/whatever. Please don't do that :)
1. Usually one don't need full history, this makes the mirroring much
easier and faster (do you *really* need r5000? I
2009 Jul 16
2
[PATCH server] updated anyterm/ovirt integration
...ss=null;
+ document.onkeydown=null;
+ window.onbeforeunload=null;
+ var e;
+ while (e=frame.firstChild) {
+ frame.removeChild(e);
+ }
+ frame.className="";
+ if (on_close_goto_url) {
+ document.location = on_close_goto_url;
+ }
+}
+
+
+function get_anyterm_version() {
+ var svn_url="$URL: http://svn.anyterm.org/anyterm/tags/releases/1.1/1.1.29/browser/anyterm.js $";
+ var re = /releases\/[0-9]+\.[0-9]+\/([0-9\.]+)/;
+ var match = re.exec(svn_url);
+ if (match) {
+ return match[1];
+ } else {
+ return "";
+ }
+}
+
+function substitute_variables(s...