summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* gnu: lxqt: Update source URLs to use HTTPS.Mark H Weaver2016-02-14
| | | | | * gnu/packages/lxqt.scm (libqtxdg, liblxqt, lxqt-common) (lxqt-session)[source]: Use HTTPS URLs.
* gnu: openbox: Update to 3.6.1.Efraim Flashner2016-02-14
| | | | * gnu/packages/openbox.scm (openbox): Update to 3.6.1.
* gnu: postgresql: Update to 9.3.11. [fixes ↵Efraim Flashner2016-02-14
| | | | | | CVE-2015-{5288,5289},CVE-2016-{0766,0773}] * gnu/packages/databases.scm (postgresql): Update to 9.3.11.
* gnu: Add baobab.Jochem Raat2016-02-13
| | | | * gnu/packages/gnome.scm (baobab): New variable.
* gnu: Add pianobar.Al McElrath2016-02-13
| | | | | | * gnu/packages/music.scm (pianobar): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
* gnu: Add python-wtformsChristopher Allan Webber2016-02-13
| | | | * gnu/packages/python.scm (python-wtforms, python2-wtforms): New variables.
* doc: Correct typos.Andreas Enge2016-02-13
| | | | * doc/guix.texi: Correct typos, grammar and stylistic points.
* gnu: iproute: Update to 4.4.0.Alex Kost2016-02-13
| | | | * gnu/packages/linux.scm (iproute): Update to 4.4.0.
* gnu: iproute: Use 'modify-phases'.Alex Kost2016-02-13
| | | | * gnu/packages/linux.scm (iproute)[arguments]: Use 'modify-phases'.
* gnu: calibre: Update to 2.51.0.Andreas Enge2016-02-13
| | | | * gnu/packages/ebook.scm (calibre): Update to 2.51.0.
* gnu: gnuplot: Update to 5.0.2.Andreas Enge2016-02-13
| | | | * gnu/packages/maths.scm (gnuplot): Update to 5.0.2.
* gnu: lablgtk: Build cmxa libraries.Jan Nieuwenhuizen2016-02-13
| | | | | * gnu/packages/ocaml.scm (lablgtk)[arguments]: Add the make target "opt" to also build *.cmxa files.
* gnu: ocaml: Set search path.Jan Nieuwenhuizen2016-02-13
| | | | * gnu/packages/ocaml.scm (ocaml): Register OCAMLPATH as a search path.
* gnu: Add ocaml-findlib.Jan Nieuwenhuizen2016-02-13
| | | | | | * gnu/packages/ocaml.scm (ocaml-findlib): New variable. * gnu/packages/patches/ocaml-findlib-make-install.patch: New file. * gnu-system.am (dist_patch_DATA): Register it.
* gnu: gnupg: Add upstream fix for test failures on x86_64.Mark H Weaver2016-02-12
| | | | | | | | | Fixes <https://debbugs.gnu.org/22558>. * gnu/packages/patches/gnupg-simple-query-ignore-status-messages.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/gnupg.scm (gnupg)[source]: Add patch.
* gnu: Add tclxml.Jan Nieuwenhuizen2016-02-12
| | | | | | | | * gnu/packages/patches/tclxml-3.2-install.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/tcl.scm (tclxml): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
* gnu: Split acme into python-acme and python2-acme.Leo Famulari2016-02-12
| | | | | | * gnu/packages/tls.scm (acme): Split variable into... (python-acme, python2-acme): ...both Python variants. (letsencrypt)[propagated-inputs]: Update user of renamed variable.
* gnu: python-wheel: Define 'python2-variant'.Leo Famulari2016-02-12
| | | | | | | | * gnu/packages/python.scm (python-wheel)[properties]: New field. (python2-wheel): Use 'strip-python2-variant'. (python2-requests): Take the result of 'package-with-python2' directly. * gnu/packages/openstack.scm (python2-requests-mock): Likewise. (python2-oslosphinx): Likewise.
* gnu: python-jsonschema: Define 'python2-variant'.Leo Famulari2016-02-12
| | | | | | | * gnu/packages/python.scm (python-jsonschema)[properties]: New field. (python2-jsonschema): Use 'strip-python2-variant'. * gnu/packages/openstack.scm (python2-tempest-lib): Take the result of 'package-with-python2' directly.
* gnu: python-cryptography: Define 'python2-variant'.Leo Famulari2016-02-12
| | | | | | * gnu/packages/python.scm (python-cryptography)[properties]: New field. (python2-cryptography): Use 'strip-python2-variant'. (python2-pyopenssl): Take the result of 'package-with-python2' directly.
* gnu: Add tcllib.Jan Nieuwenhuizen2016-02-12
| | | | | | * gnu/packages/tcl.scm (tcllib): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
* gnu: tcl: Use tcl/tk license.Jan Nieuwenhuizen2016-02-12
| | | | | | * gnu/packages/tcl.scm (tcl)[license]: Use the tcl/tk license variable. Signed-off-by: Leo Famulari <leo@famulari.name>
* licenses: Add tcl/tk license.Jan Nieuwenhuizen2016-02-12
| | | | | | * guix/licenses.scm (tcl/tk): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
* scripts: environment: Build environments as profiles.David Thompson2016-02-12
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes <http://bugs.gnu.org/19816>. * guix/scripts/environment.scm (evaluate-input-search-paths) (build-inputs): Delete. (evaluate-profile-search-paths, strip-input-name) (package-or-package+output?, package-environment-inputs) (build-environment, inputs->profile-derivations): New procedures. (create-environment, show-search-paths, launch-environment) (launch-environment/container): Replace 'inputs' argument with 'profile' argument. (package+propagated-inputs): Strip off names off of input tuples. (options/resolve-packages): Handle input tuples that specify an output in expressions. (guix-environment): Convert inputs into a profile to use in the environment. Remove non-package inputs such as origins from environment inputs. * doc/guix.texi ("invoking guix environment"): Document package+output tuples for --expression option. * tests/guix-environment.sh: Update tests. * tests/guix-environment-container.sh: Likewise. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
* profiles: Add #:system argument to profile-derivation.Ludovic Courtès2016-02-12
| | | | | | | Suggested by David Thompson <davet@gnu.org>. * guix/profiles.scm (profile-derivation): Add #:system parameter and honor it.
* store: Add monadic access to '%current-system'.Ludovic Courtès2016-02-12
| | | | | * guix/store.scm (current-system, set-current-system): New procedures. * tests/store.scm ("current-system"): New test.
* gnu: macs: Update to 2.1.0.20151222.Ricardo Wurmus2016-02-12
| | | | * gnu/packages/bioinformatics.scm (macs): Update to 2.1.0.20151222.
* gnu: macs: Use "pypi-uri".Ricardo Wurmus2016-02-12
| | | | | * gnu/packages/bioinformatics.scm (macs)[source]: Use "pypi-uri" to build source URI.
* gnu: python2-fastlmm: Update to 0.2.21.Ricardo Wurmus2016-02-12
| | | | * gnu/packages/python.scm (python2-fastlmm): Update to 0.2.21.
* gnu: python2-pysnptools: Update to 0.3.5.Ricardo Wurmus2016-02-12
| | | | * gnu/packages/python.scm (python2-pysnptools): Update to 0.3.5.
* gnu: python-numpy-bootstrap: Update to 1.10.4.Ricardo Wurmus2016-02-12
| | | | * gnu/packages/python.scm (python-numpy-bootstrap): Update to 1.10.4.
* gnu: python-pandas: Update to 0.16.2.Ricardo Wurmus2016-02-12
| | | | * gnu/packages/python.scm (python-pandas): Update to 0.16.2.
* gnu: Add gnunet-gtk.Ni* Gillmann2016-02-12
| | | | | | * gnu/packages/gnunet.scm (gnunet-gtk): New variable. Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
* gnu: gnunet: Add gstreamer and plugins to inputs.Ricardo Wurmus2016-02-12
| | | | | * gnu/packages/gnunet.scm (gnunet)[inputs]: Add "gstreamer" and "gst-plugins-base".
* install: Add btrfs-progs to the image.Tobias Geerinckx-Rice2016-02-11
| | | | | | * gnu/system/install.scm (installation-os)[packages]: Add BTRFS-PROGS. Signed-off-by: Leo Famulari <leo@famulari.name>
* gnu: Add btrfs-progs.Tobias Geerinckx-Rice2016-02-11
| | | | | | * gnu/packages/linux.scm (btrfs-progs): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
* Revert "gnu: nginx: Update to 1.9.11. [fixes CVE-2016-{0742, 0746, 0747}]"Mark H Weaver2016-02-11
| | | | This reverts commit 759246ad48c585621355e8c32bf3596ef9cd356f.
* gnu: icecat: Update bundled graphite2 to 1.3.5 for security fixes.Mark H Weaver2016-02-11
| | | | | | | * gnu/packages/patches/icecat-update-graphite2.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/gnuzilla.scm (icecat)[source]: Add patch. Add TODO comment about using the system graphite2 in the future.
* gnu: nginx: Update to 1.9.11. [fixes CVE-2016-{0742, 0746, 0747}]Efraim Flashner2016-02-11
| | | | * gnu/packages/web.scm (nginx): Update to 1.9.11.
* gnu: feh: Update to 2.14.1.Efraim Flashner2016-02-11
| | | | * gnu/packages/feh.scm (feh): Update to 2.14.1.
* gnu: obs: Update to 0.13.1.Efraim Flashner2016-02-11
| | | | * gnu/packages/video.scm (obs): Update to 0.13.1.
* gnu: fribidi: Update to 0.19.7.Efraim Flashner2016-02-11
| | | | * gnu/packages/fribidi.scm (fribidi): Update to 0.19.7.
* gnu: alsa-utils: Update to 1.1.0.Efraim Flashner2016-02-11
| | | | * gnu/packages/linux.scm (alsa-utils): Update to 1.1.0.
* gnu: zynaddsubfx: Update to 2.5.3.Ricardo Wurmus2016-02-11
| | | | * gnu/packages/music.scm (zynaddsubfx): Update to 2.5.3.
* gnu: htop: Update to 2.0.0.Leo Famulari2016-02-11
| | | | * gnu/packages/admin.scm (htop): Update to 2.0.0.
* gnu: Add notmuch-addrlookup-c.Al McElrath2016-02-10
| | | | | | * gnu/packages/mail.scm (notmuch-addrlookup-c): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
* doc: Provide more details about system installation.Ludovic Courtès2016-02-10
| | | | | | | | | | | | | * doc/guix.texi (System Installation): Turn all subsections into individual nodes. (Limitations): Update the number of packages. (Preparing for Installation)[Keyboard Layout, Networking, Disk Partitionning]: New subsections. Move the 'cow-store' thing to... (Proceeding with the Installation): ... here. Describe things in more detail. (Base Services): Add index entry for "keyboard layout". Co-authored-by: Petter <petter@mykolab.ch>.
* install: Do not cache lookup failures.Ludovic Courtès2016-02-10
| | | | | | | Possibly fixes <http://bugs.gnu.org/22209>. * gnu/system/install.scm (%nscd-minimal-caches)[negative-time-to-live]: Set to zero.
* gnu: Fix syntax error in postgresql-service.Leo Famulari2016-02-10
| | | | | | | | Fixes <http://bugs.gnu.org/22618>. Reported by Danny Milosavljevic <dannym@scratchpost.org>. * gnu/services/databases.scm (%default-postgres-config): Add missing quote in default configuration.
* gnu: mit-krb5: Update to 1.13.3; add fixes for CVE-2015-{8629,8630,8631}.Mark H Weaver2016-02-10
| | | | | | | | | | | | | | | | | | | | * gnu/packages/patches/mit-krb5-CVE-2015-2695-pt1.patch, gnu/packages/patches/mit-krb5-CVE-2015-2695-pt2.patch, gnu/packages/patches/mit-krb5-CVE-2015-2696.patch, gnu/packages/patches/mit-krb5-CVE-2015-2697.patch, gnu/packages/patches/mit-krb5-CVE-2015-2698-pt1.patch, gnu/packages/patches/mit-krb5-CVE-2015-2698-pt2.patch: Delete files. * gnu/packages/patches/mit-krb5-CVE-2015-8629.patch, gnu/packages/patches/mit-krb5-CVE-2015-8630.patch, gnu/packages/patches/mit-krb5-CVE-2015-8631.patch, gnu/packages/patches/mit-krb5-init-context-null-spnego.patch: New files. * gnu-system.am (dist_patch_DATA): Adjust accordingly. * gnu/packages/mit-krb5.scm (mit-krb5): Update to 1.13.3. [source]: Update URI to download conventional .tar.gz file. Add patches. [native-inputs]: Remove old patches-as-inputs. [arguments]: Remove hacks needed to cope with the older unconventional tarball that contained an inner source tarball and signature: Remove #:modules argument, and the custom 'unpack' and 'apply-patches' phases.