From: Adam Faiz via Guix-patches via <guix-patches@gnu.org>
To: 57625@debbugs.gnu.org
Subject: [bug#57625] [PATCH v1 01/03] gnu: Add libgc-all-headers.
Date: Fri, 18 Nov 2022 17:15:02 +0800 [thread overview]
Message-ID: <1b3a9c28-436c-252a-e556-76b18b040b42@disroot.org> (raw)
In-Reply-To: <d9c91744-9f26-3f87-c054-d2f9105bd685@disroot.org>
From 6e3a2e2cb6d206c0dd9104968e3d98011b4bb3bb Mon Sep 17 00:00:00 2001
From: AwesomeAdam54321 <adam.faiz@disroot.org>
Date: Fri, 18 Nov 2022 07:39:38 +0800
Subject: [PATCH v1 01/03] gnu: Add libgc-all-headers.
* gnu/packages/bdw-gc.scm (libgc-all-headers): New variable.
---
gnu/packages/bdw-gc.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/bdw-gc.scm b/gnu/packages/bdw-gc.scm
Total 22 documents matching your query.
1. [bug#56807] [PATCH] [WIP] Update Julia to 1.8.0 (score: 212)
index c812248e86..442d917168 100644
--- a/gnu/packages/bdw-gc.scm
+++ b/gnu/packages/bdw-gc.scm
@@ -26,7 +26,9 @@ (define-module (gnu packages bdw-gc)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix utils)
+ #:use-module (guix gexp)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system copy)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages hurd))
@@ -90,6 +92,33 @@ (define-public libgc
(license (x11-style (string-append home-page "license.txt")))))
+(define-public libgc-all-headers ; TODO(core-updates) merge into libgc
+ (package
+ (inherit libgc)
+ (name "libgc-all-headers")
+ (outputs '("out"))
+ (build-system copy-build-system)
+ (arguments
+ (list #:install-plan
+ #~'(("include/config.h.in" "include/private/config.h")
+ ("include/gc_tiny_fl.h"
"include/private/gc_tiny_fl.h")
+ ("include/gc_mark.h" "include/private/gc_mark.h")
+ ("include/private/gcconfig.h"
"include/private/gcconfig.h")
+ ("include/private/gc_hdrs.h"
"include/private/gc_hdrs.h")
+ ("include/private/gc_atomic_ops.h"
"include/private/gc_atomic_ops.h")
+ ("include/private/gc_locks.h"
"include/private/gc_locks.h")
+ ("include/private/gc_priv.h"
"include/private/gc_priv.h"))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'install 'fix-headers
+ (lambda _
+ (with-directory-excursion "include/private"
+ (substitute* "gc_priv.h"
+ (("#include .*/gc_tiny_fl.h.") "#include
<gc_tiny_fl.h>")
+ (("#include .*/gc_mark.h.") "#include
<gc_mark.h>"))))))))
+ (synopsis "Headers of libgc")
+ (description "All headers of libgc")))
+
;; TODO: Add a static output in libgc in the next rebuild cycle.
(define-public libgc/static-libs
(package/inherit
--
2.38.0
next prev parent reply other threads:[~2022-11-18 9:16 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-06 8:48 [bug#57625] [PATCH 0/3] WIP: Add pnet Adam Faiz via Guix-patches via
2022-09-06 15:34 ` [bug#57625] [PATCH 1/3] gnu: Add libgc-private-headers-for-pnet Adam Faiz via Guix-patches via
2022-09-06 16:55 ` Maxime Devos
2022-09-07 2:48 ` Adam Faiz via Guix-patches via
2022-09-06 15:39 ` [bug#57625] [PATCH 2/3] gnu: Add treecc Adam Faiz via Guix-patches via
2022-09-06 18:07 ` Maxime Devos
2022-09-06 15:53 ` [bug#57625] WIP: gnu: Add pnet Adam Faiz via Guix-patches via
2022-09-06 17:23 ` Maxime Devos
2022-11-18 9:15 ` Adam Faiz via Guix-patches via [this message]
2022-11-18 9:20 ` [bug#57625] [PATCH v1 02/03] gnu: Add treecc Adam Faiz via Guix-patches via
2022-11-18 9:28 ` [bug#57625] [PATCH v1 03/03] WIP : gnu: Add pnet Adam Faiz via Guix-patches via
2022-11-19 10:33 ` [bug#57625] [PATCH v2 1/3] gnu: Add libgc-all-headers Adam Faiz via Guix-patches via
2022-11-19 10:35 ` [bug#57625] [PATCH v2 2/3] gnu: Add treecc Adam Faiz via Guix-patches via
2022-11-19 10:37 ` [bug#57625] [PATCH v2 3/3] gnu: Add pnet Adam Faiz via Guix-patches via
2023-06-26 13:17 ` [bug#57625] [PATCH v3 1/4] gnu: Add libgc-all-headers Adam Faiz via Guix-patches via
2023-06-26 13:20 ` [bug#57625] [PATCH v3 2/4] gnu: Add treecc Adam Faiz via Guix-patches via
2023-06-26 13:23 ` [bug#57625] [PATCH v3 3/4] gnu: Add pnet Adam Faiz via Guix-patches via
2023-06-26 13:25 ` [bug#57625] [PATCH v3 4/4] gnu: Add pnetlib Adam Faiz via Guix-patches via
2023-06-26 23:38 ` Adam Faiz via Guix-patches via
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1b3a9c28-436c-252a-e556-76b18b040b42@disroot.org \
--to=guix-patches@gnu.org \
--cc=57625@debbugs.gnu.org \
--cc=adam.faiz@disroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.