vp-build/srcpkgs/openjdk13-bootstrap/template

144 lines
4.3 KiB
Bash

# Template file for 'openjdk13-bootstrap'
pkgname=openjdk13-bootstrap
version=13.0.2+8
revision=1
_java_ver="${version%%.*}"
_jdk_update="${version#*+}"
_base_version="${version%+*}"
_jdk_home="usr/lib/jvm/openjdk${_java_ver}"
archs="x86_64* i686* aarch64* armv7* ppc64*"
wrksrc="jdk${_java_ver}u-jdk-${version/+/-}"
build_style=gnu-configure
configure_args="--disable-warnings-as-errors
--prefix=${XBPS_DESTDIR}/${pkgname}-${version}/usr/lib
--enable-unlimited-crypto
--with-zlib=system
--with-libjpeg=system
--with-giflib=system
--with-libpng=system
--with-lcms=system
--with-jtreg=no
--with-debug-level=release
--with-jobs=${XBPS_ORIG_MAKEJOBS}
--with-version-pre=
--with-version-build=${_jdk_update}
--with-version-opt=void-r${revision}
--with-vendor-name=Void
--with-vendor-url=https://voidlinux.org/
--with-vendor-bug-url=https://github.com/void-linux/void-packages/issues
--with-vendor-vm-bug-url=https://github.com/void-linux/void-packages/issues
--with-boot-jdk=/usr/lib/jvm/openjdk12"
make_build_args="images"
make_check_target="test-hotspot-gtest"
hostmakedepends="pkg-config automake autoconf cpio tar unzip zip ca-certificates
openssl zlib-devel which make-ca openjdk12-bootstrap"
makedepends="libXrender-devel libXtst-devel libXt-devel libXrandr-devel
giflib-devel libjpeg-turbo-devel cups-devel freetype-devel alsa-lib-devel
fontconfig-devel zlib-devel lcms2-devel"
short_desc="OpenJDK Java Development Kit (bootstrap version 13)"
maintainer="classabbyamp <void@placeviolette.net>"
license="GPL-2.0-only WITH Classpath-exception-2.0"
homepage="https://openjdk.java.net/"
distfiles="https://hg.openjdk.java.net/jdk-updates/jdk${_java_ver}u/archive/jdk-${version}.tar.gz"
checksum=d38fb17795782dffe84e98f21f1d6293b0a45ea8f1e9c81e99cd71acac03a4e0
provides="java-environment-${version}_1 java-runtime-${version}_1"
lib32disabled=yes
nocross=yes
# Build is still parallel, but don't use -jN.
disable_parallel_build=yes
case "$XBPS_TARGET_MACHINE" in
ppc64*) ;;
# no hotspot JIT for ppc32
ppc*) _use_zero=yes ;;
armv[56]*) broken="Unsupported architecture" ;;
esac
if [ -n "$_use_zero" ]; then
makedepends+=" libffi-devel"
configure_args+=" --with-jvm-variants=zero"
case "$XBPS_TARGET_MACHINE" in
ppc*) configure_args+=" --with-boot-jdk-jvmargs=-XX:ThreadStackSize=2560";;
esac
fi
if [ -n "$XBPS_DEBUG_PKGS" ]; then
configure_args+=" --with-native-debug-symbols=internal"
fi
post_extract() {
chmod +x configure
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
rm -r src/jdk.hotspot.agent
fi
}
post_patch() {
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
for f in "${FILESDIR}"/musl_patches/*.patch; do
msg_normal "Applying ${f#$FILESDIR/}\n"
patch -lNp1 -i "$f"
done
fi
}
do_configure() {
CFLAGS=${CFLAGS/-D_FORTIFY_SOURCE=2/}
CXXFLAGS=${CXXFLAGS/-D_FORTIFY_SOURCE=2/}
# force ELFv2 for ppc64 just in case
case "$XBPS_TARGET_MACHINE" in
ppc64*)
CFLAGS+=" -DABI_ELFv2"
CXXFLAGS+=" -DABI_ELFv2"
;;
esac
# compatibility with GCC 10.x
CFLAGS+=" -fcommon -fno-lifetime-dse"
CXXFLAGS+=" -fcommon -fno-lifetime-dse"
configure_args=${configure_args/--with-libtool-sysroot=\/usr\/[a-z0-9]*-linux-[a-z]*/}
if [ "$XBPS_CCACHE" ]; then
configure_args+=" --enable-ccache"
fi
CC="/usr/bin/cc"
CXX="/usr/bin/c++"
./configure ${configure_args} \
--with-extra-cflags="$CFLAGS" \
--with-extra-cxxflags="$CXXFLAGS" \
--with-extra-ldflags="$LDFLAGS" \
READELF=$READELF AR=$AR STRIP=$STRIP NM=$NM \
OBJDUMP=$OBJDUMP OBJCOPY=$OBJCOPY
}
do_build() {
# do_build is overridden because of intermittent segfaults and IOExceptions during the build
# through many attempts, it was found that 3 tries is a good amount to make it work
for _try in 1 2 3; do
msg_normal "Attempt $_try ...\n"
# adapted from build style
: ${make_cmd:=make}
export lt_cv_sys_lib_dlsearch_path_spec="/usr/lib64 /usr/lib32 /usr/lib /lib /usr/local/lib"
${make_cmd} ${makejobs} ${make_build_args} ${make_build_target} && break
# end adapted from build style
if [ $_try -lt 3 ]; then
msg_warn "Build failed, retrying ...\n"
else
msg_warn "Build failed, out of attempts\n"
fi
done
}
post_install() {
mv ${DESTDIR}/usr/lib/jvm/openjdk-${_base_version} ${DESTDIR}/$_jdk_home
rm -rf ${DESTDIR}/usr/lib/bin
rm -f $DESTDIR/$_jdk_home/lib/src.zip
vlicense ASSEMBLY_EXCEPTION
vlicense LICENSE
}