~alpine/aports

community/openjdk7: install profile file v1 PROPOSED

Sören Tempel: 2
 community/openjdk7: install profile file
 community/openjdk8: install profile file

 2 files changed, 12 insertions(+), 2 deletions(-)
> What if all java's are installed. openjdk7, openjdk8 and gcc-java.
> Which one's JAVA_HOME should take preference? Should it be left up to
> the execution order of profile.d? Or should we let java-common ship one
> profile script that setups the JAVA_HOME to proper place? 
My idea was to leave this up to the execution order, but you are right
shipping the /etc/profile.d file with java-common is a better approach.

On 11.12.15, Timo Teras wrote:
> Would it be enough to make it point to "/usr/lib/jvm/default-jvm/jre/"
> always?
Yeah, that should probably work. I will test this and submit a patch for
java-common instead.

S�ren.


---
Unsubscribe:  alpine-aports+unsubscribe@lists.alpinelinux.org
Help:         alpine-aports+help@lists.alpinelinux.org
---
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/aports/patches/1889/mbox | git am -3
Learn more about email & git

[alpine-aports] [PATCH 1/2] community/openjdk7: install profile file Export this patch

Use it to set JAVA_HOME which is used by some java applications like
android studio or apache maven.
---
 community/openjdk7/APKBUILD | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/community/openjdk7/APKBUILD b/community/openjdk7/APKBUILD
index cb913ba..05f078b 100644
--- a/community/openjdk7/APKBUILD
+++ b/community/openjdk7/APKBUILD
@@ -5,7 +5,7 @@ _icedteaver=2.6.3
# pkgver is <JDK version>.<JDK update>
# check icedtea JDK when updating
pkgver=7.91.$_icedteaver
pkgrel=1
pkgrel=2
pkgdesc="Sun OpenJDK 7 via IcedTea"
url="http://icedtea.classpath.org/"
arch="all"
@@ -204,6 +204,11 @@ jrebase() {

	# pax mark again (due to fakeroot xattr handling bug)
	$_builddir/pax-mark-vm "$subpkgdir"/$INSTALL_BASE

	# install profile file in /etc/profile.d
	mkdir -p "$pkgdir"/etc/profile.d
	echo "export JAVA_HOME=\"\${JAVA_HOME:-$INSTALL_BASE/jre}\"" \
		> "$pkgdir/etc/profile.d/$pkgname.sh" || return 1
}

jre() {
-- 
2.6.4



---
Unsubscribe:  alpine-aports+unsubscribe@lists.alpinelinux.org
Help:         alpine-aports+help@lists.alpinelinux.org
---

[alpine-aports] [PATCH 2/2] community/openjdk8: install profile file Export this patch

Use it to set JAVA_HOME which is used by some java applications like
android studio or apache maven.
---
 community/openjdk8/APKBUILD | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/community/openjdk8/APKBUILD b/community/openjdk8/APKBUILD
index 643af10..976b3cb 100644
--- a/community/openjdk8/APKBUILD
+++ b/community/openjdk8/APKBUILD
@@ -5,7 +5,7 @@ _java_ver=8
_jdk_update=66
_jdk_build=17
pkgver=$_java_ver.$_jdk_update.$_jdk_build
pkgrel=1
pkgrel=2
pkgdesc="Sun OpenJDK 8"
url="http://openjdk.java.net"
arch="x86_64 x86"
@@ -145,6 +145,11 @@ package() {
		| xargs chmod go+r

	pax_mark_vm "$pkgdir"/$INSTALL_BASE

	# install profile file in /etc/profile.d
	mkdir -p "$pkgdir"/etc/profile.d
	echo "export JAVA_HOME=\"\${JAVA_HOME:-$INSTALL_BASE/jre}\"" \
		> "$pkgdir/etc/profile.d/$pkgname.sh" || return 1
}

jrelib() {
-- 
2.6.4



---
Unsubscribe:  alpine-aports+unsubscribe@lists.alpinelinux.org
Help:         alpine-aports+help@lists.alpinelinux.org
---