Your message dated Sat, 13 Apr 2024 13:46:23 +0000
with message-id <e1rvdi3-0045os...@fasolo.debian.org>
and subject line Bug#1057531: fixed in openjfx 11.0.11+1-3.2
has caused the Debian Bug report #1057531,
regarding openjfx:  FTBFS with default Java 21
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1057531: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1057531
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: openjfx
Version: 11.0.11+1-3.1
Severity: important
Tags: ftbfs
User: debian-j...@lists.debian.org
Usertags: default-java21

Dear Maintainers,

The package openjfx ftbfs with default Java 21.
The relevant part of the build log:
---------------
Up-to-date check for task ':graphics:compileJava' took 0.162 secs. It is not 
up-to-date because:
  No history is available.
All input files are considered out-of-date for incremental task 
':graphics:compileJava'.
Compiling with Java command line compiler 
'/usr/lib/jvm/java-21-openjdk-amd64/bin/javac'.
Starting process 'command '/usr/lib/jvm/java-21-openjdk-amd64/bin/javac''. 
Working directory: /<<PKGBUILDDIR>>/modules/javafx.graphics Command: 
/usr/lib/jvm/java-21-openjdk-amd64/bin/javac 
@/<<PKGBUILDDIR>>/modules/javafx.graphics/build/tmp/compileJava/java-compiler-args.txt
Successfully started process 'command 
'/usr/lib/jvm/java-21-openjdk-amd64/bin/javac''
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:693:
 error: reference to State is ambiguous
    private ObjectProperty<State> state = new SimpleObjectProperty<>(this, 
"state", State.READY);
                           ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:694:
 error: reference to State is ambiguous
    final void setState(State value) { // package access for the Service
                        ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:732:
 error: reference to State is ambiguous
    @Override public final State getState() { checkThread(); return 
state.get(); }
                           ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:733:
 error: reference to State is ambiguous
    @Override public final ReadOnlyObjectProperty<State> stateProperty() { 
checkThread(); return state; }
                                                  ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:693:
 error: reference to State is ambiguous
    private ObjectProperty<State> state = new SimpleObjectProperty<>(this, 
"state", State.READY);
                                                                                
    ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:696:
 error: reference to State is ambiguous
        final State s = getState();
              ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:697:
 error: reference to State is ambiguous
        if (s != State.CANCELLED) {
                 ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:700:
 error: reference to State is ambiguous
            setRunning(value == State.SCHEDULED || value == State.RUNNING);
                                ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:700:
 error: reference to State is ambiguous
            setRunning(value == State.SCHEDULED || value == State.RUNNING);
                                                            ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:1027:
 error: reference to State is ambiguous
                setState(State.CANCELLED);
                         ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:1029:
 error: reference to State is ambiguous
                runLater(() -> setState(State.CANCELLED));
                                        ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:1420:
 error: reference to State is ambiguous
                task.setState(State.SCHEDULED);
                              ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:1421:
 error: reference to State is ambiguous
                task.setState(State.RUNNING);
                              ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:1436:
 error: reference to State is ambiguous
                        task.setState(State.SUCCEEDED);
                                      ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
/<<PKGBUILDDIR>>/modules/javafx.graphics/src/main/java/javafx/concurrent/Task.java:1455:
 error: reference to State is ambiguous
                    task.setState(State.FAILED);
                                  ^
  both enum java.util.concurrent.Future.State in Future and enum 
javafx.concurrent.Worker.State in Worker match
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use or override a deprecated API that is marked for 
removal.
Note: Recompile with -Xlint:removal for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
15 errors
:graphics:compileJava FAILED
:graphics:compileJava (Thread[#29,Daemon worker,5,main]) completed. Took 7.801 
secs.
---------------


-- System Information:
Debian Release: trixie/sid
  APT prefers mantic-updates
  APT policy: (500, 'mantic-updates'), (500, 'mantic-security'), (500, 'mantic')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.5.0-13-generic (SMP w/32 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

--- End Message ---
--- Begin Message ---
Source: openjfx
Source-Version: 11.0.11+1-3.2
Done: Sebastian Ramacher <sramac...@debian.org>

We believe that the bug you reported is fixed in the latest version of
openjfx, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1057...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sebastian Ramacher <sramac...@debian.org> (supplier of updated openjfx package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sat, 13 Apr 2024 13:01:57 +0200
Source: openjfx
Architecture: source
Version: 11.0.11+1-3.2
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 
<pkg-java-maintain...@lists.alioth.debian.org>
Changed-By: Sebastian Ramacher <sramac...@debian.org>
Closes: 1057531 1068159
Changes:
 openjfx (11.0.11+1-3.2) unstable; urgency=medium
 .
   * Non-maintainer upload
 .
   [ Steve Langasek ]
   * debian/patches/64-bit-time-t.patch: don't unset _FILE_OFFSET_BITS.
     Closes: #1068159.
 .
   [ Pushkar Kulkarni ]
   * d/patches: Patch to fix compiler errors with openjdk-21 (LP: #2053246)
     (Closes: #1057531)
Checksums-Sha1:
 a640fa247217db708a9c1b1f3c3a24304086562d 2184 openjfx_11.0.11+1-3.2.dsc
 af4977da5d46300be3262785da33b560e8a0ed23 26432 
openjfx_11.0.11+1-3.2.debian.tar.xz
 e67a0418d493180129278da5dcffc4453a232542 16796 
openjfx_11.0.11+1-3.2_source.buildinfo
Checksums-Sha256:
 30ba68a574461497278f60660ee7897b060c4b9ea5efec4a62455649c67c05f7 2184 
openjfx_11.0.11+1-3.2.dsc
 f4924722a55e72a354e33ae0d0dd821283a6fd7d731a7a393a7606d651cb0e96 26432 
openjfx_11.0.11+1-3.2.debian.tar.xz
 136f2b0e046c576bc3a9326609df5282c995f3fb4733dee7cf2e2aaddb1d96de 16796 
openjfx_11.0.11+1-3.2_source.buildinfo
Files:
 c1db1d8ab059e1a732c0e7fde4cff51d 2184 java optional openjfx_11.0.11+1-3.2.dsc
 ba695caa97ca966c8a26873f7fb3a5e4 26432 java optional 
openjfx_11.0.11+1-3.2.debian.tar.xz
 a39a9bd85e47b92500e5fb7f2ba9abfb 16796 java optional 
openjfx_11.0.11+1-3.2_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iHUEARYKAB0WIQRCYn6EHZln2oPh+pAhk2s2YA/NiQUCZhqFcQAKCRAhk2s2YA/N
icT0APwNDYAyUQge3S7QLvixHksjNGH4jAAwnthZ74vUVe4JvQEA9ILCTZU0umCF
Hwxj08WCinWDmZAahbBiBLd3lmQfdgo=
=tLvu
-----END PGP SIGNATURE-----

Attachment: pgppLokkEL7oj.pgp
Description: PGP signature


--- End Message ---
__
This is the maintainer address of Debian's Java team
<https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-maintainers>.
 Please use
debian-j...@lists.debian.org for discussions and questions.

Reply via email to