Skip to content
Snippets Groups Projects
  1. Jan 18, 2016
    • Alex Kost's avatar
      emacs: Add 'guix-search-by-name'. · 27a2e483
      Alex Kost authored
      * emacs/guix-ui-package.el (guix-search-by-name): New command.
      * doc/emacs.texi (Emacs Commands): Document it.
      27a2e483
    • Alex Kost's avatar
      emacs: Rename 'guix-search-by-name' to 'guix-packages-by-name'. · e119ba90
      Alex Kost authored
      * emacs/guix-ui-package.el (guix-search-by-name): Rename to...
        (guix-packages-by-name): ... this.  Complete package name.
      * doc/emacs.texi (Emacs Commands): Likewise.
      e119ba90
    • Efraim Flashner's avatar
      python2-jsonschema: Add python2-functools32 to inputs. · 264ae686
      Efraim Flashner authored
      * gnu/packages/python.scm (python2-jsonschema)[inputs]: Add
      python2-functools32.
      (python2-wheel)[native-inputs]: Specify python2-jsonschema. Add
      python2-functools32.
      (python2-requests)[propagated-inputs]: Specify python2-wheel.
      (python2-ipython)[inputs]: Specify python2-jsonschema, python2-requests.
      (python2-rauth)[propagated-inputs]: Specify python2-requests.
      * gnu/packages/openstack.scm (python2-requests-mock)[propagated-inputs]:
      Specify python2-requests.
      (python2-tempest-lib)[propagated-inputs]: Specify python2-jsonschema.
      (python2-oslosphinx)[propagated-inputs]: Specify python2-requests.
      (python2-keystoneclient)[porpagated-inputs]: Specify python2-requests.
      [native-inputs]: Specify python2-oslosphinx, python2-requests-mock,
      python2-tempest-lib.
      (python2-swiftclient)[propagated-inputs]: Specify python2-requests,
      python2-oslosphinx.
      264ae686
    • Efraim Flashner's avatar
      gnu: datamash: Update to 1.1.0. · 058247ef
      Efraim Flashner authored
      * gnu/packages/datamash.scm (datamash): Update to 1.1.0.
      058247ef
    • Taylan Ulrich Bayırlı/Kammer's avatar
      build: Speed up .go compilation. · de6af327
      Taylan Ulrich Bayırlı/Kammer authored
      * build-aux/compile-all.scm: New file.
      * Makefile.am (EXTRA_DIST): Add it.
      (%.go, make-go): New rules.
      de6af327
    • Mark H Weaver's avatar
      gnu: mariadb: Update to 10.0.23. · 8047d13d
      Mark H Weaver authored
      * gnu/packages/databases.scm (mariadb): Update to 10.0.23.
      8047d13d
    • Mark H Weaver's avatar
      gnu: rsync: Update to 3.1.2. · 51a277d8
      Mark H Weaver authored
      * gnu/packages/rsync.scm (rsync): Update to 3.1.2.
      51a277d8
  2. Jan 17, 2016
  3. Jan 16, 2016
    • Ricardo Wurmus's avatar
      gnu: samtools-0.1: Adapt to changes in "samtools" variable. · 2309ed68
      Ricardo Wurmus authored
      * gnu/packages/bioinformatics.scm (samtools-0.1)[arguments]: Add
        "LIBCURSES" make flag; delete "configure" phase; disable tests outside
        of "substitute-keyword-arguments".
      2309ed68
    • Ludovic Courtès's avatar
      doc: Document command-line options honored by the initrd. · e90cf6c1
      Ludovic Courtès authored
      * doc/guix.texi (Initial RAM Disk): Document kernel command-line
      options.
      e90cf6c1
    • Ludovic Courtès's avatar
      linux-modules: Support 'modprobe.blacklist' on the command line. · 7ba903b6
      Ludovic Courtès authored
      * gnu/build/linux-modules.scm (file-name->module-name)
      (module-black-list): New procedure.
      * gnu/build/linux-modules.scm (load-linux-module*): Add #:black-list
      parameter.
      [black-listed?, load-dependencies]: New procedures.
      Use them.
      7ba903b6
    • Alex Kost's avatar
      emacs: Add interface for system generations. · 67cedc4b
      Alex Kost authored
      * emacs/guix-main.scm (system-generation-boot-parameters)
      (system-generation-param-alist, system-generation-sexps): New procedures.
      (entries): Add 'system-generation' entry type.
      * emacs/guix-messages.el (guix-result-message): Use the same messages
        for 'generation' and 'system-generation' entry types.
      * emacs/guix-ui-system-generation.el: New file.
      * emacs.am (ELFILES): Add it.
      * doc/emacs.texi (Emacs Commands): Document new commands.
      * NEWS: Mention new interface.
      67cedc4b
    • Alex Kost's avatar
      emacs: Remove 'generation' search type. · 56728668
      Alex Kost authored
      Use 'installed' search type instead.
      
      * emacs/guix-main.scm (%patterns-makers): Remove 'generation'.
        (package/output-sexps): Adjust accordingly.
      * emacs/guix-ui-generation.el (guix-generation-info-insert-number):
        Replace 'generation' search with 'installed'.
        (guix-generation-list-show-packages): Likewise.
      * emacs/guix-messages.el (guix-messages): Remove 'generation'.
      56728668
    • Alex Kost's avatar
      emacs: Replace 'generation-diff' search with 'profile-diff'. · 54c3c284
      Alex Kost authored
      * emacs/guix-main.scm (generation-package-specifications): Rename to...
        (profile-package-specifications): ... this.  Take a single 'profile'
        argument.
        (generation-difference): Rename to...
        (profile-difference): ... this.  Take profiles as arguments.
        (package/output-sexps): Adjust accordingly.
      * emacs/guix-ui-generation.el (guix-generation-list-profiles-to-compare):
        New procedure.
        (guix-generation-list-show-added-packages)
        (guix-generation-list-show-removed-packages): Use it.
      * emacs/guix-messages.el (guix-messages): Replace 'generation-diff' with
        'profile-diff'.
        (guix-message-outputs-by-diff): Adjust accordingly.
      54c3c284
    • Alex Kost's avatar
      emacs: Find packages in system profiles. · 2df17bd0
      Alex Kost authored
      For a usual profile, packages are placed in a profile directory itself,
      but for a system profile, packages are placed in 'profile'
      sub-directory.  So we need to do some special cases for system profiles
      to find packages there as well.
      
      * emacs/guix-base.el (guix-packages-profile): New procedure.
        (guix-manifest-file): Use it.  Add optional 'system?' argument.
      * emacs/guix-ui-generation.el (guix-system-generation?)
        (guix-generation-current-packages-profile):  New procedures.
        (guix-generation-packages, guix-generation-insert-packages): Remove
        'generation' argument.
        (guix-generation-packages-buffer): Add optional 'system?' argument.
        (guix-profile-generation-manifest-file)
        (guix-profile-generation-packages-buffer): Adjust accordingly.
      * emacs/guix-main.scm (generation-package-specifications+paths): Rename to...
        (profile->specifications+paths): ... this.  Use a single 'profile' argument.
      2df17bd0
    • Alex Kost's avatar
      emacs: profiles: Add 'guix-system-profile'. · a0ad8ab0
      Alex Kost authored
      * emacs/guix-profiles.el (guix-system-profile): New variable.
      a0ad8ab0
    • Alex Kost's avatar
      Move <boot-parameters> to (gnu system). · b8300494
      Alex Kost authored
      * guix/scripts/system.scm (previous-grub-entries)
        (display-system-generation): Use accessors instead of matching
        <boot-parameters>.
        (boot-parameters, boot-parameters?, boot-parameters-label)
        (boot-parameters-root-device, boot-parameters-kernel)
        (boot-parameters-kernel-arguments, read-boot-parameters): Move to...
      * gnu/system.scm: ... here. Export them.
      b8300494
    • Sou Bunnbu (宋文武)'s avatar
      gnu: Add python-hy. · c3e919d7
      Sou Bunnbu (宋文武) authored
      * gnu/packages/python.scm (python-hy, python2-hy): New variables.
      c3e919d7
    • Sou Bunnbu (宋文武)'s avatar
      gnu: Add python-rply. · e224b7d0
      Sou Bunnbu (宋文武) authored
      * gnu/packages/python.scm (python-rply, python2-rply): New variables.
      e224b7d0
    • Sou Bunnbu (宋文武)'s avatar
      gnu: Add python-astor. · 4ecdeef8
      Sou Bunnbu (宋文武) authored
      * gnu/packages/python.scm (python-astor, python2-astor): New variables.
      4ecdeef8
Loading