From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BDBA9159C9B for ; Tue, 30 Jul 2024 20:12:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6168E29C4; Tue, 30 Jul 2024 20:11:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3F10E29C4 for ; Tue, 30 Jul 2024 20:11:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A6E2C33BF08 for ; Tue, 30 Jul 2024 20:11:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 155A61E65 for ; Tue, 30 Jul 2024 20:11:57 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1722370210.02af742b0ca05dcbf5ae3ae1648b3ff58d9d4d13.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libsemigroups/files/, sci-libs/libsemigroups/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/libsemigroups/files/libsemigroups-2.7.3-gcc-15-buildfix.patch sci-libs/libsemigroups/libsemigroups-2.7.3-r1.ebuild sci-libs/libsemigroups/libsemigroups-2.7.3.ebuild X-VCS-Directories: sci-libs/libsemigroups/files/ sci-libs/libsemigroups/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 02af742b0ca05dcbf5ae3ae1648b3ff58d9d4d13 X-VCS-Branch: master Date: Tue, 30 Jul 2024 20:11:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 16da48e6-cee7-40f0-9a07-174a90ab3597 X-Archives-Hash: 3ee257a2452236cc2756d82ef352036a commit: 02af742b0ca05dcbf5ae3ae1648b3ff58d9d4d13 Author: Michael Orlitzky gentoo org> AuthorDate: Tue Jul 30 20:09:10 2024 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Tue Jul 30 20:10:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02af742b sci-libs/libsemigroups: backport gcc-15 build fix Closes: https://bugs.gentoo.org/936564 Signed-off-by: Michael Orlitzky gentoo.org> .../libsemigroups-2.7.3-gcc-15-buildfix.patch | 22 ++++++++++++++++++++++ ...-2.7.3.ebuild => libsemigroups-2.7.3-r1.ebuild} | 2 ++ 2 files changed, 24 insertions(+) diff --git a/sci-libs/libsemigroups/files/libsemigroups-2.7.3-gcc-15-buildfix.patch b/sci-libs/libsemigroups/files/libsemigroups-2.7.3-gcc-15-buildfix.patch new file mode 100644 index 000000000000..40214b18b9ad --- /dev/null +++ b/sci-libs/libsemigroups/files/libsemigroups-2.7.3-gcc-15-buildfix.patch @@ -0,0 +1,22 @@ +From b7a413284e408280336ee681dd031877d779d0ea Mon Sep 17 00:00:00 2001 +From: "James D. Mitchell" +Date: Mon, 29 Jul 2024 11:13:32 +0100 +Subject: [PATCH] sims: fix issue 557 + +--- + include/libsemigroups/sims1.tpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/include/libsemigroups/sims1.tpp b/include/libsemigroups/sims1.tpp +index bc8bda372..698845222 100644 +--- a/include/libsemigroups/sims1.tpp ++++ b/include/libsemigroups/sims1.tpp +@@ -619,7 +619,7 @@ namespace libsemigroups { + typename Sims1::iterator_base& + Sims1::iterator_base::operator=(Sims1::iterator_base&& that) { + _extra = std::move(that._extra); +- _longs = std::move(that.long_rules()); ++ _longs = std::move(that._longs); + _max_num_classes = std::move(that._max_num_classes); + _min_target_node = std::move(that._min_target_node); + _felsch_graph = std::move(that._felsch_graph); diff --git a/sci-libs/libsemigroups/libsemigroups-2.7.3.ebuild b/sci-libs/libsemigroups/libsemigroups-2.7.3-r1.ebuild similarity index 92% rename from sci-libs/libsemigroups/libsemigroups-2.7.3.ebuild rename to sci-libs/libsemigroups/libsemigroups-2.7.3-r1.ebuild index 04bbfd48d7b9..15fff4b3b57d 100644 --- a/sci-libs/libsemigroups/libsemigroups-2.7.3.ebuild +++ b/sci-libs/libsemigroups/libsemigroups-2.7.3-r1.ebuild @@ -13,6 +13,8 @@ SLOT="0/2" KEYWORDS="~amd64 ~x86" IUSE="cpu_flags_x86_popcnt" +PATCHES=( "${FILESDIR}/${P}-gcc-15-buildfix.patch" ) + src_configure() { econf \ $(use_enable cpu_flags_x86_popcnt popcnt) \