Package Details: java8-openjfx-doc 8.u202-10

Git Clone URL: https://aur.archlinux.org/java8-openjfx.git (read-only, click to copy)
Package Base: java8-openjfx
Description: Java OpenJFX 8 client application platform (open-source implementation of JavaFX)
Upstream URL: https://wiki.openjdk.java.net/display/OpenJFX/Main
Keywords: java8-openjfx openjfx
Licenses: GPL
Submitter: freswa
Maintainer: Rogach
Last Packager: Rogach
Votes: 12
Popularity: 0.171898
First Submitted: 2022-03-09 18:41 (UTC)
Last Updated: 2024-05-25 07:41 (UTC)

Latest Comments

« First ‹ Previous 1 .. 5 6 7 8 9 10 11 12 13 Next › Last »

dhameoin commented on 2023-02-01 12:23 (UTC)

I cleared the package cache and now everything is fine by me

Rogach commented on 2023-02-01 11:15 (UTC)

@Pillgar We'll have to go deeper then. I prepared a small script for you:

ext.javaBinary = "/usr/lib/jvm/java-8-openjdk/bin/java"
def inStream = new java.io.BufferedReader(new java.io.InputStreamReader(new java.lang.ProcessBuilder(ext.javaBinary, "-version").start().getErrorStream()));
try {
    if (inStream.readLine() != null) {
        String v = inStream.readLine();
        if (v != null) {
            int ib = v.indexOf(" (build ");
            if (ib != -1) {
                String ver = v.substring(ib + 8, v.size() - 1);

                project.ext.set("jdkRuntimeVersion", ver)
            }
        }
    }
} finally {
    inStream.close();
}
if (!project.hasProperty("jdkRuntimeVersion")) throw new Exception("Unable to determine the version of Java in JDK_HOME at $JDK_HOME");
System.out.println(ext.jdkRuntimeVersion)

It's the minimised portion of the code that is failing in the build. Hopefully it will produce the same error message, then we will be able to debug it further.

It should go into src/rt-8u202-ga/test.gradle. Run with cd src/rt-8u202-ga; ../gradle-4.8/bin/gradle -b test.gradle. Can you paste the output from this script?

Rogach commented on 2023-02-01 10:57 (UTC)

@dhameoin Re-checked the checksum on the fresh download, it's still the same for me. What's the checksum you are getting?

dhameoin commented on 2023-01-31 05:49 (UTC)

8u202-ga.tar.bz2 wrong checksum

Pillgar commented on 2023-01-30 08:01 (UTC)

Here's the makepkg output:

https://gist.github.com/Pillgar/b98f0409372a2dfce36c6d49fc94701a

Rogach commented on 2023-01-29 19:06 (UTC)

@SimPilotAdamT That seems to be related to gradle itself. Do you have JDK 8 set as your default JDK? (check with archlinux-java get)

Also can you try stopping gradle daemon before the build? (gradle --stop)

SimPilotAdamT commented on 2023-01-29 16:35 (UTC) (edited on 2023-01-29 16:35 (UTC) by SimPilotAdamT)

@Rogach oh I must be blind... That build fails, too, with this output.

Rogach commented on 2023-01-29 06:19 (UTC)

@Pilligar Can you pastebin the full makepkg output?

Pillgar commented on 2023-01-29 06:14 (UTC)

Picked up _JAVA_OPTIONS: -Dawt.useSystemAAFontSettings=on -Dswing.aatext=true openjdk version "1.8.0_362" OpenJDK Runtime Environment (build 1.8.0_362-b09) OpenJDK 64-Bit Server VM (build 25.362-b09, mixed mode)

I tried removing 'java8-openjfx' and reinstalling, but no dice.

Rogach commented on 2023-01-29 04:14 (UTC) (edited on 2023-01-29 04:14 (UTC) by Rogach)

@SimPilotAdamT Your output shows a different error:

* What went wrong:
Execution failed for task ':checkJfxrtJar'.
> FAIL: /usr/lib/jvm/java-8-openjdk/jre/lib/ext/jfxrt.jar must be removed before building sdk

Can you try uninstalling java8-openjfx before building?