summaryrefslogtreecommitdiff
path: root/hydra.scm
Commit message (Collapse)AuthorAge
* build: Move Hydra recipe to build-aux/hydra.Ludovic Courtès2013-06-20
| | | | | | * hydra.scm: Rename to... * build-aux/hydra/gnu-system.scm: ... this. * Makefile.am (EXTRA_DIST): Adjust accordingly.
* build: `hydra.scm' really cross-builds Gettext.Ludovic Courtès2013-05-26
| | | | * hydra.scm: Import (gnu packages gettext).
* build: Add missing import in `hydra.scm'.Ludovic Courtès2013-05-25
| | | | * hydra.scm: Import (gnu packages gawk).
* build: `hydra.scm' cross-builds a few more packages.Ludovic Courtès2013-05-25
| | | | * hydra.scm (%packages-to-cross-build): Add a few packages.
* build: `hydra.scm' cross-builds simpler packages.Ludovic Courtès2013-05-25
| | | | | * hydra.scm (%packages-to-cross-build): Remove things from make-bootstrap for now.
* build: `hydra.scm' adds cross-build jobs.Ludovic Courtès2013-05-24
| | | | | | | * hydra.scm (package->alist): Add `package-derivation' argument. (package-cross-job): New procedure. (%packages-to-cross-build, %cross-targets): New variables. (hydra-jobs): Add cross jobs.
* build: Set `%fresh-auto-compile' in `hydra.scm'.Ludovic Courtès2013-03-28
| | | | * hydra.scm: Set `%fresh-auto-compile' to #t.
* build: `hydra.scm' changes %load-path to refer to itself.Ludovic Courtès2013-03-27
| | | | * hydra.scm: Add `eval-when' clause.
* distro: Rename (distro) to (gnu packages).Ludovic Courtès2013-01-18
| | | | | | | * distro.scm: Rename to... * gnu/packages.scm: ... this. Update all users accordingly. * Makefile.am (MODULES): Adjust accordingly. * po/POTFILES.in: Likewise.
* distro: Change the module name space to (gnu ...).Ludovic Courtès2013-01-18
| | | | | | | | | | * distro: Rename to... * gnu: ... this. Update module names accordingly. * Makefile.am: Adjust accordingly. * po/POTFILES.in: Likewise. * distro.scm: Search for files under /gnu/packages instead of /distro/packages. * gnu/packages/base.scm (ld-wrapper-boot3): Likewise.
* Update license headers.Ludovic Courtès2013-01-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change all license headers, except guix/build/* and ld-wrapper.scm, with this code: (use-modules (guix build utils) (srfi srfi-1)) (fluid-set! %default-port-encoding "UTF-8") (substitute* (remove (lambda (f) (or (string-contains f ".tar.") (string-contains f ".git/") (string-contains f ".so") (string-suffix? ".o" f) (string-suffix? ".a" f) (string-suffix? ".go" f) (string-suffix? ".pdf" f) (string-suffix? ".png" f) (string-suffix? ".info" f) (equal? (basename f) "guix-daemon") (equal? (basename f) "nix-setuid-helper") (string-contains f "nix-upstream/") (string-contains f "distro/packages/bootstrap/"))) (find-files "." "\\.[a-z]+$")) (("^([[:graph:]]+) This file is part of Guix." _ comment-start) (string-append comment-start " This file is part of GNU Guix.")) (("^([[:graph:]]+) Guix --- Nix package management.*" _ comment-start) (string-append comment-start " GNU Guix --- Functional package management for GNU\n")) (("^([[:graph:]]+) Guix is " _ comment-start) (string-append comment-start " GNU Guix is ")) (("^([[:graph:]]+) along with Guix." _ comment-start) (string-append comment-start " along with GNU Guix.")) (("^([[:graph:]]+) Copyright \\(C\\)" _ comment-start) (string-append comment-start " Copyright ©"))) Change headers using C-style comments manually.
* build: Have `hydra.scm' return one job per package.Ludovic Courtès2012-11-25
| | | | * hydra.scm (hydra-jobs): Return one job for each non-bootstrap package.
* build: Fix `hydra.scm' recipe.Ludovic Courtès2012-11-21
| | | | | | | * hydra.scm: Redirect the output port to the error port. (package-job): Return a name/thunk pair. (hydra-jobs)[system]: Use either the `system' key (a symbol) in ARGUMENTS, or (%current-system)'.
* build: Add `hydra.scm'.Ludovic Courtès2012-11-18
* hydra.scm: New file. * Makefile.am (EXTRA_DIST): Add it.