Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
199d4f15
Commit
199d4f15
authored
Jul 01, 2004
by
mwagner@here.mwagner.org
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.0
into here.mwagner.org:/Volumes/BK/mysql-4.0
parents
01dc75df
1adf2aac
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
9 deletions
+28
-9
Build-tools/Bootstrap
Build-tools/Bootstrap
+5
-4
Build-tools/logger.pm
Build-tools/logger.pm
+11
-4
Build-tools/my_md5sum
Build-tools/my_md5sum
+12
-1
No files found.
Build-tools/Bootstrap
View file @
199d4f15
...
@@ -46,6 +46,7 @@ $opt_test= undef;
...
@@ -46,6 +46,7 @@ $opt_test= undef;
$opt_skip_check
=
undef
;
$opt_skip_check
=
undef
;
$opt_skip_manual
=
undef
;
$opt_skip_manual
=
undef
;
$opt_win_dist
=
undef
;
$opt_win_dist
=
undef
;
$opt_quiet
=
undef
;
$version
=
"
unknown
";
$version
=
"
unknown
";
$major
=
$minor
=
$release
=
0
;
$major
=
$minor
=
$release
=
0
;
...
@@ -67,7 +68,8 @@ GetOptions(
...
@@ -67,7 +68,8 @@ GetOptions(
"
suffix=s
",
"
suffix=s
",
"
test|t
",
"
test|t
",
"
verbose|v
",
"
verbose|v
",
"
win-dist|w
"
"
win-dist|w
",
"
quiet|q
",
)
||
print_help
("");
)
||
print_help
("");
#
#
...
@@ -99,8 +101,6 @@ if (defined $opt_build_command)
...
@@ -99,8 +101,6 @@ if (defined $opt_build_command)
print_help
("")
if
(
$opt_help
);
print_help
("")
if
(
$opt_help
);
defined
(
$REPO
=
$ARGV
[
0
])
||
print_help
("
Please enter the BK repository to be used!
");
defined
(
$REPO
=
$ARGV
[
0
])
||
print_help
("
Please enter the BK repository to be used!
");
$subject
=
"
Bootstrap of
$REPO
failed
"
if
$opt_mail
;
&
logger
("
Starting build
");
&
logger
("
Starting build
");
&
abort
("
The directory
\"
$REPO
\"
could not be found!
")
if
(
!-
d
$REPO
);
&
abort
("
The directory
\"
$REPO
\"
could not be found!
")
if
(
!-
d
$REPO
);
&
logger
("
Using
$REPO
as the BK parent repository
");
&
logger
("
Using
$REPO
as the BK parent repository
");
...
@@ -306,7 +306,7 @@ if (!$opt_dry_run)
...
@@ -306,7 +306,7 @@ if (!$opt_dry_run)
#
#
# Now build the source distribution
# Now build the source distribution
#
#
&
logger
("
Compiling
");
&
logger
("
Compiling
...
");
$command
=
$build_command
;
$command
=
$build_command
;
&
run_command
(
$command
,
"
Compilation failed!
");
&
run_command
(
$command
,
"
Compilation failed!
");
...
@@ -403,6 +403,7 @@ Options:
...
@@ -403,6 +403,7 @@ Options:
include a log file snippet, if logging is enabled)
include a log file snippet, if logging is enabled)
Note that the \@-Sign needs to be quoted!
Note that the \@-Sign needs to be quoted!
Example: --mail=user\\\@domain.com
Example: --mail=user\\\@domain.com
-q, --quiet Be quiet
-p, --pull Update the source BK trees before building
-p, --pull Update the source BK trees before building
-r, --revision=<rev> Export the tree as of revision <rev>
-r, --revision=<rev> Export the tree as of revision <rev>
(default is up to the latest revision)
(default is up to the latest revision)
...
...
Build-tools/logger.pm
View file @
199d4f15
...
@@ -5,7 +5,10 @@
...
@@ -5,7 +5,10 @@
#
#
sub
logger
sub
logger
{
{
my
$message
=
$_
[
0
];
my
$message
=
$_
[
0
];
my
$cmnd
=
$_
[
1
];
print
$message
.
"
\n
"
if
!
$opt_quiet
&&
!
$opt_verbose
&&
!
$cmnd
;
print
timestamp
()
.
"
"
.
$message
.
"
\n
"
if
$opt_verbose
;
print
timestamp
()
.
"
"
.
$message
.
"
\n
"
if
$opt_verbose
;
if
(
defined
$opt_log
&&
!
$opt_dry_run
)
if
(
defined
$opt_log
&&
!
$opt_dry_run
)
{
{
...
@@ -30,9 +33,12 @@ sub run_command
...
@@ -30,9 +33,12 @@ sub run_command
}
}
else
else
{
{
&
logger
(
$command
);
&
logger
(
$command
,
1
);
$command
.=
"
>>
$LOGFILE
2>&1
"
if
defined
$opt_log
;
$command
.=
"
> /dev/null
"
if
(
!
$opt_verbose
&&
!
$opt_log
);
$command
.=
'
;
'
unless
(
$command
=~
m/^.*;$/
);
$command
=~
s/;/ >> $LOGFILE 2>&1;/g
if
defined
$opt_log
;
$command
=~
s/;/ > \/dev\/null;/g
if
(
!
$opt_verbose
&&
!
$opt_log
);
system
(
$command
)
==
0
or
&
abort
("
$errormsg
\n
");
system
(
$command
)
==
0
or
&
abort
("
$errormsg
\n
");
}
}
}
}
...
@@ -47,6 +53,7 @@ sub abort
...
@@ -47,6 +53,7 @@ sub abort
{
{
my
$message
=
$_
[
0
];
my
$message
=
$_
[
0
];
my
$messagefile
;
my
$messagefile
;
my
$subject
=
"
Bootstrap of
$REPO
failed
"
if
$opt_mail
;
$message
=
"
ERROR:
"
.
$message
;
$message
=
"
ERROR:
"
.
$message
;
&
logger
(
$message
);
&
logger
(
$message
);
...
...
Build-tools/my_md5sum
View file @
199d4f15
...
@@ -10,10 +10,21 @@
...
@@ -10,10 +10,21 @@
# Written by Matt Wagner <matt@mysql.com>
# Written by Matt Wagner <matt@mysql.com>
#
#
use
strict
;
use
strict
;
#
# Use local perl libraries first. 'unshift' adds to the front of @INC
# The local perl library dir hidden is $HOME/.perllibs on each build host
#
BEGIN
{
my
$homedir
=
$ENV
{
HOME
};
unshift
(
@INC
,
"
$homedir
/.perllibs
");
}
use
Digest::
MD5
;
use
Digest::
MD5
;
use
Getopt::
Long
;
use
Getopt::
Long
;
my
$VER
=
"
1.
1
";
my
$VER
=
"
1.
2
";
#
#
# Strip the leading path info off the program name ($0). We want 'my_md5sum'
# Strip the leading path info off the program name ($0). We want 'my_md5sum'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment