From 5bedad1a4b1d98dab66cef77684d59c43f5be88a Mon Sep 17 00:00:00 2001 From: Manuel Bentele Date: Fri, 5 Feb 2021 14:26:42 +0100 Subject: [openjdk-8-jre-headless] Add Java runtime environment 8 as new module --- core/modules/openjdk-8-jre-headless/module.build | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 core/modules/openjdk-8-jre-headless/module.build (limited to 'core/modules/openjdk-8-jre-headless/module.build') diff --git a/core/modules/openjdk-8-jre-headless/module.build b/core/modules/openjdk-8-jre-headless/module.build new file mode 100644 index 00000000..5854e16a --- /dev/null +++ b/core/modules/openjdk-8-jre-headless/module.build @@ -0,0 +1,17 @@ +#!/bin/bash + +fetch_source() { + : +} + +build() { + # copy mandatory system packages + COPYLIST="list_dpkg_output" + [ -e "${COPYLIST}" ] && rm "${COPYLIST}" + list_packet_files >> "${COPYLIST}" + tarcopy "$(cat "${COPYLIST}" | sort -u)" "${MODULE_BUILD_DIR}" +} + +post_copy() { + : +} -- cgit v1.2.3-55-g7522 From c3865ce2ddf6c2cf769d583557b9cfef1ee4571e Mon Sep 17 00:00:00 2001 From: Manuel Bentele Date: Fri, 25 Jun 2021 11:41:47 +0200 Subject: [openjdk-8-jre-headless] Remove build support of Java 8 JRE for MiniLinux --- core/modules/openjdk-8-jre-headless/module.build | 6 +----- core/modules/openjdk-8-jre-headless/module.conf | 11 +++-------- 2 files changed, 4 insertions(+), 13 deletions(-) (limited to 'core/modules/openjdk-8-jre-headless/module.build') diff --git a/core/modules/openjdk-8-jre-headless/module.build b/core/modules/openjdk-8-jre-headless/module.build index 5854e16a..61fd9a57 100644 --- a/core/modules/openjdk-8-jre-headless/module.build +++ b/core/modules/openjdk-8-jre-headless/module.build @@ -5,11 +5,7 @@ fetch_source() { } build() { - # copy mandatory system packages - COPYLIST="list_dpkg_output" - [ -e "${COPYLIST}" ] && rm "${COPYLIST}" - list_packet_files >> "${COPYLIST}" - tarcopy "$(cat "${COPYLIST}" | sort -u)" "${MODULE_BUILD_DIR}" + : } post_copy() { diff --git a/core/modules/openjdk-8-jre-headless/module.conf b/core/modules/openjdk-8-jre-headless/module.conf index fba37fa8..668ddf88 100644 --- a/core/modules/openjdk-8-jre-headless/module.conf +++ b/core/modules/openjdk-8-jre-headless/module.conf @@ -1,10 +1,5 @@ #!/bin/bash -REQUIRED_BINARIES=" - java -" - -REQUIRED_DIRECTORIES=" - /etc - /usr/lib/jvm/java-8-openjdk-amd64/jre/lib -" +REQUIRED_BINARIES="" +REQUIRED_LIBRARIES="" +REQUIRED_DIRECTORIES="" -- cgit v1.2.3-55-g7522