From 7469d9c1067bdf177e30474e4b07a4cbb4a326c3 Mon Sep 17 00:00:00 2001 From: Jean-Pierre De Jesus DIAZ Date: Sun, 21 May 2023 13:34:17 +0200 Subject: gnu: Add coccinelle. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/patchutils.scm (coccinelle): New variable. Signed-off-by: Jean-Pierre De Jesus DIAZ Signed-off-by: Ludovic Courtès --- gnu/packages/patchutils.scm | 56 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) (limited to 'gnu/packages/patchutils.scm') diff --git a/gnu/packages/patchutils.scm b/gnu/packages/patchutils.scm index 1527590af5..2b30ee1b9d 100644 --- a/gnu/packages/patchutils.scm +++ b/gnu/packages/patchutils.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2022 jgart ;;; Copyright © 2023 Andy Tai ;;; Copyright © 2023 Efraim Flashner +;;; Copyright © 2023 Foundation Devices, Inc. ;;; ;;; This file is part of GNU Guix. ;;; @@ -33,8 +34,10 @@ (define-module (gnu packages patchutils) #:use-module (guix build-system gnu) #:use-module (guix build-system glib-or-gtk) #:use-module (guix build-system meson) + #:use-module (guix build-system ocaml) #:use-module (guix build-system python) #:use-module (gnu packages) + #:use-module (gnu packages autotools) #:use-module (gnu packages ed) #:use-module (gnu packages base) #:use-module (gnu packages bash) @@ -53,6 +56,7 @@ (define-module (gnu packages patchutils) #:use-module (gnu packages less) #:use-module (gnu packages mail) #:use-module (gnu packages ncurses) + #:use-module (gnu packages ocaml) #:use-module (gnu packages package-management) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) @@ -62,6 +66,58 @@ (define-module (gnu packages patchutils) #:use-module (gnu packages version-control) #:use-module (gnu packages xml)) +(define-public coccinelle + (let ((revision "0") + (commit "6608e45f85a10c57a3c910154cf049a5df4d98e4")) + (package + (name "coccinelle") + (version (git-version "1.1.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/coccinelle/coccinelle") + (commit commit))) + (file-name (git-file-name name version)) + (modules '((guix build utils))) + (snippet + #~(delete-file-recursively "bundles")) + (sha256 + (base32 + "08nycmjyckqmqjpi78dcqdbmjq1xp18qdc6023dl90gdi6hmxz9l")))) + (build-system gnu-build-system) + (arguments + (list #:phases + #~(modify-phases %standard-phases + (add-before 'bootstrap 'prepare-version.sh + (lambda _ + (setenv "MAKE_COCCI_RELEASE" "y") + (patch-shebang "version.sh"))) + (add-before 'check 'set-batch-mode + (lambda _ + (substitute* "Makefile" + (("--testall") + "--batch_mode --testall"))))))) + (propagated-inputs + (list ocaml-menhir + ocaml-num + ocaml-parmap + ocaml-pcre + ocaml-pyml + ocaml-stdcompat)) + (native-inputs + (list autoconf + automake + ocaml + ocaml-findlib + pkg-config)) + (home-page "https://coccinelle.lip6.fr") + (synopsis "Transformation of C code using semantic patches") + (description "Coccinelle is a tool that allows modification of C code +using semantic patches in the @acronym{SmPL, Semantic Patch Language} for +specifying desired matches and transformations in the C code.") + (license gpl2)))) + (define-public patchutils (package (name "patchutils") -- cgit v1.2.3