-
Notifications
You must be signed in to change notification settings - Fork 4
/
util.sh
71 lines (65 loc) · 2.12 KB
/
util.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env bash
###########################################################################
# Copyright (C) 2010--2012 Minh Van Nguyen <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# http://www.gnu.org/licenses/
###########################################################################
# The main interface to the utilities under the directory bin/.
# Make the top-level directory absolute:
BOOK_ROOT=`pwd`; export BOOK_ROOT
# Print usage information for this script.
usage() {
echo "Usage: $0 <options>"
echo "Optional arguments:"
echo "--copyright Manage the copyright headers"
echo "--dist [VER] Wrap up a source distribution with optional version number VER"
}
# You must provide an argument to this script.
if [ "$#" -eq 0 ]; then
usage
exit 1
fi
# Wrapping up a source distribution. See the file
#
# bin/sdist.sh
#
# for more information about wrapping up a source distribution. That file
# also discusses the distinction between a version release and a revision
# release.
if [ "$1" = "--dist" ]; then
# Argument must be of the form "--dist [VER]".
# No argument to --dist, so wrap up a revision release.
if [ "$#" -eq 1 ]; then
"$BOOK_ROOT/bin/sdist.sh" "--revision" "$BOOK_ROOT"
# An argument is provided to --dist, so wrap up a version release.
elif [ "$#" -eq 2 ]; then
"$BOOK_ROOT/bin/sdist.sh" "$2" "$BOOK_ROOT"
else
usage
exit 1
fi
exit 0
# Managing the copyright headers.
elif [ "$1" = "--copyright" ]; then
# Argument must be of the form "--copyright".
if [ "$#" -eq 1 ]; then
"$BOOK_ROOT/bin/copyright.py" "$BOOK_ROOT"
else
usage
exit 1
fi
exit 0
else
usage
exit 1
fi