;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2022 Leo Famulari ;;; ;;; 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 . ;;; This file returns a manifest of packages related to linux-libre. ;;; Simplistically, it selects packages whose names begin with "linux-libre". ;;; It is used to assist continuous integration of the kernel packages. (use-modules (guix packages) (guix profiles) (gnu packages)) (manifest (map package->manifest-entry (fold-packages (lambda (package lst) (if (string-prefix? "linux-libre" (package-name package)) (cons package lst) lst)) '()))) ix/commit/gnu/packages/libffi.scm?id=c3634df2a48a5b981a97c85f425784cee9f94bc7'>commitdiff
AgeCommit message (Expand)Author
2019-02-18gnu: ruby-ffi: Update to 1.10.0....Ricardo Wurmus
2019-01-15gnu: Separate Python core packages from the rest....Ricardo Wurmus
2018-11-11gnu: python-cffi: Fix test failure on i686....Marius Bakke
2018-08-22gnu: python-cffi: Update to 1.11.5....Marius Bakke
2018-08-21gnu: libffi: Don't optimize for the build machine CPU....Marius Bakke
2018-03-29Merge branch 'master' into core-updatesMarius Bakke
2018-03-25gnu: ruby-ffi: Update to 1.9.23....Tobias Geerinckx-Rice
2018-03-14Merge branch 'master' into core-updatesRicardo Wurmus
2018-02-26gnu: python-cffi: Update phase style....Tobias Geerinckx-Rice
2018-02-26gnu: python-cffi: Update to 1.11.4....Tobias Geerinckx-Rice
2018-02-26gnu: ruby-ffi: Update to 1.9.22....Tobias Geerinckx-Rice
2018-02-20gnu: libffi: Update phase style....Tobias Geerinckx-Rice
2017-11-17gnu: Move testing packages from python.scm to check.scm....Ricardo Wurmus
2017-10-15gnu: ruby-ffi: Move to libffi.scm....Efraim Flashner
2017-10-15gnu: python-cffi: Move to libffi.scm...Efraim Flashner
2017-04-13gnu: libffi: Fix builds on Alpha....Sergei Trofimovich
2017-04-02gnu: Use HTTPS URLs for GitHub home-pages....Leo Famulari
2016-01-06gnu: libffi: Update to 3.2.1....Efraim Flashner