Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Java 8 #21

Merged
merged 1 commit into from
Mar 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions package-lists/buildall.pkgs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
# be available to appliance-build.
#

# Note: bcc should be built before bpftrace since it provides libbcc which is
# required to build bpftrace.
# Note: The following packages should be built first be cause other packages
# depend on them being built.
# - bcc is required by bpftrace
# - java8 is required by the saml app
bcc
java8

bpftrace
cloud-init
Expand Down
53 changes: 53 additions & 0 deletions packages/java8/config.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
#!/bin/bash
#
# Copyright 2019 Delphix
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# shellcheck disable=SC2034

DEFAULT_PACKAGE_GIT_URL=none

tarfile="jdk-8u171-linux-x64.tar.gz"
jdk_path="/usr/lib/jvm/oracle-java8-jdk-amd64"

function prepare() {
logmust install_pkgs java-package
}

function fetch() {
logmust cd "$WORKDIR"
local url="http://artifactory.delphix.com/artifactory"
logmust wget -nv "$url/java-binaries/linux/jdk/8/$tarfile" -O "$tarfile"
}

function build() {
logmust cd "$WORKDIR"
logmust env DEB_BUILD_OPTIONS=nostrip fakeroot make-jpkg "$tarfile" <<<y
logmust mv ./*.deb "$WORKDIR/artifacts/"
#
# Store the install path of the JDK in a file so that the users of this
# Java package know where to look. This is especially useful for
# other linux-pkg packages that have a build dependency on this
# particular version of Java, as they don't have to hardcode the
# path in their build definition. This would also be useful if external
# packages, such as the app-gate, decide to fetch and install Java from
# the Linux-pkg bundle.
#
logmust bash -c "echo $jdk_path >'$WORKDIR/artifacts/JDK_PATH'"
pzakha marked this conversation as resolved.
Show resolved Hide resolved
pzakha marked this conversation as resolved.
Show resolved Hide resolved
#
# Install the Java package on this system so that other linux-pkg
# packages can use it.
#
logmust install_pkgs "$WORKDIR/artifacts/"*.deb
pzakha marked this conversation as resolved.
Show resolved Hide resolved
pzakha marked this conversation as resolved.
Show resolved Hide resolved
}