summaryrefslogtreecommitdiff
path: root/gnu/packages
Commit message (Collapse)AuthorAge
* PRELIMINARY: gnu: Add ppp.Mark H Weaver2015-08-18
| | | | | | TODO: Fix 'license' field. * gnu/packages/networking.scm (ppp): New variable.
* gnu: linux-libre: Update to 4.1.6.Mark H Weaver2015-08-18
| | | | * gnu/packages/linux.scm (linux-libre): Update to 4.1.6.
* gnu: tk: Build with Xft support.宋文武2015-08-19
| | | | | * gnu/packages/tcl.scm (tk)[inputs]: Add LIBXFT. [native-inputs]: New field.
* gnu: Add Rage player.Daniel Pimentel2015-08-19
| | | | | | * gnu/packages/enlightenment.scm: Add Rage. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* build: ruby: Rewrite build system to use gem archives.David Thompson2015-08-18
| | | | | | | | | | | | | | | | | | | | | Co-Authored-By: Pjotr Prins <pjotr.public01@thebird.nl> * guix/build-system/ruby.scm (lower): Remove git dependency. (rubygems-uri): New procedure. * guix/build/ruby-build-system (gitify): Delete. (unpack): Use 'gem unpack' utility. (check): Add docstring. (build): Repack modified gem. (install): Rebuild unpacked gem and install it. (%standard-phases): Remove gitify and build phases. * gnu/packages/ruby.scm (ruby-hoe, ruby-rake-compiler, ruby-i18n, ruby-rspec-support, ruby-rspec-core, ruby-diff-lcs-for-rspec, ruby-rspec-expectations, ruby-rspec-mocks, ruby-rspec, bundler, ruby-useragent, ruby-bacon, ruby-arel, ruby-connection-pool, ruby-net-http-persistent, ruby-minitest, ruby-minitest-sprint, ruby-minitest-bacon, ruby-daemons, ruby-git, ruby-slop, ruby-multipart-post): Convert to new build system. * doc/guix.texi (ruby-build-system): Document the gem archive requirement.
* gnu: calibre: Update to 2.35.0.Andreas Enge2015-08-17
| | | | * gnu/packages/ebook.scm (calibre): Update to 2.35.0.
* gnu: r: Add R_LIBS_SITE to native-search-paths.Ricardo Wurmus2015-08-17
| | | | | * gnu/packages/statistics.scm (r)[native-search-paths]: Add specification for "R_LIBS_SITE" variable.
* gnu: r: Update to 3.2.2.Ricardo Wurmus2015-08-17
| | | | * gnu/packages/statistics.scm (r): Update to 3.2.2.
* gnu: Add American fuzzy lop.Eric Bavier2015-08-16
| | | | * gnu/packages/debug.scm (american-fuzzy-lop): New variable.
* gnu: qemu: Honor #:configure-flags argument.Eric Bavier2015-08-16
| | | | | * gnu/packages/qemu.scm (qemu-headless)[arguments]: Honor #:configure-flags arguments for configure phase.
* gnu: ardour: Update to 4.2.Ricardo Wurmus2015-08-16
| | | | * gnu/packages/audio.scm (ardour): Update to 4.2.
* gnu: notmuch: Update to 0.20.2.David Thompson2015-08-16
| | | | | * gnu/packages/mail.scm (notmuch): Update to 0.20.2. Add python-sphinx native input. Rewrite phases using 'modify-phases' syntax.
* gnu: offlineimap: Update to 6.5.7.David Thompson2015-08-16
| | | | * gnu/packages/mail.scm (offlineimap): Update to 6.5.7.
* gnu: guitarix: Update to 0.33.0.Ricardo Wurmus2015-08-16
| | | | | * gnu/packages/audio.scm (guitarix): Update to 0.33.0. [native-inputs]: Add faust.
* gnu: Add znc.David Thompson2015-08-15
| | | | * gnu/packages/messaging.scm (znc): New variable.
* gnu: Remove mplayer2.Taylan Ulrich Bayırlı/Kammer2015-08-15
| | | | * gnu/packages/video.scm (mplayer2): Removed variable.
* gnu: epiphany: Add dconf to propagated-inputs.宋文武2015-08-15
| | | | * gnu/packages/gnome.scm (epiphany)[propagated-inputs]: New field.
* gnu: flint: Disable parallel tests.Andreas Enge2015-08-15
| | | | | * gnu/packages/algebra.scm (flint)[arguments]: Disable parallel tests, which makes the build pass on arm.
* gnu: Add Gamine.Eric Bavier2015-08-14
| | | | * gnu/packages/games.scm (gamine): New variable.
* gnu: glib-networking: Prefer 'SSL_CERT_FILE' as TLS CA file.宋文武2015-08-14
| | | | | | | | | | | | This is an improvement over commit af6100f. * gnu/packages/gnome.scm (glib-networking)[source](patches): New field. [arguments]: Pass '/etc/ssl/certs/ca-certificates.crt' to configure. Set 'SSL_CERT_FILE' to '/dev/null' in 'use-empty-ssl-cert-file' phase. (libsoup)[arguments]: Set 'SSL_CERT_FILE' to '/dev/null' in 'pre-check' phase. * gnu/packages/patches/glib-networking-ssl-cert-file.patch: New patch. * gnu-system.am (dist_patch_DATA): Add it.
* gnu: flint: Update to 2.5.2.Andreas Enge2015-08-14
| | | | | | * gnu/packages/algebra.scm (flint): Update to 2.5.2. * gnu/packages/patches/flint-ldconfig.patch: New file. * gnu-system.am (dist_patch_DATA): Register the patch.
* gnu: flint: Rewrite using the modify-phases syntax.Andreas Enge2015-08-14
| | | | | * gnu/packages/algebra.scm (flint)[arguments]: Rewrite the phases using the modify-phases syntax.
* gnu: wireless-tools: Build shared library; remove non-free headers.Mark H Weaver2015-08-14
| | | | | | | | * gnu/packages/linux.scm (wireless-tools)[source]: Replace unneeded old snippet with a new one that removes non-free files. [arguments]: Use modify-phases. Remove custom 'configure' phase. Add make-flags. [license]: Change to (list gpl2 lgpl2.1+).
* gnu: shogun: Move package to machine-learning.scm.Ricardo Wurmus2015-08-14
| | | | | * gnu/packages/bioinformatics.scm (shogun): Move from here... * gnu/packages/machine-learning.scm (shogun): ...to here.
* gnu: Add guile-redis.David Thompson2015-08-14
| | | | * gnu/packages/guile.scm (guile-redis): New variable.
* gnu: Add haunt.David Thompson2015-08-14
| | | | * gnu/packages/guile.scm (haunt): New variable.
* Revert "gnu: glib-networking: Use '/etc/ssl/certs/ca-certificates.crt' as ↵宋文武2015-08-14
| | | | | | | | TLS CA file." This broke libsoup tests. This reverts commit af6100f51bf79efef0f79f90245790c410545513.
* gnu: fish: Update to 2.2.0.Eric Bavier2015-08-14
| | | | * gnu/packages/fish.scm (fish): Update to 2.2.0.
* gnu: calcurse: Update to 4.0.0.Eric Bavier2015-08-14
| | | | | * gnu/packages/calcurse.scm (calcurse): Update to 4.0.0. [arguments]: New field.
* gnu: c-reduce: Update to 2.3.0.Eric Bavier2015-08-14
| | | | | * gnu/packages/debug.scm (c-reduce): Update to 2.3.0. [inputs]: Use latest llvm and clang.
* gnu: glib-networking: Use '/etc/ssl/certs/ca-certificates.crt' as TLS CA file.宋文武2015-08-14
| | | | | | * gnu/packages/gnome.scm (glib-networking)[arguments]: Pass '--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt' to configure. Add 'disable-failing-tls-tests' phase.
* gnu: webkitgtk: Update to 2.8.5.Mark H Weaver2015-08-13
| | | | | * gnu/packages/webkit.scm (webkitgtk): Update to 2.8.5. [arguments]: Add 'add-gst-plugins-base-include-path' phase.
* gnu: webkitgtk/gtk+-2: Change name field to "webkitgtk-gtk2".Mark H Weaver2015-08-13
| | | | | * gnu/packages/webkit.scm (webkitgtk/gtk+-2)[name]: Change to "webkitgtk-gtk2".
* gnu: Add wesnoth.宋文武2015-08-13
| | | | * gnu/packages/games.scm (wesnoth): New variable.
* gnu: Add rfkill.Mark H Weaver2015-08-12
| | | | * gnu/packages/linux.scm (rfkill): New variable.
* gnu: icecat: Add fixes for CVE-2015-{4473,4482,4488,4489,4491,4492}.Mark H Weaver2015-08-12
| | | | | | | | | | | | | | | | | WARNING: CVE-2015-4473 may not be fully addressed here, because I was unable to backport some of the patches (for upstream bugs 1182711 and 1146213). I was also unable to backport CVE-2015-4484 (upstream bug 1171540) and CVE-2015-4487 (upstream bug 1171603). I was unable to find any commit in the upstream repository that claims to address bug 1105914 (CVE-2015-4478). * gnu/packages/patches/icecat-CVE-2015-4473-partial.patch, gnu/packages/patches/icecat-CVE-2015-4482.patch, gnu/packages/patches/icecat-CVE-2015-4488.patch, gnu/packages/patches/icecat-CVE-2015-4489.patch, gnu/packages/patches/icecat-CVE-2015-4491.patch, gnu/packages/patches/icecat-CVE-2015-4492.patch: New files. * gnu-system.am (dist_patch_DATA): Add them. * gnu/packages/gnuzilla.scm (icecat)[source]: Add patches.
* gnu: linux-libre: Update to 4.1.5.Mark H Weaver2015-08-12
| | | | * gnu/packages/linux.scm (linux-libre): Update to 4.1.5.
* gnu: sipwitch: Update to 1.9.9.Andreas Enge2015-08-12
| | | | * gnu/packages/telephony.scm (sipwitch): Update to 1.9.9.
* gnu: ucommon: Update to 6.5.1.Andreas Enge2015-08-12
| | | | * gnu/packages/telephony.scm (ucommon): Update to 6.5.1.
* gnu: openssh: Update to 7.0p1.Mark H Weaver2015-08-12
| | | | * gnu/packages/ssh.scm (openssh): Update to 7.0p1.
* gnu: ratpoison: Update to 1.4.8.Mathieu Lirzin2015-08-12
| | | | | * gnu/packages/ratpoison.scm (ratpoison): Update to 1.4.8. * gnu/packages/patches/ratpoison-shell.patch: Adapt to it.
* gnu: avidemux: Update to 2.6.10. Disable GTK+ build.Andreas Enge2015-08-12
| | | | | * gnu/packages/video.scm (avidemux): Update to 2.6.10. Disable the GTK+ build, which fails, and remove the gtk+ input.
* gnu: wicd: Fix bugs in curses interface program.Mark H Weaver2015-08-12
| | | | | | | * gnu/packages/patches/wicd-bitrate-none-fix.patch, gnu/packages/patches/wicd-get-selected-profile-fix.patch: New files. * gnu-system.am (dist_patch_DATA): Add them. * gnu/packages/wicd.scm (wicd)[source]: Add patches.
* gnu: gnupg: Update to 2.1.7.Andreas Enge2015-08-11
| | | | * gnu/packages/gnupg.scm (gnupg): Update to 2.1.7.
* gnu: calibre: Update to 2.34.0.Andreas Enge2015-08-11
| | | | * gnu/packages/ebook.scm (calibre): Update to 2.34.0.
* gnu: python-sip, python-pyqt: Fix computation of python library path.Andreas Enge2015-08-11
| | | | | | * gnu/packages/qt.scm (python-sip, python2-sip, python-pyqt, python2-pyqt, python-pyqt-4, python2-pyqt-4)[arguments]: Fix computation of python library path for multi-digit python versions.
* gnu: Add epiphany.宋文武2015-08-11
| | | | * gnu/packages/gnome.scm (epiphany): New variable.
* gnu: python-pyqt-4: Update to 4.11.4.Andreas Enge2015-08-10
| | | | * gnu/packages/qt.scm (python-pyqt-4, python2-pyqt-4): Update to 4.11.4.
* gnu: python-pyqt: Update to 5.5.Andreas Enge2015-08-10
| | | | * gnu/packages/qt.scm (python-pyqt, python2-pyqt): Update to 5.5.
* gnu: python-sip: Update to 4.16.9.Andreas Enge2015-08-10
| | | | * gnu/packages/qt.scm (python-sip, python2-sip): Update to 4.16.9.