1a1b125c0e
Changelog: New Japanese Era Name: Reiwa (JDK-8205432) core-libs/java.time An instance representing the new Reiwa era has been added to this update. Unlike other eras, there is no public field for this era. It can be obtained by calling JapaneseEra.of(3) or JapaneseEra.valueOf("Reiwa"). JDK 13 and later will have a new public field to represent this era. The placeholder name, "NewEra", for the Japanese era that started from May 1st, 2019 has been replaced with the new official name. Applications that relied on the placeholder name (see JDK-8202088) to obtain the new era singleton (JapaneseEra.valueOf("NewEra")) will no longer work. Added GlobalSign R6 Root Certificate (JDK-8216577) security-libs/java.security The following root certificate has been added to the cacerts truststore: + GlobalSign + globalsignrootcar6 DN: CN=GlobalSign, O=GlobalSign, OU=GlobalSign Root CA - R6
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.3 2019/05/01 05:39:30 ryoon Exp $
|
|
|
|
DISTNAME= openjdk-12.0.1_linux-x64_bin
|
|
PKGNAME= ${DISTNAME:S/_linux-x64_bin//:S/openjdk-/openjdk-bin-/}
|
|
CATEGORIES= lang
|
|
MASTER_SITES= https://download.oracle.com/java/GA/jdk12.0.1/69cfe15208a647278a19ef0990eea691/12/GPL/
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= https://jdk.java.net/
|
|
COMMENT= Official OpenJDK Java binary distribution
|
|
LICENSE= gnu-gpl-v2 # with classpath exception
|
|
|
|
WRKSRC= ${WRKDIR}/jdk-${PKGVERSION_NOREV}
|
|
BUILD_DIRS= # empty; instead of NO_BUILD=yes to create wrappers
|
|
|
|
# Contains pre-built binaries
|
|
CHECK_RELRO_SUPPORTED= no
|
|
CHECK_SHLIBS_SUPPORTED= no
|
|
CHECK_SSP_SUPPORTED= no
|
|
CTF_SUPPORTED= no
|
|
|
|
EMUL_PLATFORMS= linux-x86_64
|
|
EMUL_MODULES.linux= compat locale x11
|
|
|
|
USE_TOOLS+= pax
|
|
USE_LANGUAGES= # none
|
|
|
|
JAVA_NAME= openjdk-bin
|
|
JAVA_HOME= ${PREFIX}/java/${JAVA_NAME}
|
|
INSTALLATION_DIRS+= ${JAVA_HOME}
|
|
|
|
JAVA_WRAPPERS= jar java javac javadoc javah javap jcmd jhat jps jstack \
|
|
keytool orbd policytool rmid rmiregistry servertool tnameserv
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && pax -rwp ma . ${DESTDIR}${JAVA_HOME}
|
|
|
|
.include "../../mk/java-env.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|