;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Ludovic Courtès ;;; ;;; 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 (test-upstream) #:use-module (guix upstream) #:use-module (guix tests) #:use-module (srfi srfi-64)) (test-begin "upstream") (test-equal "coalesce-sources same version" (list (upstream-source (package "foo") (version "1") (urls '("ftp://example.org/foo-1.tar.xz" "ftp://example.org/foo-1.tar.gz")) (signature-urls '("ftp://example.org/foo-1.tar.xz.sig" "ftp://example.org/foo-1.tar.gz.sig")))) (coalesce-sources (list (upstream-source (package "foo") (version "1") (urls '("ftp://example.org/foo-1.tar.gz")) (signature-urls '("ftp://example.org/foo-1.tar.gz.sig"))) (upstream-source (package "foo") (version "1") (urls '("ftp://example.org/foo-1.tar.xz")) (signature-urls '("ftp://example.org/foo-1.tar.xz.sig")))))) (test-end) lue='range'>range
5e10620c775145666f88ff4b0bfdc06645665'>gnu: cross-gcc: Enable multilib for AVR....
AgeCommit message (Expand)Author
2023-06-18uuid: Fix NTFS UUID stringification....Tobias Geerinckx-Rice
2021-09-23uuid: Support XFS....Tobias Geerinckx-Rice
Jean-Pierre De Jesus DIAZ
2020-02-12gnu: cross-base: Switch back to 'CROSS_C_INCLUDE_PATH' & co....Ludovic Courtès
2019-08-29Merge branch 'master' into core-updatesMark H Weaver
2019-08-28gnu: mingw-w64: Update to 6.0.0....David Thompson
2019-08-22Merge branch 'master' into core-updatesMark H Weaver
2019-08-14gnu: mingw: Add x86_64 support....Carl Dong
2019-02-28gnu: GCC: Move cross-toolchain build fix to (gnu packages cross-base)....Marius Bakke