From: Adam Faiz via Guix-patches via <guix-patches@gnu.org>
To: 57625@debbugs.gnu.org
Subject: [bug#57625] WIP: gnu: Add pnet.
Date: Tue, 6 Sep 2022 23:53:44 +0800 [thread overview]
Message-ID: <d9c91744-9f26-3f87-c054-d2f9105bd685@disroot.org> (raw)
In-Reply-To: <9d424667-868f-03f2-c521-8c10e106d6d3@disroot.org>
From c1283813b73f0fd076f4007851d25db99ee2fe7a Mon Sep 17 00:00:00 2001
From: AwesomeAdam54321 <adam.faiz@disroot.org>
Date: Tue, 6 Sep 2022 16:04:09 +0800
Subject: [PATCH 3/3] WIP: gnu: Add pnet.
* gnu/packages/dotgnu.scm (pnet): New variable.
---
gnu/packages/dotgnu.scm | 66 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 66 insertions(+)
diff --git a/gnu/packages/dotgnu.scm b/gnu/packages/dotgnu.scm
index 14e11b3653..976c4f1f15 100644
--- a/gnu/packages/dotgnu.scm
+++ b/gnu/packages/dotgnu.scm
@@ -50,3 +50,69 @@ (define-public treecc
and other language-based tools. It manages the generation of code to
handle
abstract syntax trees and operations upon the trees.")
(license license:gpl2+)))
+
+(define-public pnet
+ (package
+ (name "pnet")
+ (version "0.8.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+
"https://download.savannah.gnu.org/releases/dotgnu-pnet/pnet-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1fsi8nkgvawjib2n4kyygfhfr31637bin84xkmr0apvsavihld7i"))))
+ (build-system gnu-build-system)
+ (native-inputs (list automake autoconf libatomic-ops))
+ (inputs (list treecc libffi libgc libgc-private-headers-for-pnet))
+ (arguments
+ (list #:configure-flags
+ #~(list
+ (string-append "CPPFLAGS=-I" #$libffi "/include/ffi"
+ " -I" #$libgc "/include/gc"
+ " -I" #$libgc-private-headers-for-pnet
"/include/private"))
+ #:make-flags
+ #~(list (string-append "GCLIBS=")) ; libgc is already in the
linker path
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'unbundle-dependencies
+ (lambda _
+ (for-each delete-file-recursively '("libffi" "libgc"))))
+ (add-before 'configure 'fix-makefile
+ (lambda _
+ (substitute* "configure.in" ; Fix missing reference
to RANLIB
+ (("AC_PROG_MAKE_SET")
+ "AC_PROG_MAKE_SET\nAC_PROG_RANLIB"))
+ (substitute* "Makefile.am" ; Fix to not require
bundled dependencies
+ (("OPT_SUBDIRS \\+= lib.*") ""))
+ ; Fix bug where codegen/*.c files aren't compiled in
install
+ (substitute* "codegen/Makefile.in"
+ (("$(MAKE) $(AM_MAKEFLAGS) install-am")
+ "$(MAKE) $(AM_MAKEFLAGS) install-am\n\t.c.o
$(TREECC_SRCOUT)"))
+ (invoke "autoconf")
+ (invoke "aclocal")
+ (invoke "automake" "--add-missing")
+ (invoke "automake")))
+ (add-before 'build 'fix-headers
+ (lambda _
+ (substitute* "support/hb_gc.c"
+ (("#include .*/libgc/include/gc.h.") "#include
<gc.h>")
+ (("#include .*/libgc/include/gc_typed.h.")
"#include <gc_typed.h>"))
+ (substitute* "support/pt_defs.c"
+ (("#include <errno.h>")
+ "#include <errno.h>\n#include
<gc_pthread_redirects.h>"))))
+ (add-after 'fix-headers 'replace-removed-libgc-function
+ (lambda _
+ (substitute* "support/thread.c"
+ ; Maybe GC_CreateThread can be used as replacement?
+ (("result = GC_run_thread.*;")
+ "result = thread_func(arg);")))))))
+ (home-page "http://www.gnu.org/software/dotgnu/html2.0/pnet.html")
+ (synopsis "Bootstrap compiler and libraries for the C# programming
language")
+ (description
+ "The goal of this project is to build a suite of Free Software tools
+to build and execute .NET applications, including a C# compiler,
+assembler, disassembler, and runtime engine. The initial target
+platform is GNU/Linux, with other platforms to follow in the future.")
+ (license license:gpl2+)))
--
2.37.2
I also could use help with the (substitute* "codegen/Makefile.in" ...)
part, since I don't know how what the proper regexp is to make it match.
next prev parent reply other threads:[~2022-09-06 16:07 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 ` Adam Faiz via Guix-patches via [this message]
2022-09-06 17:23 ` [bug#57625] WIP: gnu: Add pnet Maxime Devos
2022-11-18 9:15 ` [bug#57625] [PATCH v1 01/03] gnu: Add libgc-all-headers Adam Faiz via Guix-patches via
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=d9c91744-9f26-3f87-c054-d2f9105bd685@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.