aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2014, 2021, 2022 Ludovic Courtès <ludo@gnu.org>
;;;
;;; 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 <http://www.gnu.org/licenses/>.

(define-module (guix)
  #:use-module (guix packages)
  #:re-export-and-replace (define-public))        ;from (guix packages)

;; The composite module that re-exports everything from the public modules.

(eval-when (eval load compile)
  (begin
    (define %public-modules
      '(base32
        build-system
        derivations
        download
        gexp
        monads
        monad-repl
        packages
        store
        utils))

    (for-each (let ((i (module-public-interface (current-module))))
                (lambda (m)
                  (module-use! i (resolve-interface `(guix ,m)))))
              %public-modules)))
commit/tests/publish.scm?id=9b9de08477afe0ea519f916ad3d33c9720c3278d'>publish: Add a 'Cache-Control' header on /nar responses....Ludovic Courtès 2018-09-04Switch to Guile-Gcrypt....Ludovic Courtès 2018-03-22publish: Always build a new derivation for the "/log/NAME" test....Ludovic Courtès 2018-03-22publish: Add test for non-GET queries....Ludovic Courtès 2018-01-22publish: Restore gzip compression in cache-less mode....Ludovic Courtès 2018-01-07publish: Publish build logs....Ludovic Courtès 2017-12-01tests: Avoid double slash in URIs....Ludovic Courtès 2017-10-05publish: Cache uncompressed nars as well....Ludovic Courtès 2017-05-18publish: Fix narinfo rendering for already-compressed items....Ludovic Courtès 2017-05-11publish: Advertise a short TTL for "baking" 404s....Ludovic Courtès 2017-05-01publish: Produce a "FileSize" narinfo field when possible....Ludovic Courtès 2017-04-18publish: Add '--cache' and '--workers'....Ludovic Courtès 2017-03-22publish: Make the nar URL prefix a parameter....Ludovic Courtès 2017-03-22publish: The public and private keys are now SRFI-39 parameters....Ludovic Courtès 2016-08-02tests: Make sure threads use separate output ports....Ludovic Courtès 2016-08-02tests: Work around Guile bug with unbuffered custom binary input ports....Ludovic Courtès 2016-08-01publish: Do not compress already-compressed files....Ludovic Courtès 2016-07-27tests: Use unbuffered input ports when decompressing from 'guix publish'....Ludovic Courtès 2016-07-20publish: Handle '/file' URLs, for content-addressed files....Ludovic Courtès 2016-07-19publish: Add '--compression'....Ludovic Courtès 2016-06-08publish: Encore URIs that appear in narinfos....Ludovic Courtès 2016-04-03build: Add a Guile custom test driver using SRFI-64....Mathieu Lirzin 2016-02-25publish: Do not publish nars for invalid store items....Ludovic Courtès 2016-01-22tests: Prevent 'http_proxy' from breaking Web server tests....Ludovic Courtès 2015-07-18tests: Fix 'publish' test for nix-base32 format....Alex Kost