about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2024-12-04 15:40:08 +0900
committerNguyễn Gia Phong <cnx@loang.net>2024-12-04 19:57:45 +0900
commitb798a226e03aaa26459bbeb3a181a7a9e7c94c8d (patch)
treedf49f51d3c198f2ec39fb5bf4b4327617fa504d1
parent95309e93fa4d4b4f9893270151f2cd348b53905e (diff)
downloadloftix-b798a226e03aaa26459bbeb3a181a7a9e7c94c8d.tar.gz
Update E9Patch
-rw-r--r--loftix/patching.scm6
-rw-r--r--patches/e9patch-plugin-api-headers.patch25
2 files changed, 2 insertions, 29 deletions
diff --git a/loftix/patching.scm b/loftix/patching.scm
index 0b6c74e..b7470d4 100644
--- a/loftix/patching.scm
+++ b/loftix/patching.scm
@@ -30,7 +30,7 @@
   #:use-module (guix packages))
 
 (define-public e9patch
-  (let ((commit "b4e7175abb8bd49ebbb6d09c7057aa43ddacac10")
+  (let ((commit "a31c106e1e2375bb4ffc0cd9e50a4e6a3eba9ea2")
         (revision "0"))
     (package
       (name "e9patch")
@@ -42,13 +42,11 @@
                      (commit commit)))
                 (sha256
                  (base32
-                  "0a9s7h43ryyl4bvn0sid0dq78v24bnbcf271smj1a8wvffsih0jy"))
+                  "1w9am7p662kjmikx92p4w264q95na9plpnba2n7w3sbqdxs43g4l"))
                 (file-name (git-file-name name version))
                 (patches (search-patches
                            ;; https://github.com/GJDuck/e9patch/pull/94
                            "patches/e9patch-devendor.patch"
-                           ;; https://github.com/GJDuck/e9patch/pull/99
-                           "patches/e9patch-plugin-api-headers.patch"
                            ;; https://github.com/GJDuck/e9patch/pull/92
                            "patches/e9patch-check.patch"
                            ;; https://github.com/GJDuck/e9patch/pull/95
diff --git a/patches/e9patch-plugin-api-headers.patch b/patches/e9patch-plugin-api-headers.patch
deleted file mode 100644
index f24f80d..0000000
--- a/patches/e9patch-plugin-api-headers.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 13ddf96e29edfea8e6af5d3a3dfea8d1315fa761 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Nguy=E1=BB=85n=20Gia=20Phong?= <cnx@loang.net>
-Date: Mon, 18 Nov 2024 16:40:56 +0900
-Subject: [PATCH] Install plugin API headers to C_INCLUDE_PATH
-
----
- Makefile | 5 ++---
- 1 file changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 1218c65..20c5584 100644
---- a/Makefile
-+++ b/Makefile
-@@ -110,9 +110,8 @@ install: all
-         doc/e9tool-user-guide.md | markdown > \
-         "$(DESTDIR)/usr/share/doc/e9tool/e9tool-user-guide.html"
- 	install -m 444 LICENSE "$(DESTDIR)/usr/share/doc/e9tool/LICENSE"
--	install -d "$(DESTDIR)/usr/share/e9tool/include/"
--	install -m 444 src/e9tool/e9tool.h "$(DESTDIR)/usr/share/e9tool/include/e9tool.h"
--	install -m 444 src/e9tool/e9plugin.h "$(DESTDIR)/usr/share/e9tool/include/e9plugin.h"
-+	install -Dm 444 src/e9tool/e9tool.h "$(DESTDIR)/usr/include/e9tool/e9tool.h"
-+	install -Dm 444 src/e9tool/e9plugin.h "$(DESTDIR)/usr/include/e9tool/e9plugin.h"
- 	install -d "$(DESTDIR)/usr/share/e9tool/examples/"
- 	install -m 444 examples/bounds.c "$(DESTDIR)/usr/share/e9tool/examples/bounds.c"
- 	sed \