summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Vladimir Petko [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
(fs) UnixFileAttributeViews setTimes() failing on armhf, Ubuntu noble
Origin: upstream, https://github.com/openjdk/jdk/pull/20208
Bug: https://bugs.openjdk.org/browse/JDK-
8336529
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/openjdk-23/+bug/
2073335
Last-Update: 2024-07-17
time_t transition in Debian/Ubuntu left 32 bit time_t symbols in glibc.
Looking up 'futimens' via dlsym returns 32 bit version of the function.
This is causing failure to set last modified time
(e.g. instead of year 2017 we get 1976 in the test).
Using the function directly correctly calls 64 bit versions.
When we lookup functions with time_t arguments through dlsym()
calls we should use 64 bit versions.
Last-Update: 2024-07-17
Gbp-Pq: Name jdk-
8336529-proposed.patch
Vladimir Petko [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
8331541: [i386] linking with libjvm.so fails after JDK-
8283326
Origin: https://github.com/openjdk/jdk/pull/19048
Bug: https://bugs.openjdk.org/browse/JDK-
8331541
Applied-Upstream: commit:
2d622152b07bba0aba8fd5b1e24293e28d6e69f5
Last-Update: 2024-05-02
i386 declaration of _SafeFetch32_impl contains an underscore
that causes an undefined symbol in libjvm.so.
Disable -Wl,--allow-shlib-undefined link flag that allowed the
build to succeed.
Gbp-Pq: Name jdk-
8331541.patch
Vladimir Petko [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
set default compatible cds alignment to auto for arm64
Bug: https://bugs.openjdk.org/browse/JDK-
8334895
Last-Update: 2024-06-25
ARM64 requires cds alignment option to be enabled if CDS is enabled.
Setting it to true will enable the option even if CDS is disabled
causing a configuration error. Setting option to auto allows to
enable it only when CDS is enabled.
Gbp-Pq: Name jdk-
8334895-proposed.patch
Vladimir Petko [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
use int instead of time_t to print timezone info
Bug: https://bugs.openjdk.org/browse/JDK-
8334502
Last-Update: 2024-06-19
printf() call uses %02d format specifier that requires an int parameter.
Gbp-Pq: Name jdk-
8334502-proposed.patch
Vladimir Petko [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
remove declaration of _Copy_conjoint_bytes
Bug: https://bugs.openjdk.org/browse/JDK-
8329983
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/collectd/+bug/
2058966
Last-Update: 2024-04-10
JDK-
8142362 removed implementation of _Copy_conjoint_bytes
but left the symbol declaration in for armhf.
This causes link failure against libjvm.so.
Gbp-Pq: Name jdk-
8329983.patch
Vladimir Petko [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
Link with -fPIC version of binutils
Forwarded: not-needed
Last-Update: 2024-03-19
Link against -fPIC binutils library to avoid hard dependency on binutils.
Gbp-Pq: Name hsdis-fpic.patch
Robbin Ehn [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
8295795: hsdis does not build with binutils 2.39+
Origin: upstream, https://github.com/openjdk/jdk/commit/
c2efd7741202a5e3c209de62b8b5e6bd8ae7611a
Bug: https://bugs.openjdk.org/browse/JDK-
8295795
Last-Update: 2024-03-12
binutils 2.39 changed the signature of init_disassemble_info,
breaking the build.
See https://lore.kernel.org/bpf/
20220622231624.t63bkmkzphqvh3kx@alap3.anarazel.de/T/
Gbp-Pq: Name jdk-
8295795.patch
Daniel Jeliński [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
8318418: hsdis build fails with system binutils on Ubuntu
Origin: upstream, https://github.com/openjdk/jdk/commit/
3c70f2c1e9fb91cd5d7a66ef1e2a39672230208c
Bug: https://bugs.openjdk.org/browse/JDK-
8318418
Last-Update: 2024-03-12
Ubuntu does not need libiberty.h include for the build.
Gbp-Pq: Name jdk-
8318418.patch
Vladimir Petko [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
print warning to install openjdk-*-jre package
Forwarded: not-needed
fontmanager support was moved to recommends, warn user to
either install -jre package or recommended packages.
Forwarding is not needed as this is a Debian-only issue.
Gbp-Pq: Name warn-fontmanager.patch
Vladimir Petko [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
javadoc crashes: class cast exeception com.sun.tools.javac.code.Symtab$6
Bug: https://github.com/openjdk/jdk/pull/17435
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=
1057500
Applied-Upstream: commit,
64c3642c57719940855b220025b33758950b3980
Last-Update: 2024-01-24
This is a proposed fix for JDK-
8242564. Javadoc option '--ignore-source-errors'
allows generating Javadoc for the packages that contain compilation errors.
jdk.javadoc.internal.doclets.toolkit.util.ClassTree generates a type hierarchy
for javadoc that may include error types such as class Foo extends Bar {}
where Bar is undefined.
The user still wants to generate documentation for Foo and have Bar as a text label.
For the unknown class Bar it is impossible to detect the enclosing class/file and
javadoc crashes with an exception.
Gbp-Pq: Name jdk-
8242564.patch
Sebastian Lövdahl [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
attach in linux hangs due to permission denied accessing /proc/pid/root
Bug: https://bugs.openjdk.org/browse/JDK-
8307977
Bug: https://bugs.openjdk.org/browse/JDK-
8226919
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=
1034601
Last-Update: 2023-04-18
The attach API uses /proc/pid/root in order to support containers.
Dereferencing this symlink is governed by ptrace access mode PTRACE_MODE_READ_FSCREDS
which may not succeed when running as the user running the JRE.
This breaks running jcmd and jmap as the same user the JVM is running as.
Use tmpdir when pid matches ns_pid.
From
36b554e2de46d77898be4d0feae0ee2171b445bc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sebastian=20L=C3=B6vdahl?= <sebastian.lovdahl@hibox.tv>
Date: Tue, 18 Apr 2023 12:50:32 +0300
Subject: [PATCH]
8226919: Fix dynamic attach in Linux for non-container
environments
Gbp-Pq: Name jdk-
8307977-proposed.patch
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
compile-preview
Gbp-Pq: Name compile-preview.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
arch-add-ports
Gbp-Pq: Name arch-add-ports.diff
Vladimir Petko [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
Use IP address in tests
Forwarded: not-needed
Last-Update: 2023-03-27
Ubuntu build machines are not set up for dns. Use IP addresses to get correct test
outcomes.
Gbp-Pq: Name test-use-ip-address.patch
Vladimir Petko [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
Replace hostname with a non-existant ip address
Forwarded: no
Last-Update: 2023-03-27
In Ubuntu build environment we do not have DNS resolver, causing an unexpected test
failure. Use a non-existant IP address instead of hostname.
Gbp-Pq: Name ldap-timeout-test-use-ip.patch
Vladimir Petko [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
Add missing permissions for TestNG 7.7
Last-Update: 2023-03-24
TestNG has added more configuration properties, allow them in the minimal policy
Gbp-Pq: Name update-permission-test.patch
Vladimir Petko [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
Skip test when getFileStore() fails
Bug: https://bugs.openjdk.org/browse/JDK-
8166162
Forwarded: not-needed
Last-Update: 2023-03-27
Due to https://bugs.openjdk.org/browse/JDK-
8166162 getFileStore() fails with exception
failing the test suite. Skip test when getFileStore() throws.
Gbp-Pq: Name log-generated-classes-test.patch
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
Misalign address in the test rather than structure
mk68-support.diff aligned metaspace structures by 4 bytes breaking the test.
Add 1 to address type rather than aligned structure to produce misaligned pointer.
Gbp-Pq: Name misalign-pointer-for-armhf.patch
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
mips
# DP: Untested patch suggested to fix #983878
# DP: Untested patch suggested to fix #983878
Gbp-Pq: Name mips.diff
Julian Gilbey [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
jlink: Hash of module differs to expected hash recorded in java.base
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=944738
Forwarded: not-needed
The cause is the use of dh_strip_nondeterminism late in the build
process. This reorganises the jmod files, which in turn changes their
SHA256 checksums. This would not be a problem, except that the
checksums are saved in java.base.jmod *before* the use of
dh_strip_nondeterminism. Performing this stripping immediately after
each jmod file is created results in the checksums being consistent
throughout.
Gbp-Pq: Name reproducible-build-jmod.diff
Emmanuel Bourg [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
Makes the generated module-info.java files reproducible (removes a captured build path)
Forwarded: no
Gbp-Pq: Name reproducible-module-info.diff
Emmanuel Bourg [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
Makes the generated character data classes reproducible (removes a timestamp and trims a build path captured in the comments)
Forwarded: no
Gbp-Pq: Name reproducible-character-data.diff
John Paul Adrian Glaubitz [Fri, 21 Dec 2018 12:18:17 +0000 (15:18 +0300)]
[PATCH] Don't optimize fdlibm-fork for Zero on linux-sparc (Zero)
Gbp-Pq: Name Don-t-optimize-fdlibm-fork-for-Zero-on-linux-sparc-Z.patch
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
make-debug-print
Gbp-Pq: Name make-debug-print.diff
John Paul Adrian Glaubitz [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
Fix alignment issues on m68k
Last Update: 2019-04-29
Last Update: 2019-04-29
Gbp-Pq: Name m68k-support.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
dnd-files
Gbp-Pq: Name dnd-files.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
atk-wrapper-security
Gbp-Pq: Name atk-wrapper-security.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
zero-x32
Gbp-Pq: Name zero-x32.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
machine-flag
Gbp-Pq: Name machine-flag.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
jdk-i18n-pt_BR
Gbp-Pq: Name jdk-i18n-pt_BR.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
jdk-getAccessibleValue
Gbp-Pq: Name jdk-getAccessibleValue.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
s390x-opt
Gbp-Pq: Name s390x-opt.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
multiple-pkcs11-library-init
# HG changeset patch
# User andrew
# Date
1352129932 0
# Node ID
e9c857dcb964dbfa5eef3a3590244cb4d999cf7a
# Parent
1406789608b76d0906881979335d685855f44190
Allow multiple PKCS11 library initialisation to be a non-critical error.
Gbp-Pq: Name multiple-pkcs11-library-init.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
adlc-parser
# DP: fixes an uninitialized memory issue in adlc
# DP: fixes an uninitialized memory issue in adlc
Gbp-Pq: Name adlc-parser.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
default-jvm-cfg
Gbp-Pq: Name default-jvm-cfg.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
icedtea-override-redirect-compiz
Gbp-Pq: Name icedtea-override-redirect-compiz.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
icc_loading_with_symlink
Gbp-Pq: Name icc_loading_with_symlink.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
hotspot-mips-align
Gbp-Pq: Name hotspot-mips-align.diff
OpenJDK Team [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
system-pcsclite
Gbp-Pq: Name system-pcsclite.diff
Matthias Klose [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
openjdk-21 (21.0.4+7-2) unstable; urgency=medium
[ Vladimir Petko ]
* d/copyright: Regenerate copyright.
* d/watch: Use fixed googletest version.
* d/rules, d/t/*: Collate all excluded tests into d/problemlist.csv.
* d/rules: Enable fallback linker for Foreign Function and Memory API
on i386 and armhf.
* d/p/jdk-
8336529-proposed.patch: Fix time_t migration issue on armhf.
openjdk is unable to set file last modified timestamp.
* d/rules: Enable fallback linker for architectures that do not
provide a native one.
* d/rules, d/control.in: Depend on pkgconf rather than pkg-config in
bookworm and later releases. This resolves lintian warning
build-depends-on-obsolete-package Build-Depends: pkg-config => pkgconf.
* d/rules: Drop autotools-dev dependency for the modern debhelper.
This resolves obsolete autotools-dev dependency lintian warning.
See #844191.
* d/t/control.in: allow stderr for smoke tests.
[dgit import unpatched openjdk-21 21.0.4+7-2]
Matthias Klose [Tue, 30 Jul 2024 06:37:36 +0000 (08:37 +0200)]
Import openjdk-21_21.0.4+7-2.debian.tar.xz
[dgit import tarball openjdk-21 21.0.4+7-2 openjdk-21_21.0.4+7-2.debian.tar.xz]
Matthias Klose [Wed, 17 Jul 2024 07:31:36 +0000 (09:31 +0200)]
Import openjdk-21_21.0.4+7.orig.tar.xz
[dgit import orig openjdk-21_21.0.4+7.orig.tar.xz]
Matthias Klose [Wed, 17 Jul 2024 07:31:36 +0000 (09:31 +0200)]
Import openjdk-21_21.0.4+7.orig-googletest.tar.xz
[dgit import orig openjdk-21_21.0.4+7.orig-googletest.tar.xz]