* [gentoo-commits] repo/gentoo:master commit in: dev-gap/io/files/
@ 2024-01-22 11:29 Michael Orlitzky
0 siblings, 0 replies; 2+ messages in thread
From: Michael Orlitzky @ 2024-01-22 11:29 UTC (permalink / raw
To: gentoo-commits
commit: 3c224aaceab629efb81d65b57259a57714a57e9e
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 17 00:34:32 2024 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Mon Jan 22 11:29:24 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c224aac
dev-gap/io: drop unused patch
Suggested-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
| 13 -------------
1 file changed, 13 deletions(-)
diff --git a/dev-gap/io/files/io-4.7.1-headers.patch b/dev-gap/io/files/io-4.7.1-headers.patch
deleted file mode 100644
index 7a7e1d1ff702..000000000000
--- a/dev-gap/io/files/io-4.7.1-headers.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/src/io.c b/src/io.c
-index 60a21ea..bc2499b 100644
---- a/src/io.c
-+++ b/src/io.c
-@@ -14,7 +14,7 @@
- #include "compiled.h" // GAP headers
-
- #if GAP_KERNEL_MAJOR_VERSION >= 6
--#include "src/profile.h"
-+#include "profile.h"
- #endif
-
- #undef PACKAGE
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-gap/io/files/
@ 2025-05-01 1:01 Michael Orlitzky
0 siblings, 0 replies; 2+ messages in thread
From: Michael Orlitzky @ 2025-05-01 1:01 UTC (permalink / raw
To: gentoo-commits
commit: b278938808573dd313fd94bd9957553e5c52aaba
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Tue Apr 29 18:03:51 2025 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Thu May 1 01:01:10 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2789388
dev-gap/io: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
.../io/files/io-4.8.2-fix-failed-assertion.patch | 35 ----------------------
1 file changed, 35 deletions(-)
diff --git a/dev-gap/io/files/io-4.8.2-fix-failed-assertion.patch b/dev-gap/io/files/io-4.8.2-fix-failed-assertion.patch
deleted file mode 100644
index 059cc3387b2b..000000000000
--- a/dev-gap/io/files/io-4.8.2-fix-failed-assertion.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From edfbed91b1c98abbed7c57463b88a1e8e134f2c3 Mon Sep 17 00:00:00 2001
-From: Chris Jefferson <caj21@st-andrews.ac.uk>
-Date: Wed, 24 Jan 2024 11:18:09 +0800
-Subject: [PATCH] Check arguments to IO_gmtime and IO_localtime
-
----
- src/io.c | 8 ++++++++
- 1 file changed, 8 insertions(+)
-
-diff --git a/src/io.c b/src/io.c
-index 731880e..2a1536e 100644
---- a/src/io.c
-+++ b/src/io.c
-@@ -1777,6 +1777,10 @@ static Obj FuncIO_gmtime(Obj self, Obj time)
- Obj tmp;
- time_t t;
- struct tm * s;
-+ if (!IS_INT(time)) {
-+ SyClearErrorNo();
-+ return Fail;
-+ }
- if (!IS_INTOBJ(time)) {
- tmp = QuoInt(time, INTOBJ_INT(256));
- if (!IS_INTOBJ(tmp))
-@@ -1808,6 +1812,10 @@ static Obj FuncIO_localtime(Obj self, Obj time)
- Obj tmp;
- time_t t;
- struct tm * s;
-+ if (!IS_INT(time)) {
-+ SyClearErrorNo();
-+ return Fail;
-+ }
- if (!IS_INTOBJ(time)) {
- tmp = QuoInt(time, INTOBJ_INT(256));
- if (!IS_INTOBJ(tmp))
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-05-01 1:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-22 11:29 [gentoo-commits] repo/gentoo:master commit in: dev-gap/io/files/ Michael Orlitzky
-- strict thread matches above, loose matches on Subject: below --
2025-05-01 1:01 Michael Orlitzky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox