| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | pull: Add guile-ssh to the dependencies.•••Fix regression introduced in 9e76eed.
* build-aux/build-self.scm (guile-ssh): New variable.
(build)[builder]: Add 'guile-ssh' to %load-path and %load-compiled-path.
| 宋文武 | 2016-11-26 | 1 | -2/+10 |
* | gnu: Add mumble.•••* gnu/packages/telephony.scm (mumble): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
| ng0 | 2016-11-26 | 1 | -0/+112 |
* | gnu: transmission: Update to 2.92.•••* gnu/packages/bittorrent.scm (transmission): Update to 2.92.
[inputs]: Add cyrus-sasl.
| Marius Bakke | 2016-11-26 | 1 | -2/+3 |
* | gnu: roary: Update to 3.7.0.•••* gnu/packages/bioinformatics.scm (roary): Update to 3.7.0.
| Ben Woodcroft | 2016-11-26 | 1 | -2/+2 |
* | gnu: Add proteinortho.•••* gnu/packages/bioinformatics.scm (proteinortho): New variable.
| Ben Woodcroft | 2016-11-26 | 1 | -0/+52 |
* | gnu: Add python-polib.•••* gnu/packages/python.scm (python-polib, python2-polib): New variables.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
| Julien Lepiller | 2016-11-26 | 1 | -0/+26 |
* | gnu: Whitespace changes•••* gnu/services/kerberos.scm: Fold lines to 80 character limit.
| John Darrington | 2016-11-26 | 1 | -4/+6 |
* | mailmap: Associate all commits by ng0 with ng0.•••Signed-off-by: Leo Famulari <leo@famulari.name>
| ng0 | 2016-11-26 | 1 | -4/+5 |
* | gnu: imagemagick: Update to 6.9.6-6 [fixes CVE-2016-9556].•••* gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.6-6.
| Leo Famulari | 2016-11-26 | 1 | -2/+2 |
* | doc: mysql-configuration: Fix typo.•••* doc/guix.texi (Database Services): Fix typo of 'mysql-configuration'.
| 宋文武 | 2016-11-26 | 1 | -1/+1 |
* | services: Add opensmtpd service.•••* gnu/services/mail.scm (<opensmtpd-configuration>): New record type.
(%default-opensmtpd-config-file, %opensmtpd-accounts): New variables.
(opensmtpd-shepherd-service, opensmtpd-activation): New procedures.
(opensmtpd-service-type): New variable.
* doc/guix.texi (Mail Services): Document it.
| 宋文武 | 2016-11-26 | 2 | -10/+114 |
* | gnu: Add missing module import to (gnu packages ldc).•••This is a followup to commit e44b511298590ecc87c2c85d1cbc043a638dd1e0.
* gnu/packages/ldc.scm: Import (gnu packages python).
| Leo Famulari | 2016-11-25 | 1 | -0/+1 |
* | gnu: ldc: Update to 0.17.2.•••* gnu/packages/ldc.scm (ldc): Update to 0.17.2.
* gnu/packages/patches/ldc-disable-tests.patch: Fix timezone file name.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Danny Milosavljevic | 2016-11-25 | 2 | -42/+27 |
* | offload: Drop 'remote-pipe'.•••* guix/scripts/offload.scm (remote-pipe): Remove.
(machine-load): Use 'open-remote-pipe*' instead of 'remote-pipe'.
| Ludovic Courtès | 2016-11-25 | 1 | -21/+2 |
* | offload: Rewrite to make direct RPCs to the remote daemon.•••* guix/scripts/offload.scm (<build-machine>)[daemon-socket]: New field.
(connect-to-remote-daemon): New procedure.
(%gc-root-file, register-gc-root, remove-gc-roots, offload): Remove.
(transfer-and-offload): Rewrite using 'connect-to-remote-daemon' and
RPCs over SSH.
(store-import-channel, store-export-channel): New procedures.
(send-files, retrieve-files): Rewrite using these.
| Ludovic Courtès | 2016-11-25 | 2 | -200/+175 |
* | offload: Remove 'with-nar-error-handling' macro.•••* guix/scripts/offload.scm (with-nar-error-handling): Remove.
(guix-offload): Use 'with-error-handling' instead.
| Ludovic Courtès | 2016-11-25 | 1 | -12/+1 |
* | store: 'open-connection' can taken an open port.•••* guix/store.scm (open-unix-domain-socket): New procedure.
(open-connection): Add #:port parameter and honor it.
| Ludovic Courtès | 2016-11-25 | 1 | -25/+33 |
* | offload: Reuse SSH session during 'transfer-and-offload'.•••* guix/scripts/offload.scm (remote-pipe): Replace 'machine' parameter
with 'session'. Remove 'open-ssh-session' call.
(register-gc-root): Replace 'machine' with 'session'. Use '
session-get' instead of 'build-machine-name'.
(remove-gc-roots, offload, send-files, retrieve-files): Likewise.
(transfer-and-offload): Add 'open-ssh-session' call. Handle 'offload'
errors here.
(machine-load): Add call to 'open-ssh-session'.
| Ludovic Courtès | 2016-11-25 | 1 | -41/+43 |
* | offload: Use Guile-SSH instead of GNU lsh.•••* guix/scripts/offload.scm (<build-machine>)[ssh-options]: Remove.
[host-key, host-key-type]: New fields.
(%lsh-command, %lshg-command, user-lsh-private-key): Remove.
(user-openssh-private-key, private-key-from-file*): New procedures.
(host-key->type+key, open-ssh-session): New procedures.
(remote-pipe): Remove 'mode' parameter. Rewrite in terms of
'open-ssh-session' etc. Update users.
(send-files)[missing-files]: Rewrite using the bidirectional channel
port.
Remove call to 'call-with-compressed-output-port'.
(retrieve-files): Remove call to 'call-with-decompressed-port'.
(machine-load): Remove exit status logic.
* doc/guix.texi (Requirements): Mention Guile-SSH.
(Daemon Offload Setup): Document 'host-key' and 'private-key'. Show the
default value on each @item line.
* m4/guix.m4 (GUIX_CHECK_GUILE_SSH): New macro.
* config-daemon.ac: Use 'GUIX_CHECK_GUILE_SSH'. Set
'HAVE_DAEMON_OFFLOAD_HOOK' as a function of that.
| Ludovic Courtès | 2016-11-25 | 4 | -171/+213 |
* | gnu: guile-ssh: Update to 0.10.2.•••* gnu/packages/ssh.scm (guile-ssh): Update to 0.10.2.
[home-page]: Update.
[source]: Use the 'url-fetch' method and a GitHub generated
tarball.
[arguments] <autoreconf>: Remove now unneeded 'chmod' call.
| Ludovic Courtès | 2016-11-25 | 1 | -9/+8 |
* | gnu: hydrogen: Update to 0.9.7.•••* gnu/packages/music.scm (hydrogen): Update to 0.9.7.
| Ricardo Wurmus | 2016-11-25 | 1 | -2/+2 |
* | gnu: btrfs-progs: Update to 4.8.4.•••* gnu/packages/linux.scm (btrfs-progs): Update to 4.8.4.
| Tobias Geerinckx-Rice | 2016-11-25 | 1 | -2/+2 |
* | gnu: lz4: Update to 1.7.4.2.•••* gnu/packages/compression.scm (lz4): Update to 1.7.4.2.
| Tobias Geerinckx-Rice | 2016-11-25 | 1 | -5/+5 |
* | gnu: hplip: Update to 3.16.11.•••* gnu/packages/cups.scm (hplip): Update to 3.16.11.
| Tobias Geerinckx-Rice | 2016-11-25 | 1 | -2/+2 |
* | gnu: qtractor: Update to 0.8.0.•••* gnu/packages/music.scm (qtractor): Update to 0.8.0.
| Ricardo Wurmus | 2016-11-25 | 1 | -2/+2 |
* | gnu: qemu: Install all required info files.•••* gnu/packages/qemu.scm (qemu)[arguments]: Adjust 'install-info' phase
to find all info files (including "*.info-N").
| Alex Kost | 2016-11-25 | 1 | -1/+1 |
* | gnu: Add kicad-library.•••* gnu/packages/engineering.scm (kicad-library): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
| Theodoros Foradis | 2016-11-25 | 1 | -0/+62 |
* | gnu: Add kicad.•••* gnu/packages/engineering.scm (kicad): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
| Theodoros Foradis | 2016-11-25 | 1 | -0/+92 |
* | gnu: Add python2-wxpython.•••* gnu/packages/wxwidgets.scm (python2-wxpython): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
| Theodoros Foradis | 2016-11-25 | 1 | -0/+72 |
* | gnu: Add wxwidgets-gtk2.•••* gnu/packages/wxwidgets.scm (wxwidgets-gtk2): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
| Theodoros Foradis | 2016-11-25 | 1 | -0/+9 |
* | gnu: nginx: Update to 1.11.6.•••* gnu/packages/web.scm (nginx): Update to 1.11.6.
[arguments]: Remove the obsolete option --with-ipv6 from #:configure-flags.
| Leo Famulari | 2016-11-25 | 1 | -3/+2 |
* | gnu: miniupnpc: Improve synopsis and description.•••* gnu/packages/upnp.scm (miniupnp)[synopsis, description]: Edit, fix typos,
add some relevant (search) terms from the home page, and expand acronyms.
| Tobias Geerinckx-Rice | 2016-11-25 | 1 | -6/+8 |
* | gnu: miniupnpc: Use the correct ‘upnpc’ in ‘external-ip’.•••* gnu/packages/upnp.scm (miniupnpc)[arguments]: Add ‘qualify-paths’ phase.
| Tobias Geerinckx-Rice | 2016-11-25 | 1 | -1/+7 |
* | gnu: miniupnpc: Use ‘modify-phases’ syntax.•••* gnu/packages/upnp.scm (miniupnpc)[arguments]: Use ‘modify-phases’.
| Tobias Geerinckx-Rice | 2016-11-25 | 1 | -1/+2 |
* | gnu: miniupnpc: Update to 2.0.•••* gnu/packages/upnp.scm (miniupnpc): Update to 2.0.
| Tobias Geerinckx-Rice | 2016-11-25 | 1 | -2/+2 |
* | gnu: vim: Update to 8.0.0101.•••* gnu/packages/vim.scm (vim, vim-full): Update to 8.0.0101.
| Tobias Geerinckx-Rice | 2016-11-25 | 1 | -2/+2 |
* | doc: Fix typos in "Kerberos Services".•••* doc/guix.texi (Kerberos Services): Fix typos.
| Ludovic Courtès | 2016-11-24 | 1 | -2/+2 |
* | doc: Document encrypted root partitions.•••This is a followup to f7f292d359e0eb77617f4ecf6b3164f868ec1784.
* doc/guix.texi (Preparing for Installation): Give commands for
encrypted root installation.
(Proceeding with the Installation): Add item about mapped devices.
(File Systems): Mention that 'dependencies' can list <mapped-device>
objects.
* gnu/system/examples/desktop.tmpl (mapped-devices): New field.
(file-systems): Add 'dependencies' field.
| Ludovic Courtès | 2016-11-24 | 2 | -22/+41 |
* | doc: Document 'wpa-supplicant-service-type'.•••Reported by Chris Marusich <cmmarusich@gmail.com>.
* doc/guix.texi (Networking Services): Remove 'wpa-supplicant-service'
procedure, which doesn't exist, and document
'wpa-supplicant-service-type'.
| Ludovic Courtès | 2016-11-24 | 1 | -5/+14 |
* | services: network-manager: Depend on 'wpa-supplicant'.•••Suggested by Chris Marusich <cmmarusich@gmail.com>.
* gnu/services/networking.scm (network-manager-shepherd-service)
[requirement]: Add 'wpa-supplicant'.
| Ludovic Courtès | 2016-11-24 | 1 | -1/+1 |
* | services: network-manager: Install polkit actions.•••Reported by Chris Marusich <cmmarusich@gmail.com>
at <https://lists.gnu.org/archive/html/help-guix/2016-11/msg00038.html>.
* gnu/services/networking.scm (network-manager-service-type)[extensions]:
Add POLKIT-SERVICE-TYPE.
| Ludovic Courtès | 2016-11-24 | 1 | -0/+1 |
* | services: Move polkit to (gnu services dbus).•••* gnu/services/desktop.scm (<polkit-configuration>, %polkit-accounts)
(%polkit-pam-services, polkit-directory, polkit-etc-files)
(polkit-setuid-programs, polkit-service-type, polkit-service): Move
to...
* gnu/services/dbus.scm: ... here.
| Ludovic Courtès | 2016-11-24 | 2 | -94/+93 |
* | gnu: hdf5: Build the C++ interface.•••* gnu/packages/maths.scm (hdf5)[arguments]: Add #:configure-flags.
| Ludovic Courtès | 2016-11-24 | 1 | -1/+4 |
* | gnu: vim: Update to 8.0.0096.•••* gnu/packages/vim.scm (vim, vim-full): Update to 8.0.0096.
| Tobias Geerinckx-Rice | 2016-11-24 | 1 | -2/+2 |
* | Add system start-up files for "guix publish".•••* .gitignore: add etc/guix-publish.conf and /etc/guix-publish.service.
* etc/guix-publish.conf.in: New file.
* etc/guix-publish.service.in: New file.
* nix/local.mk (etc/guix-%.service, etc/guix-%.conf): Generalized former
build-rules for by using patterns.
(nodist_systemdservice_DATA): Add etc/guix-publish.service, update
comment.
(nodist_upstartjob_DATA): Add etc/guix-publish.conf, update comment.
* doc/guix.texi (Invoking guix publish): Add description for enabling
"guix publish" on host distros using the new files.
| Hartmut Goebel | 2016-11-24 | 5 | -8/+65 |
* | doc: Symlink daemon start-up files.•••This patch ensures that always the current profile's daemon will be used.
The .service file contains the path to the guix-daemon within the store. Thus
when copying the file, it will point to the very version of guix-daemon used
at the time of copying – even after system upgrade or when this version has
been garbage collected from the store.
* doc/guix.texi (Binary Installation): Change example code for installing
the systemd and Upstart files to use symbolic links instead of copying
the files.
| Hartmut Goebel | 2016-11-24 | 1 | -2/+2 |
* | gnu: ir: Use archived tarball and home page.•••* gnu/packages/audio.scm (ir)[source]: Use a list of archive mirrors.
[home-page]: Link to an Internet Archive snapshot.
| Tobias Geerinckx-Rice | 2016-11-24 | 1 | -4/+12 |
* | gnu: ir: Use ‘modify-phases’ syntax.•••* gnu/packages/audio.scm (ir)[arguments]: Use ‘modify-phases’.
| Tobias Geerinckx-Rice | 2016-11-24 | 1 | -4/+4 |
* | tests: Remove 'GUIX_LOCPATH' hack that had been added for glibc@2.23.•••* gnu/tests/base.scm (run-basic-test)[test]("locale"): Remove
'GUIX_LOCPATH' hack, which is no longer needed since
commit 9f58fe3d1c32e3f0ced065e286532a10cad1b5e3.
| Ludovic Courtès | 2016-11-23 | 1 | -8/+2 |
* | install: Enable "cryptodisk" handling in GRUB.•••This allows 'grub-install' to do the right thing when / or /boot is a
LUKS-encrypted partition.
Fixes <http://bugs.gnu.org/21843>.
* gnu/build/install.scm (install-grub): Add 'setenv' to set
'GRUB_ENABLE_CRYPTODISK'.
(wait-for-screen-text): New test.
* gnu/tests/base.scm (run-basic-test): Add #:initialization parameter
and honor it.
* gnu/tests/install.scm (%encrypted-root-os)[kernel-arguments]: Remove.
(%encrypted-root-installation-script): Pass '--uuid' to 'cryptsetup
luksFormat'. Remove 'sed' invocation.
(enter-luks-passphrase): New procedure.
(%test-encrypted-os)[value]: Pass #:initialization to 'run-basic-test'.
| Ludovic Courtès | 2016-11-23 | 4 | -13/+90 |