~alpine/aports

testing/openjdk8: install profile to /etc/profile.d v1 PROPOSED

Sören Tempel: 2
 testing/openjdk8: install profile to /etc/profile.d
 main/openjdk7: install profile to /etc/profile.d

 2 files changed, 18 insertions(+), 2 deletions(-)
> On 02.10.15, Timo Teras wrote:
> > Is this needed for some specific reason?
> > 
> > The idea has been that java-common provides symlinks
> > from /usr/bin/{$java_utils} to ../lib/default-jvm/... and
> > default-jvm is updated by java-common's trigger script when ever a
> > java sdk is installed or removed.
> 
> Ah, didn't know about java-common, just looked at it and it is missing
> many binaries (e.g. javac). Wouldn't it be the better solution to do
> it this way instead of relying on java-common? It's obviously harder
> to keep java-common up to date instead of simply installing a profile
> file. If you disagree changing $PATH isn't needed for some specific
> reason but some applications rely on JAVA_HOME being set one example
> is the android studio IDE.
Yes, it was supposed to export only the JRE. Javac is part of the SDK.
Perhaps java-common should export the 'default-jvm' to environment
then. Or potentially have the SDK packages provide the environment. But
at least for JRE only I'd rather not export anything to environment
unless absolute necessary for some specific reason.


---
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/1357/mbox | git am -3
Learn more about email & git

[alpine-aports] [PATCH 1/2] testing/openjdk8: install profile to /etc/profile.d Export this patch

---
 testing/openjdk8/APKBUILD | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/testing/openjdk8/APKBUILD b/testing/openjdk8/APKBUILD
index d7400db..35ca206 100644
--- a/testing/openjdk8/APKBUILD
+++ b/testing/openjdk8/APKBUILD
@@ -1,3 +1,4 @@
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Contributor: Timo Teras <timo.teras@iki.fi>
# Maintainer: Timo Teras <timo.teras@iki.fi>
pkgname=openjdk8
@@ -5,7 +6,7 @@ _java_ver=8
_jdk_update=66
_jdk_build=02
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 +146,13 @@ package() {
		| xargs chmod go+r

	pax_mark_vm "$pkgdir"/$INSTALL_BASE

	# install profile file in /etc/profile.d
	mkdir -p "$pkgdir"/etc/profile.d
	cat > "$pkgdir/etc/profile.d/$pkgname.sh" <<EOF
export JAVA_HOME="\${JAVA_HOME:-$INSTALL_BASE/jre}"
export PATH="\$PATH:\$JAVA_HOME/bin:$INSTALL_BASE/bin"
EOF
}

jrelib() {
-- 
2.6.0



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

[alpine-aports] [PATCH 2/2] main/openjdk7: install profile to /etc/profile.d Export this patch

---
 main/openjdk7/APKBUILD | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/main/openjdk7/APKBUILD b/main/openjdk7/APKBUILD
index 0325f10..d5fb04f 100644
--- a/main/openjdk7/APKBUILD
+++ b/main/openjdk7/APKBUILD
@@ -1,3 +1,4 @@
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Contributor: Timo Teras <timo.teras@iki.fi>
# Maintainer: Timo Teras <timo.teras@iki.fi>
pkgname=openjdk7
@@ -5,7 +6,7 @@ _icedteaver=2.6.1
# pkgver is <JDK version>.<JDK update>
# check icedtea JDK when updating
pkgver=7.85.$_icedteaver
pkgrel=0
pkgrel=1
pkgdesc="Sun OpenJDK 7 via IcedTea"
url="http://icedtea.classpath.org/"
arch="all"
@@ -168,6 +169,13 @@ package() {

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

	# install profile file in /etc/profile.d
	mkdir -p "$pkgdir"/etc/profile.d
	cat > "$pkgdir/etc/profile.d/$pkgname.sh" <<EOF
export JAVA_HOME="\${JAVA_HOME:-$INSTALL_BASE/jre}"
export PATH="\$PATH:\$JAVA_HOME/bin:$INSTALL_BASE/bin"
EOF
}

jrelib() {
-- 
2.6.0



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