mirrored from https://www.bouncycastle.org/repositories/bc-java
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathbuild1-5to1-8
More file actions
77 lines (69 loc) · 1.98 KB
/
Copy pathbuild1-5to1-8
File metadata and controls
77 lines (69 loc) · 1.98 KB
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
72
73
74
75
76
#!/bin/sh -
#
# build script for 1.5
#
# If it's given a buildname it creates a subdirectory and places a build in it,
# otherwise it just creates the docs and class files.
#
if [ "${JDKPATH}" = "" ]
then
JDKPATH=/usr/lib/jvm/java-8-openjdk-amd64
else
JDKPATH_WAS_SET=yes
fi
if [ "${JDK5PATH}" = "" ]
then
JDK5PATH=/usr/lib/jvm/java-1.5.0-oracle-i586/
fi
JAVA_HOME=$JDKPATH
export JAVA_HOME
PATH=$JDKPATH/bin:$PATH
export PATH
if [ "${JAVA_VERSION_PREFIX}" = "" ]
then
if [ "${JDKPATH_WAS_SET}" = "yes" ]
then
# JDKPATH was supplied but JAVA_VERSION_PREFIX wasn't: derive the prefix
# from the JVM's reported version so it matches System.getProperty("java.version").
# e.g. java.version "1.8.0_492" -> 1.8, "11.0.31" -> 11, "17.0.19" -> 17.
_javaVersion=`"${JDKPATH}/bin/java" -version 2>&1 | sed -n '1s/.*version "\([^"]*\)".*/\1/p'`
case "${_javaVersion}" in
1.*) JAVA_VERSION_PREFIX=`echo "${_javaVersion}" | cut -d. -f1-2` ;;
?*) JAVA_VERSION_PREFIX=`echo "${_javaVersion}" | cut -d. -f1` ;;
esac
fi
if [ "${JAVA_VERSION_PREFIX}" = "" ]
then
JAVA_VERSION_PREFIX=1.5
fi
export JAVA_VERSION_PREFIX
fi
if [ "$1" = "test" ]
then
#
# Note: always do a full build before running test
#
JAVA_HOME=$JDK5PATH
export JAVA_HOME
PATH=$JDK5PATH/bin:$PATH
export PATH
ant -f ant/jdk15+.xml test
elif [ "$1" = "clean" ]
then
ant -f ant/jdk15+.xml clean
else
if ant -f ant/jdk15+.xml build-provider
then
ant -f ant/jdk15+.xml build
ant -f ant/jdk15+.xml zip-src
fi
if [ -f build/artifacts/jdk1.5/jars/bcprov-jdk15to18*.jar ]
then
tar cf - prov/src/main/resources/META-INF | (cd build/artifacts/jdk1.5/jars/; tar xf -)
cd build/artifacts/jdk1.5/jars/
mv prov/src/main/resources/META-INF .
jar uf bcprov-jdk15to18*.jar META-INF
jar uf bcprov-ext-jdk15to18*.jar META-INF
rm -r prov META-INF
fi
fi