unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#72094] [PATCH] gnu: c2ffi: Update to 18.1.0.0.
@ 2024-07-13 16:01 attila.lendvai
       [not found] ` <877cdmhiyx.fsf@qq.com>
  0 siblings, 1 reply; 2+ messages in thread
From: attila.lendvai @ 2024-07-13 16:01 UTC (permalink / raw)
  To: 72094; +Cc: Attila Lendvai

From: Attila Lendvai <attila@lendvai.name>

Change-Id: Ie4a2c35d001a1c74be117312deb5f81d66109dfd
---
 gnu/packages/cpp.scm | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 40181358ba5..ee945fcc683 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -314,23 +314,21 @@ (define-public c2ffi
     (name "c2ffi")
     ;; As per the c2ffi README: the first three elements are encoding the
     ;; required Clang/LLVM version, and the last one is the c2ffi revision.
-    (version "16.0.0.0")
+    (version "18.1.0.0")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
              (url "https://github.com/rpav/c2ffi")
-             ;; Upstream is not tagging releases consistently.
-             ;; (commit (string-append "v" version))
-             (commit "097cbe61ca02dc79ea60859aa056975131a9d985")))
+             (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1mqhw4838chl495gaj9z0731ahkmqb4f3wlc1qalk82fdsaniyd5"))
+        (base32 "03hw650wjrc4jb4ra8bwc4rnprr0fpnf3wlxzacfjysvl25jb0j6"))
        (modules '((guix build utils)))
        (snippet
         '(substitute* "CMakeLists.txt"
            ;; Guix seems to be packaging LLVM libs separately thus -lLLVM
-           ;; won't work, every used library must be specified explicitly.
+           ;; won't work.  Instead every library used must be listed.
            (("c2ffi PUBLIC clang-cpp LLVM")
             "c2ffi PUBLIC clang-cpp LLVMCore LLVMSupport LLVMMCParser \
 LLVMOption LLVMBitReader LLVMProfileData")))))
@@ -346,9 +344,9 @@ (define-public c2ffi
              (when tests?
                (invoke "./bin/c2ffi" "--help")))))))
     (native-inputs
-     (list clang-16)) ; CMakeLists.txt invokes `clang -print-resource-dir`
+     (list clang-18)) ; CMakeLists.txt invokes `clang -print-resource-dir`
     (inputs
-     (list clang-16)) ; Compiled with gcc, but links against libclang-cpp.so
+     (list clang-18)) ; Compiled with gcc, but links against libclang-cpp.so
     (home-page "https://github.com/rpav/c2ffi")
     (synopsis "Clang-based FFI wrapper generator")
     (description

base-commit: 71694363f6cc79e44955acbd9f7ca108e658caca
-- 
2.45.1





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#72094: [PATCH] gnu: c2ffi: Update to 18.1.0.0.
       [not found] ` <877cdmhiyx.fsf@qq.com>
@ 2024-07-15 13:40   ` Z572 via Guix-patches via
  0 siblings, 0 replies; 2+ messages in thread
From: Z572 via Guix-patches via @ 2024-07-15 13:40 UTC (permalink / raw)
  To: attila.lendvai; +Cc: Attila Lendvai, 72094-done

[-- Attachment #1: Type: text/plain, Size: 2618 bytes --]

attila.lendvai@gmail.com writes:

> From: Attila Lendvai <attila@lendvai.name>
>
> Change-Id: Ie4a2c35d001a1c74be117312deb5f81d66109dfd
> ---
>  gnu/packages/cpp.scm | 14 ++++++--------
>  1 file changed, 6 insertions(+), 8 deletions(-)
>
> diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
> index 40181358ba5..ee945fcc683 100644
> --- a/gnu/packages/cpp.scm
> +++ b/gnu/packages/cpp.scm
> @@ -314,23 +314,21 @@ (define-public c2ffi
>      (name "c2ffi")
>      ;; As per the c2ffi README: the first three elements are encoding the
>      ;; required Clang/LLVM version, and the last one is the c2ffi revision.
> -    (version "16.0.0.0")
> +    (version "18.1.0.0")
>      (source
>       (origin
>         (method git-fetch)
>         (uri (git-reference
>               (url "https://github.com/rpav/c2ffi")
> -             ;; Upstream is not tagging releases consistently.
> -             ;; (commit (string-append "v" version))
> -             (commit "097cbe61ca02dc79ea60859aa056975131a9d985")))
> +             (commit (string-append "v" version))))
>         (file-name (git-file-name name version))
>         (sha256
> -        (base32 "1mqhw4838chl495gaj9z0731ahkmqb4f3wlc1qalk82fdsaniyd5"))
> +        (base32 "03hw650wjrc4jb4ra8bwc4rnprr0fpnf3wlxzacfjysvl25jb0j6"))
>         (modules '((guix build utils)))
>         (snippet
>          '(substitute* "CMakeLists.txt"
>             ;; Guix seems to be packaging LLVM libs separately thus -lLLVM
> -           ;; won't work, every used library must be specified explicitly.
> +           ;; won't work.  Instead every library used must be listed.
>             (("c2ffi PUBLIC clang-cpp LLVM")
>              "c2ffi PUBLIC clang-cpp LLVMCore LLVMSupport LLVMMCParser \
>  LLVMOption LLVMBitReader LLVMProfileData")))))
> @@ -346,9 +344,9 @@ (define-public c2ffi
>               (when tests?
>                 (invoke "./bin/c2ffi" "--help")))))))
>      (native-inputs
> -     (list clang-16)) ; CMakeLists.txt invokes `clang -print-resource-dir`
> +     (list clang-18)) ; CMakeLists.txt invokes `clang -print-resource-dir`
>      (inputs
> -     (list clang-16)) ; Compiled with gcc, but links against libclang-cpp.so
> +     (list clang-18)) ; Compiled with gcc, but links against libclang-cpp.so
>      (home-page "https://github.com/rpav/c2ffi")
>      (synopsis "Clang-based FFI wrapper generator")
>      (description
>
> base-commit: 71694363f6cc79e44955acbd9f7ca108e658caca

push, see https://git.savannah.gnu.org/cgit/guix.git/commit/?id=1cd1caceedb55ed9f7071ca3f0a15930f563f9c2 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-07-15 14:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-13 16:01 [bug#72094] [PATCH] gnu: c2ffi: Update to 18.1.0.0 attila.lendvai
     [not found] ` <877cdmhiyx.fsf@qq.com>
2024-07-15 13:40   ` bug#72094: " Z572 via Guix-patches via

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).