;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Joshua S. Grant ;;; Copyright © 2015 Mark H Weaver ;;; Copyright © 2017, 2018 Efraim Flashner ;;; Copyright © 2020 Marius Bakke ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages libffcall) #:use-module ((guix licenses) #:prefix l:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) (define-public libffcall (package (name "libffcall") (version "2.2") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/libffcall/libffcall-" version ".tar.gz")) (sha256 (base32 "0ixp7kbr7y8s34nsrsdfh77ig5c2zkwr6cfg9v1gm53cggwkgypb")))) (build-system gnu-build-system) (arguments '(#:parallel-build? #f #:configure-flags '("--disable-static"))) (synopsis "Foreign function calls from interpreters") (description "GNU Libffcall is a collection of libraries that can be used to build foreign function call interfaces in embedded interpreters.") (home-page "https://www.gnu.org/software/libffcall/") (license l:gpl2+))) ='range'>range
AgeCommit message (Expand)Author
2023-06-26gnu: patchwork: Update to 3.1.1....* gnu/packages/patchutils.scm (patchwork): Update to 3.1.1. Signed-off-by: Christopher Baines <mail@cbaines.net> Andy Tai
2023-06-02gnu: Add coccinelle....* gnu/packages/patchutils.scm (coccinelle): New variable. Signed-off-by: Jean-Pierre De Jesus DIAZ <jean@foundationdevices.com> Signed-off-by: Ludovic Courtès <ludo@gnu.org> Jean-Pierre De Jesus DIAZ
2023-05-02gnu: quilt: Fix wrapping and improve testing....* gnu/packages/patchutils.scm (quilt)[native-inputs]: Use new style; fixes lint warning. [inputs]: Add bash-minimal, gzip, diffutils, findutils, and tar. [arguments]: Move check phase after other install. Simplify wrapping and wrap one utility script. Run tests with PATH unset and test scripts patched to detect insufficient wrapping. Eric Bavier
2023-05-02gnu: quilt: Update to 0.67....* gnu/packages/patchutils.scm (quilt): Update to 0.67. Efraim Flashner
2023-05-02gnu: quilt: Patch for newer grep....* gnu/packages/patchutils.scm (quilt)[source]: Add patch to work with newer versions of grep. * gnu/packages/patches/quilt-grep-compat.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. Efraim Flashner
2023-03-27gnu: colordiff: Update to 1.0.21....* gnu/packages/patchutils.scm (colordiff): Update to 1.0.21. Signed-off-by: Christopher Baines <mail@cbaines.net> Greg Hogan
2023-03-05gnu: meld: Use new package style....* gnu/packages/patchutils.scm (meld)[arguments]: Convert to list of G-Expressions. <#:phases>: Drop trailing #t. [inputs, native-inputs]: Drop labels. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Andy Tai
2023-03-05gnu: meld: Update to 3.22.0...* gnu/packages/patchutils.scm (meld): Update to 3.22.0 [build-system]: Switch to meson-build-system. [native-inputs]: Add desktop-file-utils, itstool, gobject-introspection, pkg-config, and python. [inputs]: Add bash-minimal, python, and python-pycairo. Replace gtksourceview-3 with gtksourceview-4. [arguments]: Add #:glib-or-gtk?, #:imported-modules, and #:modules. <#:phases>: Remove custom ‘install’ and ‘check’. Add ‘skip-gtk-update-icon-cache’. Adjust ‘copy-styles’ to gtksourceview-4. Replace ‘wrap-typelib’ with ‘python-and-gi-wrap’. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Andy Tai