diff options
author | 2025-01-29 19:49:53 +0000 | |
---|---|---|
committer | 2025-02-13 10:00:07 +0000 | |
commit | 8c725c47db48f2cfc57b00a21963e0b40d4b5788 (patch) | |
tree | febecd0c9e36e16f428ab6cda5c7fc643919959a /dev-debug | |
parent | app-office/libreoffice-bin: add 25.2.0 (switch to upstream binaries) (diff) | |
download | gentoo-8c725c47db48f2cfc57b00a21963e0b40d4b5788.tar.gz gentoo-8c725c47db48f2cfc57b00a21963e0b40d4b5788.tar.bz2 gentoo-8c725c47db48f2cfc57b00a21963e0b40d4b5788.zip |
dev-debug/gdb[rocm]: limit dependencies for dev-libs/rocdbgapi
gdb-15.2 fails to compile with rocdbgapi-6.3 due to API change.
gdb-16.1 and gdb-9999 fail to compile with rocdbgapi-6.1.1 due to "amd-dbgapi >= 0.75.0" requirement.
All changes are just compilation fixes, so no revision bumps.
Closes: https://bugs.gentoo.org/948372
Signed-off-by: Sv. Lockal <lockalsash@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-debug')
-rw-r--r-- | dev-debug/gdb/gdb-15.2-r101.ebuild | 2 | ||||
-rw-r--r-- | dev-debug/gdb/gdb-16.2.ebuild | 2 | ||||
-rw-r--r-- | dev-debug/gdb/gdb-9999.ebuild | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/dev-debug/gdb/gdb-15.2-r101.ebuild b/dev-debug/gdb/gdb-15.2-r101.ebuild index ccaf7c91ccdc..ca60147d34df 100644 --- a/dev-debug/gdb/gdb-15.2-r101.ebuild +++ b/dev-debug/gdb/gdb-15.2-r101.ebuild @@ -98,7 +98,7 @@ RDEPEND=" python? ( ${PYTHON_DEPS} ) guile? ( ${GUILE_DEPS} ) xml? ( dev-libs/expat ) - rocm? ( dev-libs/rocdbgapi ) + rocm? ( <dev-libs/rocdbgapi-6.3 ) source-highlight? ( dev-util/source-highlight ) diff --git a/dev-debug/gdb/gdb-16.2.ebuild b/dev-debug/gdb/gdb-16.2.ebuild index 991cd5491c92..fd6b67c815cc 100644 --- a/dev-debug/gdb/gdb-16.2.ebuild +++ b/dev-debug/gdb/gdb-16.2.ebuild @@ -102,7 +102,7 @@ RDEPEND=" python? ( ${PYTHON_DEPS} ) guile? ( ${GUILE_DEPS} ) xml? ( dev-libs/expat ) - rocm? ( dev-libs/rocdbgapi ) + rocm? ( >=dev-libs/rocdbgapi-6.3 ) source-highlight? ( dev-util/source-highlight ) diff --git a/dev-debug/gdb/gdb-9999.ebuild b/dev-debug/gdb/gdb-9999.ebuild index 039c98a9e0ca..fd6b67c815cc 100644 --- a/dev-debug/gdb/gdb-9999.ebuild +++ b/dev-debug/gdb/gdb-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -102,7 +102,7 @@ RDEPEND=" python? ( ${PYTHON_DEPS} ) guile? ( ${GUILE_DEPS} ) xml? ( dev-libs/expat ) - rocm? ( dev-libs/rocdbgapi ) + rocm? ( >=dev-libs/rocdbgapi-6.3 ) source-highlight? ( dev-util/source-highlight ) |