OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SVN
(Results
1 - 9
of
9
) sorted by null
/external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/webkit/
basesteps.py
18
SVN
= buildStepWithDefaultTimeout(source.
SVN
)
steps.py
1
from webkit.basesteps import ShellCommand,
SVN
, Test, Compile, UploadCommand
4
class CheckOutSource(
SVN
):
5
baseURL = "http://
svn
.webkit.org/repository/webkit/"
8
SVN
.__init__(self, baseURL=self.baseURL, defaultBranch="trunk", mode=self.mode, *args, **kwargs)
/external/webkit/WebKitTools/Scripts/
resolve-ChangeLogs
29
# Merge and resolve ChangeLog conflicts for
svn
and git repositories
62
my $
SVN
= "
svn
";
164
open STAT, "-|", $
SVN
, "status", $file or die $!;
175
open INFO, "-|", $
SVN
, "info", $file or die $!;
242
$statCommand = "$
SVN
stat | grep '^C'";
266
print; # error output from
svn
stat
496
system($
SVN
, "resolved", $file);
511
system($
SVN
, "status", $file);
svn-apply
35
# Handles added files (does a
svn
add with logic to handle local changes).
36
# Handles added directories (does a
svn
add).
37
# Handles removed files (does a
svn
rm with logic to handle local changes).
39
# (does a
svn
rm).
40
# Has mode where it will roll back to
svn
version numbers in the patch file so
svn
47
# Handles binary files (requires patches made by
svn
-create-patch).
48
# Handles copied and moved files (requires patches made by
svn
-create-patch).
54
# Handle copied and moved directories (would require patches made by
svn
-create-patch).
116
'.
svn
' => 1
[
all
...]
prepare-ChangeLog
46
# Add
SVN
version numbers for commit (can't do that until
134
print STDERR " --[no-]update Update ChangeLogs from
svn
before adding entry (default: update)\n";
148
my $
SVN
= "
svn
";
320
# Get the latest ChangeLog files from
svn
.
327
print STDERR " Running '
svn
update' to update ChangeLog files.\n";
328
open ERRORS, "-|", $
SVN
, "update", @logs
329
or die "The
svn
update of ChangeLog files failed: $!.\n";
[
all
...]
VCSUtils.pm
143
return -d File::Spec->catdir($dir, ".
svn
");
161
chomp($svnVersion = `
svn
--version --quiet`);
199
open INFO, "
svn
info '$path' 2> " . File::Spec->devnull() . " |" or die;
239
# Some users have a workflow where
svn
-create-patch,
svn
-apply and
240
#
svn
-unapply are used outside of multiple
svn
working directores,
255
my $svnInfo = `LC_ALL=C
svn
info $dir | grep Revision:`;
258
my $gitLog = `cd $dir && LC_ALL=C git log --grep='git-
svn
-id: ' -n 1 | grep git-
svn
-id:`
[
all
...]
bisect-builds
306
if ($file =~ /^WebKit-
SVN
-r([0-9]+)\.dmg$/) {
run-webkit-tests
266
--use-remote-links-to-tests Link to test files within the
SVN
repository in the results.
421
my %ignoredLocalDirectories = map { $_ => 1 } qw(.
svn
_svn resources script-tests);
[
all
...]
/external/webkit/WebKitTools/Scripts/webkitpy/
scm.py
30
# Python module for interacting with an SCM system (like
SVN
or Git)
42
if
SVN
.in_working_directory(path):
43
return
SVN
(cwd=path)
128
args = [self.script_path('
svn
-apply')]
258
class
SVN
(SCM):
265
return os.path.isdir(os.path.join(path, '.
svn
'))
275
svn_info_args = ['
svn
', 'info', path]
279
raise ScriptError(script_args=svn_info_args, message='
svn
info did not contain a %s.' % field_name)
284
uuid =
SVN
.find_uuid(path)
291
if uuid !=
SVN
.find_uuid(path)
[
all
...]
Completed in 3189 milliseconds