mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Add openjdk8
This commit is contained in:
parent
02e7a4d403
commit
9d9f33863b
@ -0,0 +1,14 @@
|
|||||||
|
diff -Naur openjdk-7u65-b32-upstream/jdk/make/tools/src/build/tools/generatecurrencydata/GenerateCurrencyData.java openjdk-7u65-b32/jdk/make/tools/src/build/tools/generatecurrencydata/GenerateCurrencyData.java
|
||||||
|
--- openjdk-7u65-b32-upstream/jdk/make/src/classes/build/tools/generatecurrencydata/GenerateCurrencyData.java 2014-07-17 05:42:14.000000000 -0430
|
||||||
|
+++ openjdk-7u65-b32/jdk/make/src/classes/build/tools/generatecurrencydata/GenerateCurrencyData.java 2014-12-30 10:15:50.327905933 -0430
|
||||||
|
@@ -281,8 +281,8 @@
|
||||||
|
checkCurrencyCode(newCurrency);
|
||||||
|
String timeString = currencyInfo.substring(4, length - 4);
|
||||||
|
long time = format.parse(timeString).getTime();
|
||||||
|
- if (Math.abs(time - System.currentTimeMillis()) > ((long) 10) * 365 * 24 * 60 * 60 * 1000) {
|
||||||
|
- throw new RuntimeException("time is more than 10 years from present: " + time);
|
||||||
|
+ if (Math.abs(time - System.currentTimeMillis()) > ((long) 20) * 365 * 24 * 60 * 60 * 1000) {
|
||||||
|
+ throw new RuntimeException("time is more than 20 years from present: " + time);
|
||||||
|
}
|
||||||
|
specialCaseCutOverTimes[specialCaseCount] = time;
|
||||||
|
specialCaseOldCurrencies[specialCaseCount] = oldCurrency;
|
131
pkgs/development/compilers/openjdk/openjdk8.nix
Normal file
131
pkgs/development/compilers/openjdk/openjdk8.nix
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
{ stdenv, fetchurl, cpio, file, which, unzip, zip, xorg, cups, freetype, alsaLib, openjdk, cacert, perl } :
|
||||||
|
let
|
||||||
|
update = "25";
|
||||||
|
build = "18";
|
||||||
|
baseurl = "http://hg.openjdk.java.net/jdk8u/jdk8u";
|
||||||
|
repover = "jdk8u${update}-b${build}";
|
||||||
|
paxflags = if stdenv.isi686 then "msp" else "m";
|
||||||
|
jdk8 = fetchurl {
|
||||||
|
url = "${baseurl}/archive/${repover}.tar.gz";
|
||||||
|
sha256 = "90eb3f3cb7094e609686168ec52ba462ef0f9832a4264bd1575e5896a6dd85c3";
|
||||||
|
};
|
||||||
|
langtools = fetchurl {
|
||||||
|
url = "${baseurl}/langtools/archive/${repover}.tar.gz";
|
||||||
|
sha256 = "f292afe8540436090489841771259b274e3c36d42f11d0f58ba8082cd24fcc66";
|
||||||
|
};
|
||||||
|
hotspot = fetchurl {
|
||||||
|
url = "${baseurl}/hotspot/archive/${repover}.tar.gz";
|
||||||
|
sha256 = "e574567b48f57c5cdeebae6fa22e2482c05446dbf9133e820f2d95e99459ddf2";
|
||||||
|
};
|
||||||
|
corba = fetchurl {
|
||||||
|
url = "${baseurl}/corba/archive/${repover}.tar.gz";
|
||||||
|
sha256 = "61d0bba710d6803b0368c93bc9182b0b40348eed81d578886a03904baf61ba6f";
|
||||||
|
};
|
||||||
|
jdk = fetchurl {
|
||||||
|
url = "${baseurl}/jdk/archive/${repover}.tar.gz";
|
||||||
|
sha256 = "8ef05535a0e03c4262d55cc67887e884f3fda8e4872cbc2941dcb216ef1460ca";
|
||||||
|
};
|
||||||
|
jaxws = fetchurl {
|
||||||
|
url = "${baseurl}/jaxws/archive/${repover}.tar.gz";
|
||||||
|
sha256 = "afbdf119af2ffc0f9cd6eb93e6dac8e6a56a4ed4b68c7ff07f9b0c1a6bd56a8f";
|
||||||
|
};
|
||||||
|
jaxp = fetchurl {
|
||||||
|
url = "${baseurl}/jaxp/archive/${repover}.tar.gz";
|
||||||
|
sha256 = "2e91c958024e6b64f7484b8225e07edce3bd3bcde43081fb73f32e4b73ef7b87";
|
||||||
|
};
|
||||||
|
nashorn = fetchurl {
|
||||||
|
url = "${baseurl}/nashorn/archive/${repover}.tar.gz";
|
||||||
|
sha256 = "98b4fc2d448920b81404ce745d9c00e9a33b58e123176dec4074caf611c3f9c2";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "openjdk-8u${update}b${build}";
|
||||||
|
srcs = [jdk8 langtools hotspot corba jdk jaxws jaxp nashorn];
|
||||||
|
outputs = [ "out" "jre" ];
|
||||||
|
buildInputs = [ cpio file which unzip zip
|
||||||
|
xorg.libX11 xorg.libXt xorg.libXext xorg.libXrender xorg.libXtst
|
||||||
|
xorg.libXi xorg.libXinerama xorg.libXcursor xorg.lndir
|
||||||
|
cups freetype alsaLib openjdk perl ];
|
||||||
|
setSourceRoot = ''
|
||||||
|
sourceRoot="jdk8u-jdk8u${update}-b${build}";
|
||||||
|
'';
|
||||||
|
prePatch = ''
|
||||||
|
# despite --with-override-jdk the build still searchs here
|
||||||
|
ln -s "../jdk-${repover}" "jdk";
|
||||||
|
ln -s "../hotspot-${repover}" "hotspot";
|
||||||
|
'';
|
||||||
|
patches = [
|
||||||
|
./fix-java-home.patch
|
||||||
|
./read-truststore-from-env-jdk8.patch
|
||||||
|
./currency-date-range-jdk8.patch
|
||||||
|
];
|
||||||
|
preConfigure = ''
|
||||||
|
chmod +x configure
|
||||||
|
'';
|
||||||
|
configureFlags = [
|
||||||
|
"--with-freetype=${freetype}"
|
||||||
|
"--with-override-langtools=../langtools-${repover}"
|
||||||
|
"--with-override-hotspot=../hotspot-${repover}"
|
||||||
|
"--with-override-corba=../corba-${repover}"
|
||||||
|
"--with-override-jdk=../jdk-${repover}"
|
||||||
|
"--with-override-jaxws=../jaxws-${repover}"
|
||||||
|
"--with-override-jaxp=../jaxp-${repover}"
|
||||||
|
"--with-override-nashorn=../nashorn-${repover}"
|
||||||
|
"--with-boot-jdk=${openjdk}/lib/openjdk/"
|
||||||
|
"--with-update-version=${update}"
|
||||||
|
"--with-build-number=b${build}"
|
||||||
|
"--with-milestone=fcs"
|
||||||
|
];
|
||||||
|
buildFlags = "all";
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/lib/openjdk $out/share $jre/lib/openjdk
|
||||||
|
|
||||||
|
cp -av build/*/images/j2sdk-image/* $out/lib/openjdk
|
||||||
|
|
||||||
|
# Move some stuff to top-level.
|
||||||
|
mv $out/lib/openjdk/include $out/include
|
||||||
|
mv $out/lib/openjdk/man $out/share/man
|
||||||
|
|
||||||
|
# jni.h expects jni_md.h to be in the header search path.
|
||||||
|
ln -s $out/include/linux/*_md.h $out/include/
|
||||||
|
|
||||||
|
# Remove some broken manpages.
|
||||||
|
rm -rf $out/share/man/ja*
|
||||||
|
|
||||||
|
# Remove crap from the installation.
|
||||||
|
rm -rf $out/lib/openjdk/demo $out/lib/openjdk/sample
|
||||||
|
|
||||||
|
# Move the JRE to a separate output.
|
||||||
|
mv $out/lib/openjdk/jre $jre/lib/openjdk/
|
||||||
|
mkdir $out/lib/openjdk/jre
|
||||||
|
lndir $jre/lib/openjdk/jre $out/lib/openjdk/jre
|
||||||
|
|
||||||
|
rm -rf $out/lib/openjdk/jre/bina
|
||||||
|
ln -s $out/lib/openjdk/bin $out/lib/openjdk/jre/bin
|
||||||
|
|
||||||
|
# Set PaX markings
|
||||||
|
exes=$(file $out/lib/openjdk/bin/* $jre/lib/openjdk/jre/bin/* 2> /dev/null | grep -E 'ELF.*(executable|shared object)' | sed -e 's/: .*$//')
|
||||||
|
echo "to mark: *$exes*"
|
||||||
|
for file in $exes; do
|
||||||
|
echo "marking *$file*"
|
||||||
|
paxmark ${paxflags} "$file"
|
||||||
|
done
|
||||||
|
|
||||||
|
# Remove duplicate binaries.
|
||||||
|
for i in $(cd $out/lib/openjdk/bin && echo *); do
|
||||||
|
if [ "$i" = java ]; then continue; fi
|
||||||
|
if cmp -s $out/lib/openjdk/bin/$i $jre/lib/openjdk/jre/bin/$i; then
|
||||||
|
ln -sfn $jre/lib/openjdk/jre/bin/$i $out/lib/openjdk/bin/$i
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Generate certificates.
|
||||||
|
pushd $jre/lib/openjdk/jre/lib/security
|
||||||
|
rm cacerts
|
||||||
|
perl ${./generate-cacerts.pl} $jre/lib/openjdk/jre/bin/keytool ${cacert}/etc/ca-bundle.crt
|
||||||
|
popd
|
||||||
|
|
||||||
|
ln -s $out/lib/openjdk/bin $out/bin
|
||||||
|
ln -s $jre/lib/openjdk/jre/bin $jre/bin
|
||||||
|
'';
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
diff -ur openjdk-7u65-b32/jdk/src/share/classes/sun/security/ssl/TrustManagerFactoryImpl.java openjdk-7u65-b32.new/jdk/src/share/classes/sun/security/ssl/TrustManagerFactoryImpl.java
|
||||||
|
--- openjdk-7u65-b32/jdk/src/share/classes/sun/security/ssl/TrustManagerFactoryImpl.java 2014-07-17 12:12:14.000000000 +0200
|
||||||
|
+++ openjdk-7u65-b32.new/jdk/src/share/classes/sun/security/ssl/TrustManagerFactoryImpl.java 2014-12-09 13:31:27.821960372 +0100
|
||||||
|
@@ -161,6 +161,7 @@
|
||||||
|
/*
|
||||||
|
* Try:
|
||||||
|
* javax.net.ssl.trustStore (if this variable exists, stop)
|
||||||
|
+ * system environment variable JAVAX_NET_SSL_TRUSTSTORE
|
||||||
|
* jssecacerts
|
||||||
|
* cacerts
|
||||||
|
*
|
||||||
|
@@ -169,6 +169,9 @@
|
||||||
|
|
||||||
|
try {
|
||||||
|
storeFileName = props.get("trustStore");
|
||||||
|
+ if (storeFileName == null) {
|
||||||
|
+ storeFileName = System.getenv("JAVAX_NET_SSL_TRUSTSTORE");
|
||||||
|
+ }
|
||||||
|
if (!"NONE".equals(storeFileName)) {
|
||||||
|
if (storeFileName != null) {
|
||||||
|
storeFile = new File(storeFileName);
|
@ -3511,6 +3511,8 @@ let
|
|||||||
jdk = openjdkBootstrap;
|
jdk = openjdkBootstrap;
|
||||||
}) // { outputs = [ "out" ]; };
|
}) // { outputs = [ "out" ]; };
|
||||||
|
|
||||||
|
openjdk8 = callPackage ../development/compilers/openjdk/openjdk8.nix { } // { outputs = [ "out" ]; };
|
||||||
|
|
||||||
# FIXME: Need a way to set per-output meta attributes.
|
# FIXME: Need a way to set per-output meta attributes.
|
||||||
openjre = (lib.setName "openjre-${lib.getVersion pkgs.openjdk.jre}" (lib.addMetaAttrs
|
openjre = (lib.setName "openjre-${lib.getVersion pkgs.openjdk.jre}" (lib.addMetaAttrs
|
||||||
{ description = "The open-source Java Runtime Environment"; }
|
{ description = "The open-source Java Runtime Environment"; }
|
||||||
|
Loading…
Reference in New Issue
Block a user