commit: 698144dc08b869569fe1fbd69e87b3c8279b3d7e Author: Florian Schmaus <flow <AT> gentoo <DOT> org> AuthorDate: Mon Jun 2 15:30:56 2025 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Mon Jun 2 15:34:51 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=698144dc
sys-libs/liburing: backport fix addressing consumer compilation error Closes: https://bugs.gentoo.org/956879 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org> sys-libs/liburing/Manifest | 1 + .../liburing/{liburing-2.10.ebuild => liburing-2.10-r1.ebuild} | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/sys-libs/liburing/Manifest b/sys-libs/liburing/Manifest index e1579ae35894..3b6ad8ddce40 100644 --- a/sys-libs/liburing/Manifest +++ b/sys-libs/liburing/Manifest @@ -1,3 +1,4 @@ +DIST liburing-2.10-fix-compilation-error-io_uring_for_each_cqe.patch 2593 BLAKE2B cf34ff93859c489a524c9587a1868df27ce4f0b9f19aa8cb0b94c48a5addad5afa3d9469894962652dffcf2228830d4b8547f03220e9c7aa6b20d2a1ca7e9159 SHA512 93d68779cb10b4552306f715a723be92b2acbd9559acef75156b072460b72ccb94e2b06988f1b00745cf7247e886e242d6ebe39a31bff9fad67af80d95ab8fe0 DIST liburing-2.10.tar.gz 428315 BLAKE2B f5477f7a1a30202feea3e97f236f6a8a2db59923a0ba9c13dda2cd8de0831bb0979dc6acdef4a2f1797ce2637125def54b9f3d50f14ef01affeed43b089228df SHA512 6fb6e7ce66917d9438095e05916f90d834034ac3f6d6d8b6ee1eadf48ab9e499efa4af489dc72f8acc4a0b018f917ffcb8af4af682b47512566205519dd1f5db DIST liburing-2.7.gh.tar.gz 347638 BLAKE2B 3e281cbf9be72cc8e04b04486df4dd9dd32c95ef9b84f7eae3253eb8e9a4afdaf8048ac359d6d250fecfb0a2bded51e46c1ab073d0e96c4d7d5d1d554d65c2b2 SHA512 c65146ee53defba4f9b752674be8489757f60be0855b361c6d1136119c74803351e5ccc8a1890c0777bfe61da4c0fd997230fc8817ff3929a7e2186b389cdc28 DIST liburing-2.9.tar.gz 407191 BLAKE2B 7081f9430e9532cad659e24de7ba998ad40f15a3fc3bf08fbe2b30df2bb335d4b06affb98d5667d4f8e6c8bc6e7a98c25caddd57ec5c98940562eb0e7977e54d SHA512 f27233e6128444175b18cd1d45647acdd27b906a8cd561029508710e443b44416b916cad1b2c1217e23d9a5ffb5ba68b119e9c812eae406650fbd10bf26c2fa5 diff --git a/sys-libs/liburing/liburing-2.10.ebuild b/sys-libs/liburing/liburing-2.10-r1.ebuild similarity index 85% rename from sys-libs/liburing/liburing-2.10.ebuild rename to sys-libs/liburing/liburing-2.10-r1.ebuild index 51789caff4e1..b64277e20260 100644 --- a/sys-libs/liburing/liburing-2.10.ebuild +++ b/sys-libs/liburing/liburing-2.10-r1.ebuild @@ -11,7 +11,11 @@ if [[ "${PV}" == *9999 ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/axboe/liburing.git" else - SRC_URI="https://github.com/axboe/liburing/archive/refs/tags/${P}.tar.gz" + SRC_URI=" + https://github.com/axboe/liburing/archive/refs/tags/${P}.tar.gz + https://github.com/axboe/liburing/commit/6836160ae6ae9fdc20d703de55162bfc97169542.patch + -> ${PN}-2.10-fix-compilation-error-io_uring_for_each_cqe.patch + " KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" QA_PKGCONFIG_VERSION=${PV} fi @@ -28,6 +32,10 @@ RESTRICT="!test? ( test )" DEPEND=">=sys-kernel/linux-headers-5.1" RDEPEND="${DEPEND}" +PATCHES=( + "${DISTDIR}"/${PN}-2.10-fix-compilation-error-io_uring_for_each_cqe.patch +) + src_prepare() { default
