aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* gnu: starfighter: Rename package to project-starfighter.Pierre Neidhardt2019-03-26
| | | | | | * gnu/packages/games.scm (starfighter): Define in terms of 'deprecated-package'. (project-starfighter): New variable, formerly known as "starfighter".
* gnu: wesnoth-server: Rename package to the-battle-for-wesnoth-server.Pierre Neidhardt2019-03-26
| | | | | | * gnu/packages/games.scm (wesnoth-server): Define in terms of 'deprecated-package'. (the-battle-for-wesnoth-server): New variable, formerly known as "wesnoth-server".
* gnu: wesnoth: Rename package to the-battle-for-wesnoth.Pierre Neidhardt2019-03-26
| | | | | | * gnu/packages/games.scm (wesnoth): Define in terms of 'deprecated-package'. (the-battle-for-wesnoth): New variable, formerly known as "wesnoth".
* gnu: abbaye: Rename package to l-abbaye-des-morts.Pierre Neidhardt2019-03-26
| | | | | | * gnu/packages/games.scm (abbaye): Define in terms of 'deprecated-package'. (l-abbaye-des-morts): New variable, formerly known as "abbaye".
* gnu: gnubg: Rename package to gnubackgammon.Pierre Neidhardt2019-03-26
| | | | | | * gnu/packages/games.scm (gnubg): Define in terms of 'deprecated-package'. (gnubackgammon): New variable, formerly known as "gnubg".
* gnu: cataclysm-dda: Rename package to cataclysm-dark-days-ahead.Pierre Neidhardt2019-03-26
| | | | | | * gnu/packages/games.scm (cataclysm-dda): Define in terms of 'deprecated-package'. (cataclysm-dark-days-ahead): New variable, formerly known as "cataclysm-dda".
* gnu: armagetronad: Rename package to armagetron-advanced.Pierre Neidhardt2019-03-26
| | | | | | * gnu/packages/games.scm (armagetronad): Define in terms of 'deprecated-package'. (armagetron-advanced): New variable, formerly known as "armagetronad".
* gnu: docker: Use disjunct temp directories for probing.Danny Milosavljevic2019-03-26
| | | | | * gnu/packages/patches/docker-use-fewer-modprobes.patch: Use disjunct temp directories for probing.
* gnu: docker: Add comment.Danny Milosavljevic2019-03-26
| | | | * gnu/packages/patches/docker-use-fewer-modprobes.patch: Add comment.
* packages: Adjust to new calling convention for "thunked" fields.Ludovic Courtès2019-03-26
| | | | | | | | | | | | | Fixes <https://bugs.gnu.org/34995>. This is a followup to abd4d6b33dba4de228e90ad15a8efb456fcf7b6e. * guix/packages.scm (package->bag): Adjust calls to INPUTS, PROPAGATED-INPUTS, NATIVE-INPUTS, and ARGS, passing them SELF as an argument. * gnu/packages/gnucash.scm (gnucash)[arguments]: Use (package-inputs this-record) intead of (inputs). * gnu/packages/version-control.scm (git)[arguments]: Likewise.
* gnu: gzdoom: Update to 3.7.2.nee2019-03-25
| | | | | | | | * gnu/packages/games.scm (gzdoom): Update to 3.7.2. [source](uri): Update path. [source](snippet): Bundled libjpeg directory has been renamed. Signed-off-by: Kei Kebreau <kkebreau@posteo.net>
* system: Add 'essential-services' field to <operating-system>.Ludovic Courtès2019-03-25
| | | | | | | | | | | | | | | | | | * gnu/system.scm (<operating-system>)[essential-services]: New field. (operating-system-directory-base-entries): Remove #:container? keyword and keep only the not-container branch. (essential-services): Likewise. (operating-system-services): Likewise, and call 'operating-system-essential-services' instead of 'essential-services'. (operating-system-activation-script): Remove #:container?. (operating-system-boot-script): Likewise. (operating-system-derivation): Likewise. * gnu/system/linux-container.scm (container-essential-services): New procedure. (containerized-operating-system): Use it and set the 'essential-services' field. (container-script): Remove call to 'operating-system-derivation'. * gnu/system/vm.scm (system-docker-image): Likewise. * doc/guix.texi (operating-system Reference): Document 'essential-services'.
* accounts: Add default value for the 'home-directory' field of <user-account>.Ludovic Courtès2019-03-25
| | | | | | | | | | | | | | | | | | * gnu/system/accounts.scm (<user-account>)[home-directory]: Mark as thunked and add a default value. (default-home-directory): New procedure. * doc/guix.texi (User Accounts): Remove 'home-directory' from example. * gnu/system/examples/bare-bones.tmpl: Likewise. * gnu/system/examples/beaglebone-black.tmpl: Likewise. * gnu/system/examples/desktop.tmpl: Likewise. * gnu/system/examples/docker-image.tmpl: Likewise. * gnu/system/examples/lightweight-desktop.tmpl: Likewise. * gnu/system/install.scm (installation-os): Likewise. * gnu/tests.scm (%simple-os): Likewise. * gnu/tests/install.scm (%minimal-os, %minimal-os-on-vda): (%separate-home-os, %encrypted-root-os, %btrfs-root-os): Likewise. * tests/accounts.scm ("allocate-passwd") ("allocate-passwd with previous state"): Likewise.
* records: Allow thunked fields to refer to 'this-record'.Ludovic Courtès2019-03-25
| | | | | | | | | | | | * guix/records.scm (this-record): New syntax parameter. (make-syntactic-constructor)[wrap-field-value]: When F is thunked, return a one-argument lambda instead of a thunk, and parameterize THIS-RECORD. (define-record-type*)[thunked-field-accessor-definition]: Pass X to (real-get X). * tests/records.scm ("define-record-type* & thunked & this-record") ("define-record-type* & thunked & default & this-record") ("define-record-type* & thunked & inherit & this-record"): New tests.
* installer: Set the system's 'keyboard-layout' field.Ludovic Courtès2019-03-25
| | | | | | | | | | * gnu/installer/newt/keymap.scm (keyboard-layout->configuration): New procedure. * gnu/installer.scm (compute-keymap-step): Return RESULT. (installer-steps) <'keymap>: Add 'configuration-formatter' field. (installer-program): Use (gnu installer newt keymap). * gnu/installer/parted.scm (bootloader-configuration): Set 'keyboard-layout'.
* gnu: guix: Update to f970946.Ludovic Courtès2019-03-25
| | | | * gnu/packages/package-management.scm (guix): Update to f970946.
* gnu: docker: Use fewer modprobes.Danny Milosavljevic2019-03-25
| | | | | | | | | Fixes <https://bugs.gnu.org/34333>. Reported by Allan Adair <allan@adair.io>. * gnu/packages/patches/docker-use-fewer-modprobes.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/docker.scm (docker)[source]: Use it.
* gnu: nano: Update to 4.0.Leo Famulari2019-03-25
| | | | * gnu/packages/nano.scm (nano): Update to 4.0.
* services: SDDM: Specify absolute path to the X server.Marius Bakke2019-03-25
| | | | | | | | I'm not sure how this service ever worked, but SDDM started consistently failing on one machine seemingly because of this setting. * gnu/services/sddm.scm (sddm-configuration-file): Append /bin/X to the ServerPath setting.
* gnu: Add r-svmisc.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/cran.scm (r-svmisc): New variable.
* gnu: Add r-rjava.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/cran.scm (r-rjava): New variable.
* gnu: Add r-r2html.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/cran.scm (r-r2html): New variable.
* gnu: Add r-sampling.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/cran.scm (r-sampling): New variable.
* gnu: r-gsl: Update to 2.1-6.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/cran.scm (r-gsl): Update to 2.1-6.
* gnu: Add r-sigpathway.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/bioconductor.scm (r-sigpathway): New variable.
* gnu: Add r-anota.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/bioconductor.scm (r-anota): New variable.
* gnu: Add r-gosemsim.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/bioconductor.scm (r-gosemsim): New variable.
* gnu: Add r-heatplus.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/bioconductor.scm (r-heatplus): New variable.
* gnu: Add r-varianttools.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/bioconductor.scm (r-varianttools): New variable.
* gnu: Add r-triform.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/bioconductor.scm (r-triform): New variable.
* gnu: Add r-hapassoc.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/cran.scm (r-hapassoc): New variable.
* gnu: Add r-hierfstat.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/cran.scm (r-hierfstat): New variable.
* gnu: Add brightnessctl.Vagrant Cascadian2019-03-25
| | | | | | * gnu/packages/linux.scm (brightnessctl): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
* gnu: r-gkmsvm: Move to (gnu packages bioconductor).Ricardo Wurmus2019-03-25
| | | | | * gnu/packages/bioinformatics.scm (r-gkmsvm): Move from here... * gnu/packages/bioconductor.scm (r-gkmsvm): ...to here.
* gnu: r-kernlab: Move to (gnu packages cran).Ricardo Wurmus2019-03-25
| | | | | * gnu/packages/machine-learning.scm (r-kernlab): Move from here... * gnu/packages/cran.scm (r-kernlab): ...to here.
* gnu: r-wgcna: Move to (gnu packages cran).Ricardo Wurmus2019-03-25
| | | | | * gnu/packages/bioinformatics.scm (r-wgcna): Move from here... * gnu/packages/cran.scm (r-wgcna): ...to here.
* gnu: r-optparse: Move to (gnu packages cran).Ricardo Wurmus2019-03-25
| | | | | * gnu/packages/bioinformatics.scm (r-optparse): Move from here... * gnu/packages/cran.scm (r-optparse): ...to here.
* gnu: r-bookdown: Move to (gnu packages cran).Ricardo Wurmus2019-03-25
| | | | | * gnu/packages/bioinformatics.scm (r-bookdown): Move from here... * gnu/packages/cran.scm (r-bookdown): ...to here.
* gnu: r-sparql: Move to (gnu packages cran).Ricardo Wurmus2019-03-25
| | | | | * gnu/packages/bioinformatics.scm (r-sparql): Move from here... * gnu/packages/cran.scm (r-sparql): ...to here.
* gnu: Add r-tdthap.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/cran.scm (r-tdthap): New variable.
* gnu: Add r-hwde.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/cran.scm (r-hwde): New variable.
* gnu: Add r-ldheatmap.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/cran.scm (r-ldheatmap): New variable.
* gnu: Add r-dlmap.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/cran.scm (r-dlmap): New variable.
* gnu: Add r-ibdreg.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/cran.scm (r-ibdreg): New variable.
* gnu: Add r-bqtl.Ricardo Wurmus2019-03-25
| | | | * gnu/packages/cran.scm (r-bqtl): New variable.
* gnu: perl-svg: Update source URL.Tobias Geerinckx-Rice2019-03-25
| | | | * gnu/packages/perl.scm (perl-svg)[source]: Update URL.
* gnu: perl-class-date: Update source URL.Tobias Geerinckx-Rice2019-03-25
| | | | * gnu/packages/perl.scm (perl-class-date)[source]: Update URL.
* gnu: perl-mouse: Update source URL.Tobias Geerinckx-Rice2019-03-25
| | | | * gnu/packages/perl.scm (perl-mouse)[source]: Update URL.
* gnu: perl-carp: Update source URL.Tobias Geerinckx-Rice2019-03-25
| | | | * gnu/packages/perl.scm (perl-carp)[source]: Update URL.
* gnu: perl-class-accessor-grouped: Update source URL.Tobias Geerinckx-Rice2019-03-25
| | | | | * gnu/packages/perl.scm (perl-class-accessor-grouped)[source]: Update URL.