dev-gap/edim: add 1.3.8, drop 1.3.7-r2

Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
This commit is contained in:
Michael Orlitzky
2025-03-31 22:53:04 -04:00
parent 094d653927
commit d1ef766aef
3 changed files with 2 additions and 35 deletions

View File

@@ -1 +1 @@
DIST EDIM-1.3.7.tar.gz 357817 BLAKE2B e18a6317c809bffd8917cab317e7a6ddf9a3c760af636ed223084b80a7f28ad6b42c2323b19a8ca908f570ddca43eb9c5db55bb8a32aacbb03b8ddebb2c5354a SHA512 8d29fbcd6f7e04ec78ab8b439f1875185ce0b0be614263c892a7b850ed76d5a62c2d7d82d1e9d9abac6b5858496075ae97f88285590901a95dc89b07d63d79d1
DIST EDIM-1.3.8.tar.gz 367765 BLAKE2B c9f8ae3e793615623c33b1c0bb1fbf775956288a706c3e50c411f0bfef4fe255192c10a1b2d18657c8557c165e63b6f85b3dc4ae0660fa4f4e5ea69a3c614f48 SHA512 2e09263a5e819ba36eb233c037924dbbb784434b85ab8d11f9b918ae454922ab282e587d095effcef0cc0c59f4e284363766f7faa66b2562bc9bec7baea69efb

View File

@@ -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
@@ -18,8 +18,4 @@ KEYWORDS="~amd64 ~riscv"
DEPEND="sci-mathematics/gap:="
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}/${PN}-1.3.7-user-flags.patch"
)
gap-pkg_enable_tests

View File

@@ -1,29 +0,0 @@
From 305d6d280b2ed859ffbcf6d1de27b6e1826a4956 Mon Sep 17 00:00:00 2001
From: Michael Orlitzky <michael@orlitzky.com>
Date: Mon, 22 Jan 2024 20:03:53 -0500
Subject: [PATCH] Makefile.in: pass user CPPFLAGS, CFLAGS, and LDFLAGS to gac
As in the upstream Makefile.gappkg, and consistent with the idea that
gac should be treated like a compiler, we now pass CPPFLAGS, CFLAGS,
and LDFLAGS to gac explicitly, to later be passed on to the C compiler
and linker.
---
Makefile.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.in b/Makefile.in
index a6936e7..30971c3 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -8,7 +8,7 @@ include $(GAPPATH)/sysinfo.gap
bin/$(GAParch)/ediv.so: src/ediv.c Makefile
@mkdir -p bin/$(GAParch)
- $(GAC) -d -o bin/$(GAParch)/ediv.so src/ediv.c
+ $(GAC) -d -p "$(CPPFLAGS)" -p "$(CFLAGS)" -P "$(LDFLAGS)" -o bin/$(GAParch)/ediv.so src/ediv.c
doc:
$(GAP) makedocrel.g
--
2.43.0