summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Add "guix pull".•••* guix/scripts/pull.scm: New file. * Makefile.am (MODULES): Add it. * doc/guix.texi (Invoking guix pull): New node. (Invoking guix package): Add cross-ref to it. * guix/ui.scm (config-directory): New procedure. * scripts/guix.in: When `GUIX_UNINSTALLED' is undefined, add $XDG_CONFIG_HOME/guix/latest to the search path. * po/POTFILES.in: Add guix/scripts/pull.scm. Ludovic Courtès2013-02-206-2/+288
* ui: Factorize `show-what-to-build'.•••* guix/scripts/package.scm (guix-package)[show-what-to-build]: Move to.. * guix/ui.scm (show-what-to-build): ... here. Add a `store' parameter'. Adjust callers. * guix/scripts/build.scm (guix-build): Use it. Remove `req' and `req*' variables. Ludovic Courtès2013-02-203-48/+32
* build: Adjust guix.texi to Texinfo 5.0.•••* doc/guix.texi: Change @title and @subtitle syntax to please Texinfo 5.0. Ludovic Courtès2013-02-201-2/+2
* ui: Add temporary file handling and atomic symlink switch.•••* guix/scripts/download.scm (call-with-temporary-output-file): Move to ui.scm. * guix/scripts/package.scm (switch-symlinks): Likewise. * guix/ui.scm (call-with-temporary-output-file, switch-symlinks): New procedures. Ludovic Courtès2013-02-203-18/+24
* download: Adjust to `http-get*' deprecation.•••* guix/build/download.scm (http-fetch): Adjust to use #:streaming? when using Guile 2.0.8+. Ludovic Courtès2013-02-201-8/+17
* derivations: Add a search path parameter for module derivations.•••* guix/derivations.scm (imported-modules, compiled-modules): Add a `module-path' parameter. Use it instead of %LOAD-PATH. Ludovic Courtès2013-02-201-5/+8
* gnu: texinfo: Make Perl a propagated input.•••* gnu/packages/texinfo.scm (texinfo): Make PERL a propagated input. Ludovic Courtès2013-02-201-2/+3
* build: Add missing -I flag for the daemon.•••* daemon.am (libstore_a_CPPFLAGS): Add missing -I, for schema.sql.hh. Ludovic Courtès2013-02-191-0/+1
* daemon: Add `--listen'.•••* nix/nix-daemon/guix-daemon.cc (GUIX_OPT_LISTEN): New macro. (options): Add `--listen'. (parse_opt): Handle it. * doc/guix.texi (Invoking guix-daemon): Mention it. Ludovic Courtès2013-02-192-1/+25
* Update from upstream Nix.Ludovic Courtès2013-02-191-0/+0
* store: Add the `%daemon-socket-file' parameter.•••* guix/store.scm (%daemon-socket-file): New variable. (open-connection): Use it as the default value for FILE. Ludovic Courtès2013-02-181-2/+10
* Add Mark to `AUTHORS'.Ludovic Courtès2013-02-171-0/+1
* build: Build guix/scripts/download.go after guix/build/download.go.•••* Makefile.am (guix/scripts/download.go): Add dependency on `guix/build/download.go'. Reported by Nikita Karetnikov <nikita@karetnikov.org>. Ludovic Courtès2013-02-171-0/+3
* scripts: Remove hyphen in the command name shown by `--version'.•••* guix/scripts/build.scm (%options): Remove hyphen from the name passed to `show-version-and-exit'. * guix/scripts/download.scm (%options): Likewise. * guix/scripts/gc.scm (%options): Likewise. * guix/scripts/import.scm (%options): Likewise. * guix/scripts/package.scm (%options): Likewise. Ludovic Courtès2013-02-175-5/+5
* gnu: guile-reader: Rename packages to avoid version number confusion.•••* gnu/packages/guile.scm (guile-reader): Change the character preceding the guile version number from '-' to '_' so that it will not be misinterpreted as the package version number. Mark H Weaver2013-02-171-1/+1
* Update `TODO'.Mark H Weaver2013-02-171-3/+2
* scripts: Remove initialization now redundant with `initialize-guix'.•••* guix/scripts/build.scm (guix-build): Remove calls to `install-locale', `textdomain', etc., now redundant with `initialize-guix'. * guix/scripts/download.scm (guix-download): Likewise. * guix/scripts/import.scm (guix-import): Likewise. * guix/scripts/package.scm (guix-package): Likewise. * guix/ui.scm: Remove export of `install-locale' and `initialize-guix'. (initialize-guix): Add docstring. Ludovic Courtès2013-02-175-22/+1
* gnu: texinfo: Update to 5.0.•••* gnu/packages/texinfo.scm (texinfo): Update to 5.0. Ludovic Courtès2013-02-171-17/+15
* Replace individual scripts with master 'guix' script.•••* scripts/guix.in: New script. * Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build', 'guix-download', 'guix-import', 'guix-package', and 'guix-gc'. (MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm', 'guix/scripts/import.scm', 'guix/scripts/package.scm', and 'guix/scripts/gc.scm'. * configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build', 'guix-download', 'guix-import', 'guix-package', and 'guix-gc'. * guix-build.in, guix-download.in, guix-gc.in, guix-import.in, guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to (guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in usage help string. * pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH. Export $GUIX_UNINSTALLED. * tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of "guix-COMMAND". * doc/guix.texi: Replace all occurrences of "guix-COMMAND" with "guix COMMAND". * po/POTFILES.in: Update. Mark H Weaver2013-02-1618-208/+227
* Add (gnu system vm).•••* gnu/system/vm.scm: New file. * Makefile.am (MODULES): Add it. Ludovic Courtès2013-02-162-1/+265
* gnu: Add support for Guile in Linux initrd.•••* gnu/packages/linux-initrd.scm: New file. Ludovic Courtès2013-02-162-0/+289
* gnu: qemu-kvm: Add patch to have multiple SMB shares.•••* gnu/packages/qemu.scm (qemu-kvm/smb-shares): New variable. * gnu/packages/patches/qemu-multiple-smb-shares.patch: New file. * Makefile.am (dist_patch_DATA): Add it. Ludovic Courtès2013-02-163-0/+34
* packages: Add `package-output'.•••* guix/packages.scm (package-output): New procedure. * tests/packages.scm ("package-output"): New test. Ludovic Courtès2013-02-162-1/+21
* gnu: guile-static: Change `name' field.•••* gnu/packages/make-bootstrap.scm (%guile-static): Add `name' field with `-static' suffix. Ludovic Courtès2013-02-161-0/+1
* gnu: guile-static: Add bindings for `reboot'.•••* gnu/packages/patches/guile-linux-syscalls.patch: Add `scm_reboot'. Ludovic Courtès2013-02-161-2/+44
* gnu: qemu: Add dependency on Samba.•••* gnu/packages/qemu.scm (qemu-kvm): Add dependency on Samba; pass `--smbd' to ./configure. Ludovic Courtès2013-02-151-3/+8
* gnu: samba: Augment the RUNPATH of executables to point to $out/lib.•••* gnu/packages/samba.scm (samba): Add `add-lib-to-runpath' phase, and PatchELF as an input. Ludovic Courtès2013-02-151-5/+42
* gnu: Add GNU Parted.•••* gnu/packages/parted.scm: New file. * Makefile.am (MODULES): Add it. Nikita Karetnikov2013-02-152-0/+72
* gnu: guile-static: Add bindings for low-level Linux syscalls.•••* gnu/packages/make-bootstrap.scm (%guile-static): Add `guile-linux-syscalls.patch' as an input, and use it. * gnu/packages/patches/guile-linux-syscalls.patch: New file. * Makefile.am (dist_patch_DATA): Add it. Ludovic Courtès2013-02-153-1/+239
* gnu: linux-libre: Choose a config without debugging features.•••* gnu/packages/linux.scm (linux-libre): Choose "defconfig" instead of "allmodconfig" since the latter enables all debugging features. Add `CONFIG_CIFS=m'. Ludovic Courtès2013-02-151-1/+7
* gnu: Add vim.•••* gnu/packages/vim.scm: New file. * Makefile.am (MODULES): Add it. Cyril Roelandt2013-02-142-0/+75
* Build newest versions unless specified, and implement upgrades.•••* gnu/packages.scm (find-newest-available-packages): New exported procedure. * guix-build.in (newest-available-packages, find-best-packages-by-name): New procedures. (find-package): Use find-best-packages-by-name, to guarantee that if a version number is not specified, only the newest versions will be considered. * guix-package.in (%options): Add --upgrade/-u option. (newest-available-packages, find-best-packages-by-name, upgradeable?): New procedures. (find-package): Use find-best-packages-by-name, to guarantee that if a version number is not specified, only the newest versions will be considered. (process-actions): Implement upgrade option. * doc/guix.texi (Invoking guix-package): In the description of --install, mention that if no version number is specified, the newest available version will be selected. Mark H Weaver2013-02-134-20/+106
* Inhibit duplicates in fold-packages.•••* gnu/packages.scm (fold2): New procedure. (fold-packages): Rework to suppress duplicates. Mark H Weaver2013-02-131-12/+28
* build-system/gnu: Make the strip behavior of `static-package' configurable.•••* guix/build-system/gnu.scm (static-package): Add #:strip-all? keyword parameter. Ludovic Courtès2013-02-141-5/+9
* gnu: guile-static: Use libgc build with `USE_LIBC_PRIVATES'.•••* gnu/packages/make-bootstrap.scm (%guile-static): Use libgc build with CPPFLAGS=-DUSE_LIBC_PRIVATES. * gnu/packages/bdw-gc.scm (libgc): Add TODO to always do it. Ludovic Courtès2013-02-142-38/+50
* gnu: Add missing patch for mcron.•••* gnu/packages/patches/mcron-install.patch: New file. * Makefile.am (dist_patch_DATA): Add it. Ludovic Courtès2013-02-142-0/+23
* gnu: Add GNU Wdiff.•••* gnu/packages/wdiff.scm: New file. * Makefile.am (MODULES): Add it. Nikita Karetnikov2013-02-132-0/+62
* Add version-compare and version>? to utils.scm.•••* guix/utils.scm (version-compare, version>?): New exported procedures, based on version-string>?, which was formerly in gnu-maintenance.scm. * guix/gnu-maintenance.scm (version-string>?): Removed procedure. (latest-release): Use 'version>?' instead of 'version-string>?'. Mark H Weaver2013-02-122-10/+22
* gnu: Add signing-party.•••* gnu/packages/gnupg.scm (signing-party): New variable. Andreas Enge2013-02-131-0/+104
* Add pre-inst-env and test-env to nodist_noinst_SCRIPTS in Makefile.am.•••* Makefile.am: Add nodist_noinst_SCRIPTS = pre-inst-env test-env. Mark H Weaver2013-02-121-0/+4
* gnu: Add Samba and iniparser.•••* gnu/packages/samba.scm: New file. * Makefile.am (MODULES): Add it. Ludovic Courtès2013-02-122-0/+144
* gnu: bigloo: Install Emacs modes.•••* gnu/packages/scheme.scm (bigloo): Add `install-emacs-modes' phase. Ludovic Courtès2013-02-121-1/+9
* gnu: gnupg: Add optional inputs curl and openldap.•••* gnu/packages/gnupg.scm (gnupg): Add inputs. Andreas Enge2013-02-121-6/+7
* gnu: gnupg: Patch out /bin/sh in generated file.•••* gnu/packages/gnupg.scm (gnupg): Modify configure phase. Andreas Enge2013-02-121-0/+10
* gnu: Rename module 'freetype' to the more general 'fontutils'.•••* gnu/packages/freetype.scm: Rename file to... * gnu/packages/fontutils.scm: ...this. * Makefile.am (MODULES): Rename module. * gnu/packages/{ghostscript,grub,pdf,texlive}.scm: Rename dependency. Andreas Enge2013-02-126-6/+6
* doc: Add the commit policy to HACKING.•••* HACKING (Commit Access): New section. Ludovic Courtès2013-02-121-0/+26
* build: Export `NIX_ROOT_FINDER' and `NIX_SETUID_HELPER' from `pre-inst-env'.•••* pre-inst-env.in (NIX_ROOT_FINDER, NIX_SETUID_HELPER): New variables. Reported by Cyril Roelandt <tipecaml@gmail.com>. Ludovic Courtès2013-02-121-1/+7
* gnu: Add popt.•••* gnu/packages/popt.scm (popt): New file. * Makefile.am (MODULES): Add it. Ludovic Courtès2013-02-122-0/+62
* gnu: Add Linux-Libre.•••* gnu/packages/linux.scm (linux-libre): New variable. Ludovic Courtès2013-02-121-0/+63
* gnu: Add libunwind.•••* gnu/packages/libunwind.scm: New file. * Makefile.am (MODULES): Add it. Ludovic Courtès2013-02-122-0/+53