2018-07-17 10:56:32 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Generates the 'source tarball' for JDK projects.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# When used from local repo set REPO_ROOT pointing to file:// with your repo
|
2019-01-16 06:44:10 +00:00
|
|
|
# If your local repo follows upstream forests conventions, it may be enough to set OPENJDK_URL
|
2019-10-14 06:13:20 +00:00
|
|
|
# If you want to use a local copy of patch PR3751, set the path to it in the PR3751 variable
|
2018-07-17 10:56:32 +00:00
|
|
|
#
|
|
|
|
# In any case you have to set PROJECT_NAME REPO_NAME and VERSION. eg:
|
|
|
|
# PROJECT_NAME=jdk
|
|
|
|
# REPO_NAME=jdk
|
|
|
|
# VERSION=tip
|
|
|
|
# or to eg prepare systemtap:
|
|
|
|
# icedtea7's jstack and other tapsets
|
|
|
|
# VERSION=6327cf1cea9e
|
|
|
|
# REPO_NAME=icedtea7-2.6
|
|
|
|
# PROJECT_NAME=release
|
|
|
|
# OPENJDK_URL=http://icedtea.classpath.org/hg/
|
|
|
|
# TO_COMPRESS="*/tapset"
|
|
|
|
#
|
|
|
|
# They are used to create correct name and are used in construction of sources url (unless REPO_ROOT is set)
|
|
|
|
|
|
|
|
# This script creates a single source tarball out of the repository
|
|
|
|
# based on the given tag and removes code not allowed in fedora/rhel. For
|
|
|
|
# consistency, the source tarball will always contain 'openjdk' as the top
|
|
|
|
# level folder, name is created, based on parameter
|
|
|
|
#
|
|
|
|
|
2019-10-14 06:13:20 +00:00
|
|
|
if [ ! "x$PR3751" = "x" ] ; then
|
|
|
|
if [ ! -f "$PR3751" ] ; then
|
|
|
|
echo "You have specified PR3751 as $PR3751 but it does not exist. Exiting"
|
2018-07-17 10:56:32 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
OPENJDK_URL_DEFAULT=http://hg.openjdk.java.net
|
|
|
|
COMPRESSION_DEFAULT=xz
|
|
|
|
|
|
|
|
if [ "x$1" = "xhelp" ] ; then
|
|
|
|
echo -e "Behaviour may be specified by setting the following variables:\n"
|
|
|
|
echo "VERSION - the version of the specified OpenJDK project"
|
|
|
|
echo "PROJECT_NAME -- the name of the OpenJDK project being archived (optional; only needed by defaults)"
|
|
|
|
echo "REPO_NAME - the name of the OpenJDK repository (optional; only needed by defaults)"
|
|
|
|
echo "OPENJDK_URL - the URL to retrieve code from (optional; defaults to ${OPENJDK_URL_DEFAULT})"
|
|
|
|
echo "COMPRESSION - the compression type to use (optional; defaults to ${COMPRESSION_DEFAULT})"
|
|
|
|
echo "FILE_NAME_ROOT - name of the archive, minus extensions (optional; defaults to PROJECT_NAME-REPO_NAME-VERSION)"
|
|
|
|
echo "REPO_ROOT - the location of the Mercurial repository to archive (optional; defaults to OPENJDK_URL/PROJECT_NAME/REPO_NAME)"
|
|
|
|
echo "TO_COMPRESS - what part of clone to pack (default is openjdk)"
|
2019-10-14 06:13:20 +00:00
|
|
|
echo "PR3751 - the path to the PR3751 patch to apply (optional; downloaded if unavailable)"
|
2018-07-17 10:56:32 +00:00
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
if [ "x$VERSION" = "x" ] ; then
|
|
|
|
echo "No VERSION specified"
|
|
|
|
exit -2
|
|
|
|
fi
|
|
|
|
echo "Version: ${VERSION}"
|
|
|
|
|
|
|
|
# REPO_NAME is only needed when we default on REPO_ROOT and FILE_NAME_ROOT
|
|
|
|
if [ "x$FILE_NAME_ROOT" = "x" -o "x$REPO_ROOT" = "x" ] ; then
|
|
|
|
if [ "x$PROJECT_NAME" = "x" ] ; then
|
|
|
|
echo "No PROJECT_NAME specified"
|
|
|
|
exit -1
|
|
|
|
fi
|
|
|
|
echo "Project name: ${PROJECT_NAME}"
|
|
|
|
if [ "x$REPO_NAME" = "x" ] ; then
|
|
|
|
echo "No REPO_NAME specified"
|
|
|
|
exit -3
|
|
|
|
fi
|
|
|
|
echo "Repository name: ${REPO_NAME}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "x$OPENJDK_URL" = "x" ] ; then
|
|
|
|
OPENJDK_URL=${OPENJDK_URL_DEFAULT}
|
|
|
|
echo "No OpenJDK URL specified; defaulting to ${OPENJDK_URL}"
|
|
|
|
else
|
|
|
|
echo "OpenJDK URL: ${OPENJDK_URL}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "x$COMPRESSION" = "x" ] ; then
|
|
|
|
# rhel 5 needs tar.gz
|
|
|
|
COMPRESSION=${COMPRESSION_DEFAULT}
|
|
|
|
fi
|
|
|
|
echo "Creating a tar.${COMPRESSION} archive"
|
|
|
|
|
|
|
|
if [ "x$FILE_NAME_ROOT" = "x" ] ; then
|
|
|
|
FILE_NAME_ROOT=${PROJECT_NAME}-${REPO_NAME}-${VERSION}
|
|
|
|
echo "No file name root specified; default to ${FILE_NAME_ROOT}"
|
|
|
|
fi
|
|
|
|
if [ "x$REPO_ROOT" = "x" ] ; then
|
|
|
|
REPO_ROOT="${OPENJDK_URL}/${PROJECT_NAME}/${REPO_NAME}"
|
|
|
|
echo "No repository root specified; default to ${REPO_ROOT}"
|
|
|
|
fi;
|
|
|
|
|
|
|
|
if [ "x$TO_COMPRESS" = "x" ] ; then
|
|
|
|
TO_COMPRESS="openjdk"
|
|
|
|
echo "No to be compressed targets specified, ; default to ${TO_COMPRESS}"
|
|
|
|
fi;
|
|
|
|
|
|
|
|
if [ -d ${FILE_NAME_ROOT} ] ; then
|
|
|
|
echo "exists exists exists exists exists exists exists "
|
|
|
|
echo "reusing reusing reusing reusing reusing reusing "
|
|
|
|
echo ${FILE_NAME_ROOT}
|
|
|
|
else
|
|
|
|
mkdir "${FILE_NAME_ROOT}"
|
|
|
|
pushd "${FILE_NAME_ROOT}"
|
|
|
|
echo "Cloning ${VERSION} root repository from ${REPO_ROOT}"
|
|
|
|
hg clone ${REPO_ROOT} openjdk -r ${VERSION}
|
|
|
|
popd
|
|
|
|
fi
|
|
|
|
pushd "${FILE_NAME_ROOT}"
|
|
|
|
if [ -d openjdk/src ]; then
|
|
|
|
pushd openjdk
|
|
|
|
echo "Removing EC source code we don't build"
|
|
|
|
CRYPTO_PATH=src/jdk.crypto.ec/share/native/libsunec/impl
|
2019-01-16 06:44:10 +00:00
|
|
|
rm -vf ${CRYPTO_PATH}/ec2.h
|
|
|
|
rm -vf ${CRYPTO_PATH}/ec2_163.c
|
|
|
|
rm -vf ${CRYPTO_PATH}/ec2_193.c
|
|
|
|
rm -vf ${CRYPTO_PATH}/ec2_233.c
|
|
|
|
rm -vf ${CRYPTO_PATH}/ec2_aff.c
|
|
|
|
rm -vf ${CRYPTO_PATH}/ec2_mont.c
|
|
|
|
rm -vf ${CRYPTO_PATH}/ecp_192.c
|
|
|
|
rm -vf ${CRYPTO_PATH}/ecp_224.c
|
|
|
|
|
2018-07-17 10:56:32 +00:00
|
|
|
echo "Syncing EC list with NSS"
|
2019-10-14 06:13:20 +00:00
|
|
|
if [ "x$PR3751" = "x" ] ; then
|
|
|
|
# get pr3751.patch (from http://icedtea.classpath.org/hg/icedtea11) from most correct tag
|
|
|
|
# Do not push it or publish it (see http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=3751)
|
|
|
|
echo "PR3751 not found. Downloading..."
|
|
|
|
wget http://icedtea.classpath.org/hg/icedtea11/raw-file/tip/patches/pr3751.patch
|
|
|
|
echo "Applying ${PWD}/pr3751.patch"
|
|
|
|
patch -Np1 < pr3751.patch
|
|
|
|
rm pr3751.patch
|
2019-01-16 06:44:10 +00:00
|
|
|
else
|
2019-10-14 06:13:20 +00:00
|
|
|
echo "Applying ${PR3751}"
|
|
|
|
patch -Np1 < $PR3751
|
2018-07-17 10:56:32 +00:00
|
|
|
fi;
|
|
|
|
find . -name '*.orig' -exec rm -vf '{}' ';'
|
|
|
|
popd
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Compressing remaining forest"
|
|
|
|
if [ "X$COMPRESSION" = "Xxz" ] ; then
|
|
|
|
SWITCH=cJf
|
|
|
|
else
|
|
|
|
SWITCH=czf
|
|
|
|
fi
|
2019-10-14 06:13:20 +00:00
|
|
|
TARBALL_NAME=${FILE_NAME_ROOT}-4curve.tar.${COMPRESSION}
|
|
|
|
tar --exclude-vcs -$SWITCH ${TARBALL_NAME} $TO_COMPRESS
|
|
|
|
mv ${TARBALL_NAME} ..
|
2018-07-17 10:56:32 +00:00
|
|
|
popd
|
|
|
|
echo "Done. You may want to remove the uncompressed version - $FILE_NAME_ROOT."
|
|
|
|
|
|
|
|
|