-
Notifications
You must be signed in to change notification settings - Fork 24
/
ant_import
executable file
·41 lines (37 loc) · 1.09 KB
/
ant_import
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
#!/bin/sh -xv
# Import the ANT sources AND _binary_ releases expanded into a single
# tree in say sub-directory "ant".
#
# Tag old state before importing.
#
cd ant
#
# OLD commands:
#
# cvs -d :ext:[email protected]:/cvs \
# import -ko -I! -m "ANT version 1.5.2 sources" java/source/ant ANT ANT_V_1_5_2
#
# cvs -d :ext:[email protected]:/cvs \
# import -ko -I! -m "ANT version 1.5.4 sources" java/source/ant ANT ANT_V_1_5_4
# note that last one was messed up as I didn't import the binary release as
# well, hence the "_b" import below.
#
# cvs \
# import -ko -I! -m "ANT version 1.5.4 sources plus binaries" \
# java/source/ant ANT ANT_V_1_5_4_b
#
#
# cvs \
# import -ko -I! -m "ANT version 1.6.2 sources plus binaries" \
# java/source/ant ANT ANT_V_1_6_2
#
# Merged sources with command:
#
# cvs checkout -jANT_V_1_5_4_b -jANT_V_1_6_2 java/source/ant
#
# Then fixup any changes and re-commit.
cvs \
import -ko -I! -m "ANT version 1.7.0 sources plus binaries" \
java/source/ant ANT ANT_V_1_7_0
# Merged with command:
cvs checkout -jANT_V_1_6_2 -jANT_V_1_7_0 java/source/ant