Update 'NEWS'.
[jackhill/guix/guix.git] / NEWS
1 -*- org -*-
2 #+TITLE: Guix NEWS – history of user-visible changes
3 #+STARTUP: content hidestars
4
5 Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
6
7 Copying and distribution of this file, with or without modification,
8 are permitted in any medium without royalty provided the copyright
9 notice and this notice are preserved.
10
11 Please send Guix bug reports to bug-guix@gnu.org.
12
13 * Changes in 0.10.0 (since 0.9.0)
14
15 GNU Guix adopted a contributor code of conduct, see ‘CODE-OF-CONDUCT’ in the
16 source tree.
17
18 ** Package management
19
20 *** New command-line syntax for separating package names and version numbers
21
22 Use ‘@’ instead of ‘-’ as a separator, as in ‘gnupg@2.0’. This new separator
23 is a reserved character which is not allowed both in package names and version
24 numbers.
25
26 The old syntax to specify a package’s version—e.g., as “gnupg-2.0”—is obsolete
27 and support for it will be removed in the future.
28
29 *** “Grafts” apply recursively, based on run-time dependencies
30
31 “Grafts” is the mechanism by which we can apply security updates of core
32 packages without rebuilding or re-downloading the entire set of dependent
33 packages. See “Security Updates” in the manual, as well as
34 <https://savannah.gnu.org/forum/forum.php?forum_id=8470> and
35 <http://bugs.gnu.org/22139> for more info.
36
37 *** Substitutes are fetched over HTTPS by default
38 *** Substitutes are cached for the duration reported in ‘Cache-Control’ headers
39 *** Default substitute URL list includes a faster mirror, mirror.hydra.gnu.org
40 *** New ‘--with-input’ and ‘--with-source’ for ‘guix package’ and ‘guix build’
41
42 See “Package Transformation Options” in the manual.
43
44 *** ‘guix package --search-paths -p X -p Y’ combines search paths for X and Y
45 *** ‘guix package’ can be passed several ‘--search’ options
46 *** New ‘--rounds’ and ‘--check’ for ‘guix build’, for bit-reproducibility
47 *** New ‘--rounds’ option for ‘guix-daemon’
48 *** New ‘--quiet’ option for ‘guix build’
49 *** ‘guix package -u’ no longer checks for upstream GNU releases
50 *** ‘guix-daemon’ always uses /tmp in chroots, regardless of $TMPDIR
51 *** New Emacs interface to browse licenses: M-x guix-licenses
52 *** New Emacs interface to list system generations: M-x guix-system-generations
53 *** New Emacs interface for hydra.gnu.org: M-x guix-hydra-…
54 *** Changes in Emacs interface variables and faces
55
56 In the following names, BUFFER-TYPE means "info" or "list";
57 ENTRY-TYPE means "package", "output" or "generation".
58
59 **** Removed
60
61 - guix-info-fill-column
62 - guix-info-insert-ENTRY-TYPE-function
63
64 **** Renamed
65
66 - guix-info-ignore-empty-vals -> guix-info-ignore-empty-values
67 - guix-output-name-width -> guix-generation-output-name-width
68 - guix-buffer-name-function -> guix-ui-buffer-name-function
69 - guix-update-after-operation -> guix-ui-update-after-operation
70 - guix-search-params -> guix-package-search-params
71 - guix-BUFFER-TYPE-file-path (face) -> guix-BUFFER-TYPE-file-name
72
73 **** Replaced
74
75 - guix-list-column-format, guix-list-column-value-methods ->
76 guix-ENTRY-TYPE-list-format
77 - guix-info-displayed-params, guix-info-insert-methods,
78 guix-package-info-heading-params -> guix-ENTRY-TYPE-info-format
79 - guix-param-titles, guix-list-column-titles ->
80 guix-ENTRY-TYPE-BUFFER-TYPE-titles
81 - guix-list-describe-warning-count ->
82 guix-ENTRY-TYPE-list-describe-warning-count
83 - guix-package-info-fill-heading -> guix-info-fill
84
85 *** New ‘cve’ linter: ‘guix lint -c cve’ reports pending vulnerabilities
86 *** New ‘gnome’, ‘xorg’, and ‘github’ updaters for ‘guix refresh’
87 *** ‘guix lint’ times out after 3 seconds when probing URLs
88 *** ‘guix graph -t bag-with-origins’ includes origins in the graph
89 *** ‘guix import cran’ can import packages from bioconductor.org
90
91 ** Distribution
92
93 *** GuixSD upgraded to GNU Shepherd 0.3.1 and GNU Linux-libre 4.5.0
94 *** “System Installation” section of the manual has been expounded
95 *** Installation image runs GPM and includes more programs
96 *** GNOME and Xfce desktops are available via services; see "Desktop Services"
97 *** New ‘tor-hidden-service’ procedure, to declare Tor hidden services
98 *** New Dovecot service
99 *** New ‘fstab-service-type’, to populate /etc/fstab
100 *** New ‘mount?’ field for ‘file-system’ forms
101 *** Most global environment variables are now set in /etc/environment (pam_env)
102 *** ‘guix system reconfigure’ now loads/starts new services, stops old ones
103 (see <http://bugs.gnu.org/22039>)
104 *** ‘local-file’ resolves file names relative to the current source file
105 *** Many reproducibility issues fixed: glibc, perl, bison, emacs-*, python-*, …
106 *** Initial RAM disk supports ‘modprobe.blacklist’ on the kernel command line
107 *** New “Running GuixSD in a VM” section in the manual
108 *** ‘dmd’ changed to ’shepherd’ in ‘guix system’ sub-commands
109 *** A Bourne-like shell is spawned upon ‘fsck’ failure
110 (see <http://bugs.gnu.org/22588>)
111 *** XXX new packages
112 *** XXX package updates
113
114 ** Programming interfaces
115
116 *** Build systems always set the ‘SOURCE_DATE_EPOCH’ environment variable
117 *** New (guix graph) graph manipulation module, abstracted from ‘guix graph’
118 *** New (guix cve) module, to navigate the CVE database
119 *** ‘build-things’ procedure takes a new ‘mode’ parameter
120 *** Mass rename of ‘dmd’ to ‘shepherd’ in the (gnu …) modules
121 *** New ‘gnome-desktop-service’ and ‘xfce-desktop-service’ procedures
122 *** ‘pam-root-service-type’ can be extended with cross-cutting transformations
123 *** ‘package-with-python2’ honors the ‘python2-variant’ package property
124 (see <http://bugs.gnu.org/22437>)
125
126 ** Noteworthy bug fixes
127
128 *** Grafts are applied recursively (<http://bugs.gnu.org/22139>)
129 *** Commands correctly handle numbers in package names
130 (http://bugs.gnu.org/19219)
131 *** ‘guix-daemon’ deduplication code detects corrupt items
132 *** eudev now populates /dev/disk/by-{id,label}
133 *** Selected locale is automatically built (<http://bugs.gnu.org/22572>)
134 *** Substitutes can be downloaded over HTTPS (<http://bugs.gnu.org/22937>)
135 *** umask explicitly set in /etc/profile (<http://bugs.gnu.org/22650>)
136 *** ‘guix system init’ writes GC root on the target file system
137 (<http://bugs.gnu.org/22802>)
138 *** ‘guix system vm’ now works in the absence of KVM support
139 (<http://bugs.gnu.org/22633>)
140 *** GuixSD includes an Info reader by default (<http://bugs.gnu.org/22598>)
141 *** MacBook keyboards are now properly detected (<http://bugs.gnu.org/20433>)
142 *** GRUB searches root by label or UUID (<http://bugs.gnu.org/22281>)
143 *** ‘guix package --search-paths’ honors propagated inputs
144 (<http://bugs.gnu.org/22073>)
145 *** GCC uses ‘C_INCLUDE_PATH’ et al. instead of ‘CPATH’
146 (<http://bugs.gnu.org/22186>)
147 *** ‘ld-wrapper’ computes library search path based on all ‘-L’ flags
148 (<http://bugs.gnu.org/21941>)
149 *** ‘guix environment --container’ gracefully handles abnormal exists
150 (<http://bugs.gnu.org/21958>)
151
152 * Changes in 0.9.0 (since 0.8.3)
153
154 ** Package management
155
156 *** New ‘guix graph’ command, to draw package graphs
157 *** New ‘guix challenge’ command, to challenge the authenticity of binaries
158 *** ‘guix environment’ has a new ‘--container’ option
159 *** ‘guix substitute’ now honors all the specified substitute URLs
160 *** New ‘guix import cran’ command, to import R packages from CRAN
161 *** Package descriptions can now include Texinfo markup rendered on the fly
162 *** ‘guix package’ has a new ‘--install-from-file’ option
163 *** ‘guix package --search’ shows package outputs
164 *** ‘guix refresh’ can refresh selected non-GNU package definitions
165 *** The ‘--ad-hoc’ option of ‘guix environment’ is now positional
166 *** The ‘--exec’ option of ‘guix environment’ is deprecated; use ‘--’ instead
167 *** ‘guix build’ has a new ‘--file’ option
168 *** ‘guix build --log-file’ can now return URLs
169 *** ‘guix size’ now has a ‘--substitute-urls’ option and is much faster
170 *** New ‘guix lint’ checkers: ‘formatting’, ‘license’, ‘source-file-name’
171 *** Download progress report has been improved
172 *** Emacs shell-mode completions for ‘guix’ commands updated
173 *** Emacs: New ‘M-x guix’ popup interface
174 *** Emacs: modes for viewing build logs (‘guix-build-log-mode’)
175
176 ** Distribution
177
178 *** New extensible service composition API
179
180 The operating system service API in (gnu services) has been completely
181 rewritten, significantly improving extensibility and modularity, while
182 providing a framework that makes it easy to reason about service composition.
183 Consequently, several sources of redundancy and confusion in
184 ‘operating-system’ declarations have been eliminated. See “Service
185 Composition” in the manual.
186
187 *** New ‘extension-graph’ and ‘dmd-graph’ sub-commands for ‘guix system’
188 *** New ‘container’ sub-command for ‘guix system’
189 *** New ‘guix container’ command, to deal with GuixSD containers
190 *** New ‘list-generations’ sub-command for ‘guix system’
191 *** ‘operating-system’ has a new ‘locale-libcs’ field
192 *** New services: ‘nginx-service’, ‘udisks-service’, ‘guix-publish-service’
193 *** ‘%desktop-services’ now includes Polkit, GeoClue, elogind, UDisks, and more
194 *** ‘dbus-daemon’ now has proper support for lazy service activation
195 *** ‘wicd-service’ automatically adds Wicd to the system profile
196 *** ‘slim-service’ automatically adds xterm to the system profile
197 *** hydra.gnu.org now provides substitutes for ‘armhf-linux’
198 *** /run/systemd is mounted as tmpfs by default, for use by elogind
199 *** ‘glibc’ package no longer contains Bash in its bin/ directory
200 *** libc now looks for locale data in a versioned sub-directory
201 *** libc honors the new ‘GUIX_LOCPATH’ environment variable
202 *** Xfce now defaults to the GNOME icon theme
203 *** 543 new packages
204
205 abduco, accountsservice, american-fuzzy-lop, ansible, arandr, attic,
206 autobuild, bash-minimal, bash-static, bio-blastxmlparser, bio-locus,
207 bioperl-minimal, bioruby, bitcoin-core, bspwm, byobu, cabal-install, cityhash,
208 clang-runtime, clang-runtime, cm, cmus, conky, coreutils-minimal, cpphs,
209 cvs-fast-export, d-feet, deeptools, diffoscope, dosbox, dvtm, emacs-butler,
210 emacs-dash, emacs-debbugs, emacs-deferred, emacs-f, emacs-flycheck,
211 emacs-let-alist, emacs-ob-ipython, emacs-s, emacs-typo, enblend-enfuse,
212 epiphany, esmtp, ethtool, evilwm, exfat-utils, express-beta-diversity,
213 extra-cmake-modules, extundelete, fastcap, fasthenry, figlet, file-roller,
214 flann, font-anonymous-pro, font-gnu-unifont, font-inconsolata, font-tex-gyre,
215 font-ubuntu, frescobaldi, fuse-exfat, gajim, gamine, gerbv, gexiv2,
216 ghc-adjunctions, ghc-aeson, ghc-alex, ghc-annotated-wl-pprint,
217 ghc-ansi-terminal, ghc-ansi-wl-pprint, ghc-appar, ghc-async, ghc-attoparsec,
218 ghc-auto-update, ghc-base-compat, ghc-base-orphans, ghc-base64-bytestring,
219 ghc-bifunctors, ghc-blaze-builder, ghc-blaze-html, ghc-blaze-markup,
220 ghc-byteorder, ghc-bytestring-builder, ghc-cereal, ghc-cgi, ghc-charset,
221 ghc-cheapskate, ghc-clock, ghc-cmdargs, ghc-comonad, ghc-contravariant,
222 ghc-cookie, ghc-css-text, ghc-data-default, ghc-data-default-class,
223 ghc-data-default-instances-base, ghc-data-default-instances-containers,
224 ghc-data-default-instances-dlist, ghc-data-default-instances-old-locale,
225 ghc-digest, ghc-distributive, ghc-dlist, ghc-doctest, ghc-easy-file,
226 ghc-exceptions, ghc-extensible-exceptions, ghc-extra, ghc-fast-logger,
227 ghc-fingertree, ghc-free, ghc-generic-deriving, ghc-gluraw, ghc-glut,
228 ghc-haddock, ghc-haddock-api, ghc-haddock-library, ghc-half, ghc-happy,
229 ghc-haskell-src, ghc-haskell-src-exts, ghc-hspec, ghc-hspec-core,
230 ghc-hspec-expectations, ghc-hspec-meta, ghc-html, ghc-http-types, ghc-iproute,
231 ghc-kan-extensions, ghc-lens, ghc-lifted-base, ghc-logict, ghc-mmorph,
232 ghc-monad-control, ghc-multipart, ghc-nats, ghc-objectname, ghc-old-locale,
233 ghc-old-time, ghc-opengl, ghc-openglraw, ghc-optparse-applicative,
234 ghc-parsers, ghc-pcre-light, ghc-polyparse, ghc-prelude-extras,
235 ghc-profunctors, ghc-quickcheck-instances, ghc-quickcheck-io,
236 ghc-quickcheck-unicode, ghc-reducers, ghc-reflection, ghc-regex-base,
237 ghc-regex-compat, ghc-regex-posix, ghc-regex-tdfa-rc, ghc-resourcet, ghc-safe,
238 ghc-scientific, ghc-sdl, ghc-sdl-image, ghc-sdl-mixer, ghc-semigroupoids,
239 ghc-semigroups, ghc-setenv, ghc-silently, ghc-simple-reflect, ghc-smallcheck,
240 ghc-statevar, ghc-streaming-commons, ghc-stringbuilder, ghc-stringsearch,
241 ghc-tagged, ghc-tagsoup, ghc-tasty, ghc-tasty-ant-xml, ghc-tasty-golden,
242 ghc-tasty-hunit, ghc-tasty-quickcheck, ghc-tasty-smallcheck, ghc-temporary,
243 ghc-temporary-rc, ghc-transformers-base, ghc-transformers-compat,
244 ghc-trifecta, ghc-unbounded-delays, ghc-uniplate, ghc-unix-compat,
245 ghc-unix-time, ghc-utf8-string, ghc-vault, ghc-vector-binary-instances,
246 ghc-void, ghc-wai, ghc-wai-extra, ghc-wai-logger, ghc-word8, ghc-x11,
247 ghc-x11-xft, ghc-xhtml, ghc-xml, ghc-xmonad-contrib, ghc-xss-sanitize,
248 ghc-zip-archive, glibc-hurd, glibc-hurd-headers, gmtp, graphios, gtk-doc,
249 guile-next, guile-present, guile-redis, guile-rsvg, guile-wisp, gusb, gvfs,
250 gzochi, haunt, hlint, hscolour, hspec-discover, hurd-minimal, i3-wm, i3status,
251 ibus-libpinyin, idris, ifstatus, keepassx, klick, kwindowsystem, lablgtk,
252 libatasmart, libchamplain, libchop, libconfuse, libcue, libesmtp, libev,
253 libfm, libfm-extra, libgee, libgudev, liblxqt, libndp, libpano13, libpinyin,
254 libraw, libusb-compat, libyajl, lxqt-common, lxqt-session, lxrandr, lxtask,
255 lxterminal, lz4, mafft, manaplus, mars, menu-cache, minixml, mosaik,
256 nestopia-ue, newt, non-sequencer, ntk, openimageio, opusfile, patches, pbzip2,
257 pcmanfm, pcre2, pd, pelican, perl-czplib, perl-date-manip, perl-finance-quote,
258 perl-html-element-extended, perl-html-tableextract, perl-pod-simple, physfs,
259 pidgin, pidgin-otr, pigz, po4a, poppler-qt4, pwgen, python-appdirs,
260 python-bandit, python-blinker, python-ccm, python-chardet,
261 python-cryptography, python-cryptography-vectors, python-debian,
262 python-debtcollector, python-ecdsa, python-file, python-fonttools,
263 python-gnupg, python-hacking, python-httplib2, python-idna,
264 python-ipython-genutils, python-iso8601, python-joblib, python-libarchive-c,
265 python-llfuse, python-ly, python-minimal, python-minimal, python-mistune,
266 python-monotonic, python-mox3, python-msgpack, python-nbxmpp, python-netaddr,
267 python-numexpr, python-os-client-config, python-os-testr, python-oslo.config,
268 python-oslo.context, python-oslo.i18n, python-oslo.log,
269 python-oslo.serialization, python-oslo.utils, python-oslosphinx,
270 python-oslotest, python-paramiko, python-passlib, python-pathpy, python-patsy,
271 python-pbr, python-pbr, python-pexpect, python-pickleshare, python-pip,
272 python-poppler-qt4, python-pretend, python-prettytable, python-ptyprocess,
273 python-py-bcrypt, python-pyasn1, python-pyopenssl, python-pytest-runner,
274 python-requests-mock, python-setuptools-scm, python-simplegeneric,
275 python-statsmodels, python-stevedore, python-tempest-lib, python-terminado,
276 python-tlsh, python-traitlets, python-webob, python-wrapt, python-xlrd,
277 python2-appdirs, python2-bandit, python2-blinker, python2-ccm,
278 python2-chardet, python2-cryptography, python2-cryptography-vectors,
279 python2-debian, python2-debtcollector, python2-ecdsa, python2-file,
280 python2-fonttools, python2-gnupg, python2-hacking, python2-httplib2,
281 python2-idna, python2-ipaddress, python2-ipython-genutils, python2-iso8601,
282 python2-joblib, python2-keyring, python2-libarchive-c, python2-llfuse,
283 python2-mistune, python2-monotonic, python2-mox3, python2-msgpack,
284 python2-nbxmpp, python2-netaddr, python2-notmuch, python2-numexpr,
285 python2-os-client-config, python2-os-testr, python2-oslo.config,
286 python2-oslo.context, python2-oslo.i18n, python2-oslo.log,
287 python2-oslo.serialization, python2-oslo.utils, python2-oslosphinx,
288 python2-oslotest, python2-paramiko, python2-passlib, python2-pathpy,
289 python2-patsy, python2-pbr, python2-pbr, python2-pexpect, python2-pickleshare,
290 python2-pip, python2-pretend, python2-prettytable, python2-ptyprocess,
291 python2-py-bcrypt, python2-pyasn1, python2-pycrypto, python2-pyopenssl,
292 python2-pytest-runner, python2-requests-mock, python2-setuptools-scm,
293 python2-simplegeneric, python2-statsmodels, python2-stevedore,
294 python2-tempest-lib, python2-terminado, python2-tlsh, python2-traitlets,
295 python2-webob, python2-wrapt, python2-xlrd, r-assertthat, r-bh, r-chron,
296 r-codetools, r-colorspace, r-crayon, r-data.table, r-dbi, r-dichromat,
297 r-digest, r-dplyr, r-evaluate, r-formatr, r-ggplot2, r-gtable, r-highr,
298 r-htmltools, r-htmlwidgets, r-httpuv, r-jsonlite, r-knitr, r-labeling,
299 r-lazyeval, r-magrittr, r-markdown, r-memoise, r-microbenchmark, r-mime,
300 r-munsell, r-plyr, r-proto, r-pryr, r-qtl, r-r6, r-rcolorbrewer, r-rcpp,
301 r-reshape2, r-scales, r-servr, r-stringi, r-stringr, r-testthat, r-yaml, rage,
302 raincat, redis, rest, rfkill, rpm, ruby-activesupport, ruby-atoulme-antwrap,
303 ruby-bio-logger, ruby-builder, ruby-byebug, ruby-coderay, ruby-cucumber-core,
304 ruby-diff-lcs, ruby-docile, ruby-ffi, ruby-formatador, ruby-gherkin3,
305 ruby-json, ruby-libxml, ruby-listen, ruby-log4r, ruby-lumberjack,
306 ruby-method-source, ruby-mini-portile, ruby-minitar, ruby-nenv, ruby-nokogiri,
307 ruby-notiffany, ruby-orderedhash, ruby-ox, ruby-permutation, ruby-pg,
308 ruby-pry, ruby-rack, ruby-rb-inotify, ruby-rjb, ruby-rubygems-tasks,
309 ruby-shellany, ruby-shindo, ruby-simplecov-html, ruby-thor, ruby-thread-safe,
310 ruby-tzinfo, ruby-xml-simple, ruby-yard, sassc, scmutils, seqmagick, shotwell,
311 shroud, simple-scan, squashfs-tools, sxhkd, tinc, udisks, unison, vsearch,
312 webkitgtk-gtk2, wesnoth, wpa-supplicant-minimal, xcb-util-cursor, xcompmgr,
313 xfce4-pulseaudio-plugin, xjackfreak, xlsfonts, xmonad, yapet, yelp,
314 yelp-tools, yelp-xsl, znc, zynaddsubfx
315
316 *** 268 package updates
317
318 abcde-2.7, arb-2.7.0, ardour-4.2, at-spi2-atk-2.18.1, at-spi2-core-2.18.1,
319 ath9k-htc-firmware-1.4.0, atk-2.18.0, atkmm-2.24.1, autogen-5.18.6,
320 avidemux-2.6.10, bedtools-2.24.0, binutils-2.25.1,
321 binutils-static-stripped-tarball-2.25.1, bison-3.0.4, bluez-5.35,
322 bundler-1.10.6, c-reduce-2.3.0, cairomm-1.12.0, calcurse-4.0.0,
323 calibre-2.41.0, camlp5-6.14, cgal-4.6.3, chess-6.2.2, clang-3.6.2,
324 claws-mail-3.13.0, cmake-3.3.2, complexity-1.3, conkeror-1.0pre1.20150730,
325 cpio-2.12, crossmap-0.2.1, csound-6.05, cups-2.1.0, cups-filters-1.0.75,
326 cups-minimal-2.1.0, curl-7.45.0, dbus-1.10.0, dbus-1.10.0.a, ddrescue-1.20,
327 dmd-0.2.01, docbook-xml-4.4, docbook-xml-4.5, dosfstools-3.0.28,
328 e2fsck-static-1.42.13, e2fsprogs-1.42.13, efl-1.15.2, eigen-3.2.6,
329 elementary-1.15.2, emotion-generic-players-1.15.0, enlightenment-0.19.12,
330 eudev-3.1.5, evas-generic-loaders-1.15.0, feh-2.14, ffmpeg-2.8, fish-2.2.0,
331 flint-2.5.2, fontconfig-2.11.94, freeglut-3.0.0, freeimage-3.17.0,
332 freeipmi-1.4.11, gcc-4.9.3, gcc-4.9.3, gcc-4.9.3, gcc-5.2.0,
333 gcc-toolchain-5.2.0, gcj-4.9.3, gdb-7.10, gdk-pixbuf-2.32.1, geiser-0.8.1,
334 gettext-0.19.6, ghc-7.10.2, ghc-hashable-1.2.3.3, ghc-http-4000.2.20,
335 ghc-mtl-2.2.1, ghc-network-2.6.2.1, ghc-network-uri-2.6.0.3,
336 ghc-primitive-0.6.1.0, ghc-quickcheck-2.8.1, ghc-syb-0.6, ghc-text-1.2.1.3,
337 ghc-vector-0.11.0.0, giflib-5.1.1, git-2.5.0, git-manpages-2.5.0,
338 git-modes-1.2.0, glib-2.46.1, glib-networking-2.46.1, glibc-2.22,
339 glibc-locales-2.22, glibc-stripped-tarball-2.22, glibc-utf8-locales-2.22,
340 glibmm-2.46.1, global-6.5.1, glpk-4.56, gnome-desktop-3.16.2,
341 gnome-themes-standard-3.16.2, gnu-pw-mgr-1.6, gnumach-headers-1.6,
342 gnupg-2.1.9, gnurl-7.45.0, gnutls-3.4.5, gobject-introspection-1.46.0,
343 gp2c-0.0.9pl3, graphite2-1.3.3, graphviz-2.38.0,
344 gsettings-desktop-schemas-3.18.0, gsl-2.0, gst-libav-1.6.1,
345 gst-plugins-base-1.6.1, gst-plugins-good-1.6.1, gst-plugins-ugly-1.6.1,
346 gstreamer-1.6.1, gtk+-3.18.2, gtkmm-3.18.0, guile-ssh-0.8.0, guitarix-0.33.0,
347 guix-0.8.3, guix-0.8.3.b485f75, harfbuzz-1.0.5, help2man-1.47.2,
348 hurd-headers-0.7, ibus-1.5.11, icecat-38.3.0-gnu1, icedtea6-1.13.8,
349 icedtea7-2.6.2, imagemagick-6.9.2-1, intltool-0.51.0, json-glib-1.0.4,
350 leptonica-1.72, less-481, libbluray-0.9.0, libcap-2.24, libdrm-2.4.65,
351 libdvdcss-1.3.99, libedit-20150325-3.1, libgcrypt-1.6.3, libgsf-1.14.34,
352 libidn-1.32, libinput-0.21.0, libmicrohttpd-0.9.45, libmtp-1.1.9,
353 libotr-4.1.0, libpcap-1.7.4, libpciaccess-0.13.4, libqtxdg-1.2.0,
354 librsvg-2.40.11, libsigc++-2.6.1, libsoup-2.52.1, libssh-0.6.5, libtiff-4.0.5,
355 libtorrent-0.13.6, libva-1.6.1, lilypond-2.19.27, links-2.12,
356 linux-libre-4.2.5, linux-pam-1.2.1, lirc-0.9.3, llvm-3.6.2, lua-5.2.3,
357 lzo-2.09, magit-2.3.0, mesa-11.0.3, mesa-headers-11.0.3, mig-1.6,
358 minetest-0.4.13, mosh-1.2.5, mpg123-1.22.4, mplayer-1.2, mpv-0.11.0,
359 mu-0.9.13, mutt-1.5.24, ncdu-1.11, ncmpcpp-0.6.7, ncurses-6.0, node-0.12.7,
360 notmuch-0.20.2, ntp-4.2.8p4, ocaml-4.02.3, offlineimap-6.5.7, openblas-0.2.15,
361 openjpeg-2.1.0, openldap-2.4.42, openssh-7.0p1, orc-0.4.24, pango-1.38.1,
362 pangomm-2.38.1, parallel-20151022, pavucontrol-3.0,
363 pbtranscript-tofu-2.2.3.8f5467fe6, pciutils-3.3.1, perf-4.2.5,
364 perl-xml-parser-2.44, pixman-0.32.8, poppler-0.37.0, powertop-2.7,
365 python-cffi-1.2.1, python-dateutil-2.2, python-fixtures-1.3.1,
366 python-ipython-3.2.1, python-pyflakes-0.9.2, python-pygobject-3.18.0,
367 python-pyqt-4.11.4, python-pyqt-5.5, python-requests-2.8.0,
368 python-scipy-0.16.0, python-setuptools-18.3.1, python-sip-4.16.9,
369 python-six-1.9.0, python2-cffi-1.2.1, python2-dateutil-2.2,
370 python2-fixtures-1.3.1, python2-ipython-3.2.1, python2-pygobject-3.18.0,
371 python2-pyqt-4.11.4, python2-pyqt-5.5, python2-requests-2.8.0,
372 python2-scipy-0.16.0, python2-setuptools-18.3.1, python2-sip-4.16.9,
373 python2-six-1.9.0, qemu-2.4.0.1, qemu-headless-2.4.0.1, qpdf-5.1.3,
374 qsynth-0.4.0, qt-5.5.1, r-3.2.2, racket-6.2.1, ratpoison-1.4.8, readline-6.3,
375 retroarch-1.2.2, ripperx-2.8.0, rtorrent-0.9.6, ruby-2.2.3, ruby-arel-6.0.3,
376 ruby-bacon-1.2.0, ruby-i18n-0.7.0, samtools-1.2, sfarklib-2.24, sfml-2.3.2,
377 shadow-4.2.1, sipwitch-1.9.14, sqlite-3.8.11.1, subversion-1.8.14,
378 synergy-1.7.4, tcl-8.6.4, tcpdump-4.7.4, teckit-2.5.4, terminology-0.9.1,
379 texlive-2015, texlive-bin-2015, texlive-texmf-2015, tiled-0.13.1, tk-8.6.4,
380 tmux-2.0, tor-0.2.6.10, ucommon-6.6.2, units-2.12, util-linux-2.27,
381 vala-0.30.0, valgrind-3.11.0, vlc-2.2.1, webkitgtk-2.8.5, weechat-1.3,
382 wine-1.7.52, wpa-supplicant-2.5, xapian-1.2.21, xterm-320,
383 youtube-dl-2015.11.01, zsh-5.1.1
384
385 ** Programming interfaces
386
387 *** Rewritten (gnu services) module; (gnu services …) modules adjusted
388 *** New Emacs development tools, see “Development” in the manual
389 *** (guix gexp) provides the declarative ‘computed-file’, ‘program-file’, etc.
390 *** New (guix upstream) module, for generalized upstream release tracking
391
392 ** Noteworthy bug fixes
393
394 *** Passwords in /etc/shadow are SHA512-hashed (http://bugs.gnu.org/21318)
395 *** daemon: Require a signature for imports made by root
396 (http://bugs.gnu.org/21354)
397 *** emacs: Fix guix-guile-program default value (http://bugs.gnu.org/21127)
398 *** Compressed initrds no longer include timestamps
399 *** Partly fix handling of encrypted root partitions
400 (http://bugs.gnu.org/19190)
401 *** Python now includes tkinter (http://bugs.gnu.org/20889)
402 *** Memoize the results of ‘package-with-python2’ (http://bugs.gnu.org/21675)
403 *** Use the daemon's substitute URLs by default (http://bugs.gnu.org/20217)
404 *** ‘guix system --no-grub’ works correctly for ‘init’ and ‘reconfigure’
405 (http://bugs.gnu.org/21068)
406
407 ** Native language support
408
409 *** Updated translations: da
410
411 * Changes in 0.8.3 (since 0.8.2)
412
413 ** Package management
414
415 *** New ‘guix edit’ and ‘guix size’ commands
416 *** New ‘--manifest’ option for ‘guix package’, for declarative profiles
417 *** Similarly, new ‘M-x guix-apply-manifest’ for the Emacs UI
418 *** Emacs support now includes completion for ‘guix’ commands in shell-mode
419 *** ‘guix package --search-paths’ now takes an optional argument
420 *** ‘guix environment --ad-hoc’ creates a custom development environment
421 *** New ‘--system’ option for ‘guix environment’
422 *** ‘guix environment’ defines $GUIX_ENVIRONMENT, useful to adjust ‘PS1’
423 *** New ‘--optimize’ and ‘--verify’ options to ‘guix gc’
424 *** ‘guix build --with-source’ can now be passed a directory
425 *** New ‘elpa’ importer for ‘guix import’
426 *** ‘guix import pypi’ determines the list of dependencies
427 *** New ‘--substitute-urls’ option for ‘guix build’ and other commands
428 *** ‘guix substitute’ can now alternate between different substitute URLs
429 *** New “Running Guix Before It Is Installed” section in the manual
430 *** Basic manual pages for the ‘guix’ commands are now shipped
431 *** Building the daemon now necessitates a C++11 compiler
432
433 ** Distribution
434
435 *** New ‘%base-user-accounts’ variable, for common system accounts
436 *** New ‘--on-error’ option for ‘guix system’
437 *** New ‘plain-file’ construct, for use in ‘operating-system’ declarations
438 *** ‘sudoers’ field of ‘operating-system’ renamed to ‘sudoers-file’
439 *** ‘sudoers-file’ and ‘hosts-file’ fields now take file-like objects
440 *** File systems under /sys/fs/cgroup are now mounted by default
441 *** Default compiler is now GCC 4.9.3 (was 4.8.4)
442 *** ARMv7 port now requires NEON
443 *** The disk footprint of a dozen key packages has been reduced
444
445 *** 179 new packages
446
447 adwaita-icon-theme, amule, aragorn, arpack-ng-openmpi, blast+, bundler,
448 camlp4, camlp5, clutter, clutter-gst, clutter-gtk, cogl, coq, couger, crda,
449 dealii, dealii-openmpi, devhelp, diamond, dunst, edirect, emacs-auctex,
450 emacs-mmm-mode, emacs-pdf-tools, eog, execline, exempi, fasttree, faust,
451 fizmo, gcr, git-modes, gnome-common, gnome-keyring, gnome-klotski,
452 gnu-c-manual, gnujump, gom, grilo, grilo-plugins, gst-plugins-ugly,
453 guile-emacs, guile-for-guile-emacs, guile-gdbm-ffi, guitarix, haskell-mode,
454 hevea, hmmer, hoedown, htslib, hydra, hydrogen, idr, libcmis, libiberty,
455 libmng, libmpeg2, libreoffice, libressl, librest, libstdc++, libstdc++-doc,
456 libstdc++-doc, libsvm, libtar, libx264, libxdg-basedir, lpsolve, lxappearance,
457 magit-svn, metabat, metis, mumps, mumps-metis, mumps-metis-openmpi,
458 mumps-openmpi, orfm, p4est, p4est-openmpi, perl-authen-sasl,
459 perl-catalyst-authentication-store-dbix-class,
460 perl-catalyst-plugin-authorization-roles, perl-data-stag, perl-gssapi,
461 perl-io-string, perl-net-smtp-ssl, perl-set-object, plink, powertabeditor,
462 preseq, prodigal, proof-general, pugixml, pv, python-click,
463 python-feedgenerator, python-flake8, python-gridmap, python-libsvm,
464 python-libxml2, python-mccabe, python-pandas, python-pep8, python-pep8,
465 python-psutil, python-pyflakes, python-pyflakes, python-pyzmq, python-redis,
466 python-rpy2, python-rq, python-scikit-image, python-seaborn, python2-click,
467 python2-fastlmm, python2-feedgenerator, python2-flake8, python2-gridmap,
468 python2-libxml2, python2-mccabe, python2-pandas, python2-pep8, python2-pep8,
469 python2-psutil, python2-pyflakes, python2-pysnptools, python2-pyzmq,
470 python2-redis, python2-rpy2, python2-rq, python2-scikit-image,
471 python2-seaborn, python2-warpedlmm, qsynth, randomjungle, rapidjson, raul, rc,
472 rhythmbox, rsem, rtmidi, ruby-arel, ruby-bacon, ruby-connection-pool,
473 ruby-daemons, ruby-git, ruby-minitest, ruby-minitest-bacon,
474 ruby-minitest-sprint, ruby-multipart-post, ruby-net-http-persistent,
475 ruby-rake-compiler, ruby-rspec, ruby-rspec-core, ruby-rspec-expectations,
476 ruby-rspec-mocks, ruby-slop, ruby-useragent, scalapack, seahorse, setbfree,
477 sfarklib, sfarkxtc, sfxr, skalibs, slepc, slepc-complex,
478 slepc-complex-openmpi, slepc-openmpi, sox, st, totem, wayland, wireless-regdb,
479 withershins, wxmaxima, xfce4-clipman-plugin, xmlsec, zita-resampler
480
481 *** 181 package updates
482
483 ardour-4.1-5aa834e, bash-4.3.39, bash-light-4.3.39, bedops-2.4.14,
484 bind-utils-9.10.2-P2, bison-3.0.4, bitlbee-3.4, boost-1.58.0, brasero-3.12.1,
485 calibre-2.29.0, catch-1.1.3, ccache-3.2.2, chibi-scheme-0.7.3, clang-3.6.0,
486 coreutils-8.24, cups-2.0.3, cups-filters-1.0.71, cups-minimal-2.0.3,
487 curl-7.43.0, datamash-1.0.7, dfu-programmer-0.7.2, duplicity-0.6.26, ed-1.12,
488 efl-1.14.2, eigen-3.2.5, elementary-1.14.2, emotion-generic-players-1.14.0,
489 enlightenment-0.19.5, evas-generic-loaders-1.14.0, evince-3.16.1, feh-2.13,
490 ffmpeg-2.7.1, freeipmi-1.4.9, freetype-2.6, gawk-4.1.3, gcal-4, gcc-5.2.0,
491 gcc-cross-arm-linux-gnueabihf-4.9.3, gcc-cross-mips64el-linux-gnuabi64-4.9.3,
492 gcc-cross-sans-libc-avr-4.9.3, gcc-cross-sans-libc-xtensa-elf-4.9.3,
493 gcc-objc++-4.8.5, gcc-objc-4.8.5, gcc-stripped-tarball-4.9.3,
494 gcc-toolchain-4.9.3, gcc-toolchain-4.9.3, gcc-toolchain-5.2.0, gccgo-4.8.5,
495 gcj-4.8.5, gdb-7.9.1, geoclue-2.2.0, gettext-0.19.5, gfortran-4.8.5,
496 gfortran-4.9.3, gfortran-4.9.3, girara-0.2.4, git-2.4.3, git-manpages-2.4.3,
497 global-6.5, gnu-pw-mgr-1.4, gnupg-2.1.6, gnutls-3.4.1, goffice-0.10.14,
498 gpgme-1.5.5, gtk+-3.16.3, gtkmm-3.16.0, guile-2.0.11, guile-2.0.11,
499 guile-reader-0.6.1, guile-sdl-0.5.2, guix-0.8.2, guix-0.8.2.72cd8ec,
500 gxmessage-3.4.3, harfbuzz-0.9.40, help2man-1.47.1, httpd-2.4.16, hwloc-1.10.1,
501 icecat-31.8.0-gnu1, imagemagick-6.9.1-3, inetutils-1.9.4, julia-0.3.10,
502 libassuan-2.2.1, libdvdnav-5.0.3, libdvdread-5.0.3, libetonyek-0.1.3,
503 libgpg-error-1.19, libidn-1.31, libksba-1.3.3, libmicrohttpd-0.9.42,
504 libmpdclient-2.10, libmwaw-0.3.5, libpipeline-1.4.0, libpsl-0.7.1,
505 librsvg-2.40.9, libunistring-0.9.6, libusb-1.0.19, libvpx-1.4.0, libwps-0.4.0,
506 libxml2-2.9.2, linux-libre-4.0.8, linux-libre-4.1.2, livestreamer-1.12.2,
507 lv2-1.12.0, magit-1.4.1, man-db-2.7.1, mariadb-10.0.20, maxima-5.36.1,
508 mdds-0.12.1, mpd-0.19.10, mpd-mpc-0.27, mpfr-3.1.3, mysql-5.6.25, nano-2.4.2,
509 ncmpc-0.24, ncmpcpp-0.6.5, nettle-3.1.1, ngs-java-1.1.1, ngs-sdk-1.1.1,
510 npth-1.2, nss-3.19.2, nss-certs-3.19.2, ntp-4.2.8p3, ocaml-4.02.1,
511 openblas-0.2.14, openjpeg-2.0.1, openjpeg-2.1.0, openmpi-1.8.5, openssh-6.9p1,
512 openssl-1.0.2d, parallel-20150622, pari-gp-2.7.4, pcre-8.37, perf-4.1.2,
513 petsc-3.6.0, petsc-complex-3.6.0, petsc-complex-openmpi-3.6.0,
514 petsc-openmpi-3.6.0, pinentry-0.9.5, pius-2.1.1, polkit-0.113,
515 postgresql-9.3.8, pspp-0.8.5, pt-scotch-6.0.4, pumpa-0.9.1, python-3.4.3,
516 python-dateutil-2.2, python-pillow-2.8.1, python-scikit-learn-0.16.1,
517 python2-dateutil-2.2, python2-pillow-2.8.1, python2-pygobject-3.16.1,
518 python2-pyqt-5.4, python2-scikit-learn-0.16.1, qemu-2.3.0,
519 qemu-headless-2.3.0, qt-5.4.2, r-3.2.1, readline-6.3, ruby-2.1.6, ruby-2.2.2,
520 samtools-1.2, scotch-6.0.4, screen-4.3.1, sharutils-4.15.2, sipwitch-1.9.8,
521 sqlite-3.8.10.2, star-2.4.2a, swig-3.0.5, synergy-1.7.3, sysfsutils-2.1.0,
522 talloc-2.1.2, texinfo-6.0, tor-0.2.6.8, ucommon-6.3.4, unrtf-0.21.9, vamp-2.6,
523 webkitgtk-2.8.3, which-2.21, xorriso-1.4.0, youtube-dl-2015.06.25,
524 zathura-0.3.3
525
526 ** Programming interfaces
527
528 *** New “package Reference” and “origin Reference” sections in the manual
529 *** New ‘emacs-build-system’, which mimics what package.el does
530 *** New (guix cpio) module, used to produce Linux initrds deterministically
531 *** New ‘clone’, ‘setns’, and ‘pivot_root’ bindings in (guix build syscalls)
532 *** New ‘dependencies’ field in <file-system>
533 *** New #:gem-flags parameter for ‘ruby-build-system’
534
535 *** monads: ‘foldm’, ‘mapm’, and ‘anym’ now take a list of regular values
536 *** monads: Allow n-ary ‘>>=’ expressions
537 ** Noteworthy bug fixes
538
539 *** Binary installation tarball now has files root-owned, with zeroed mtime
540 (<http://bugs.gnu.org/21101>)
541 *** GRUB background image is always available (<http://bugs.gnu.org/20591>)
542 *** ‘guix system’ catches references to non-existent user groups
543 (<http://bugs.gnu.org/20646>)
544 *** Ignore trailing components for ‘guix gc -d’ (<http://bugs.gnu.org/19757>)
545 *** ‘guix lint’ warns only when all the URIs are unreachable
546 *** ‘guix system init’ overwrites the items in the target store
547 (<http://bugs.gnu.org/20722>)
548 *** ‘guix-register’ performs deduplication even when --prefix is passed
549 (<http://bugs.gnu.org/19044>)
550 *** The ‘location’ of packages is no longer preserved by ‘inherit’
551 *** GuixSD installation image has udev rules for device-mapper
552 (<http://bugs.gnu.org/20791>)
553 *** Daemon distinguishes between “substitutable” and “offloadable” derivations
554 (<http://bugs.gnu.org/18747>)
555 *** Avoid infinite loop in ‘guix substitute’
556 *** ‘guix environment’ now returns the exit code of its command
557 *** ‘file-system’ declarations can now really use UUIDs
558 (<http://bugs.gnu.org/19778>)
559 *** Daemon preserves build user groups (<http://bugs.gnu.org/18994>)
560 *** Fix quadratic behavior when building packages with many propagated inputs
561 *** Tarballs for origins with patches/snippet are now build deterministically
562 *** Scalability issues in ‘guix publish’ have been fixed
563
564 ** Native language support
565
566 *** Updated translations: da, eo
567
568 * Changes in 0.8.2 (since 0.8.1)
569
570 ** Package management
571
572 *** New “binary tarball” installation method is available
573
574 See “Binary Installation” in the manual.
575
576 *** New ‘guix publish’ command, to publish one’s store
577
578 See “Invoking guix publish” in the manual.
579
580 *** ‘guix package’ runs “profile creation hooks” as needed
581
582 It creates X.509 certificate bundles in the profile’s etc/ssl directory, if
583 needed, generates a package database cache for GHC if the profile includes GHC
584 (the Haskell compiler), and generates an Info ‘dir’ file (this part was
585 already done before.)
586
587 *** ‘guix package’ creates an ‘etc/profile’ file in the profile
588
589 See “Invoking guix package” in the manual.
590
591 *** Commands understand version prefixes, such as ‘gcc-5’ for ‘gcc-5.1.0’
592
593 *** ‘guix package --search’ now sorts packages by name and version
594
595 *** Substitute information is now fetched using HTTP pipelining
596
597 Before that the “substituter” used threads. Using HTTP pipelining means that
598 resource consumption is reduced on both the client and server sides. As a
599 side effect, a progress report is displayed as substitute info is downloaded.
600
601 *** ‘guix package’ warns when a $GUIX_PACKAGE_PATH module cannot be loaded
602
603 *** New ‘--sources’ option to ‘guix build’
604
605 *** New Bash completion file, installed in $sysconfdir/bash_completion.d
606
607 *** New ‘guix import hackage’ command
608
609 See “Invoking guix import” in the manual.
610
611 *** ‘guix lint’ supports FTP for the ‘source’ and ‘home-page’ checkers
612
613 *** ‘guix lint’ has a new ‘derivation’ checker
614
615 *** ‘guix import cpan’ better handles dependencies and licenses
616
617 *** Packages are now build in an environment with a UTF-8 locale
618
619 ** Distribution
620
621 *** C library's name service switch (NSS) is now fully configurable
622
623 See “Name Service Switch” in the manual.
624
625 *** New services: wicd, lirc, colord, upower, console-keymap, postgresql
626
627 *** Xorg service supports new drivers, such as Nouveau
628
629 *** lsh service has new options, initializes its seed by default
630
631 *** /etc/ssl symlink is created, for X.509 certificates
632
633 See “X.509 Certificates” in the manual.
634
635 *** ‘guix system’ reports duplicate service identifiers
636
637 *** New /etc/bashrc file that loads Bash completion when available
638
639 *** SLiM service uses sessions from /run/current-system/profile/share/xsessions
640
641 See “X Window” in the manual.
642
643 *** The Linux “YAMA” restricting policy on PTRACE_ATTACH is now disabled
644
645 *** /etc/shells now lists all the user accounts’ shells
646
647 *** /gnu/store is now remounted read-only, to avoid accidental modification
648
649 *** /etc/profile is sources each profile’s ‘etc/profile’ file
650
651 *** 718 new packages
652
653 aalib, aarddict, acpid, agg, aisleriot, alsa-modular-synth, ant, ardour,
654 ardour, argtable, arpack-ng, aspell-dict-ru, aubio, audacity, avidemux,
655 avidemux, azr3, bamtools, bash-completion, bedops, bind-utils, bluez, bool,
656 brdf-explorer, bwa, calf, calibre, catch, ccl, chibi-scheme, chmlib,
657 clalsadrv, clipper, clisp, clustal-omega, colord, colordiff, cpufrequtils,
658 crossmap, csound, ctl, cunit, cutadapt, desktop-file-utils, djvulibre,
659 dnsmasq, dosfstools, double-conversion, dovecot, ecl, efl, elementary,
660 elogind, emacs-no-x, emotion-generic-players, enca, enlightenment,
661 evas-generic-loaders, exim, express, extremetuxracer, faad2, fastx-toolkit,
662 fcitx, fdupes, flexbar, fluidsynth, font-adobe-source-han-sans,
663 font-wqy-zenhei, freepats, gambit-c, ganv, geda-gaf, geoclue, geocode-glib,
664 ghc, ghc-case-insensitive, ghc-containers, ghc-fgl, ghc-hashable, ghc-http,
665 ghc-hunit, ghc-mtl, ghc-network, ghc-network-uri, ghc-parallel, ghc-parsec,
666 ghc-paths, ghc-primitive, ghc-quickcheck, ghc-random, ghc-split, ghc-stm,
667 ghc-syb, ghc-text, ghc-tf-random, ghc-unordered-containers, ghc-vector,
668 ghc-zlib, girara, gitolite, glib-networking, glibc-locales,
669 glibc-utf8-locales, glibc-utf8-locales, glm, gnome-mines,
670 gnome-settings-daemon, gnome-terminal, gnucash, gnugo, grit, gst-libav,
671 guile-minikanren, guile-reader, hdparm, hisat, htseq, htsjdk, hunspell,
672 hyphen, i2c-tools, ibus, icecast, icedtea6, icedtea7, ilmbase, ir, isync,
673 ixion, jack2, jalv, jansson, jemalloc, julia, key-mon, ladspa, lash,
674 leptonica, liba52, libabw, libaio, libass, libavc1394, libbluray, libbs2b,
675 libcaca, libcap-ng, libcdio-paranoia, libcdr, libdca, libdv, libdvdcss,
676 libe-book, libedit, libepoxy, libetonyek, libexttextcat, libffcall,
677 libfreehand, libgnomecanvasmm, libgtextutils, libgweather, libical,
678 libiec61883, libinput, liblo, libmodplug, libmspack, libmspub, libmtp,
679 libmwaw, libodfgen, libpagemaker, libqtxdg, libquvi, libquvi-scripts,
680 libraw1394, librecad, librep, librevenge, libsbsms, libsecret, libshout,
681 libsoup, libsrtp, libtocc, libungif, libva, libvisio, libwacom, libwebp,
682 libwpd, libwpg, libwps, libxklavier, libxmp, libyaml, lilv, lilypond, lirc,
683 livestreamer, ltrace, lv2, lv2-mda-epiano, lv2-mda-piano, lvtk, macs, mariadb,
684 markdown, mdadm, mdds, mesa-headers, mesa-utils, miredo, miso, moreutils,
685 mpd-mpc, mpdscribble, mplayer2, mpv, muparser, mythes, ncbi-vdb, ngircd,
686 ngs-java, ngs-sdk, npth, nss-certs, openblas, openexr, openlibm, openntpd,
687 openspecfun, openvpn, orc, orcus, p11-kit, patchage, pbtranscript-tofu, pcb,
688 perl-algorithm-c3, perl-algorithm-diff, perl-aliased,
689 perl-apache-logformat-compiler, perl-appconfig, perl-b-hooks-endofscope,
690 perl-base, perl-bit-vector, perl-boolean, perl-cache-cache,
691 perl-cache-fastmmap, perl-capture-tiny, perl-carp-assert,
692 perl-carp-assert-more, perl-carp-clan, perl-catalyst-action-renderview,
693 perl-catalyst-action-rest, perl-catalyst-component-instancepercontext,
694 perl-catalyst-devel, perl-catalyst-dispatchtype-regex,
695 perl-catalyst-model-dbic-schema, perl-catalyst-plugin-accesslog,
696 perl-catalyst-plugin-authentication, perl-catalyst-plugin-captcha,
697 perl-catalyst-plugin-configloader, perl-catalyst-plugin-session,
698 perl-catalyst-plugin-session-state-cookie,
699 perl-catalyst-plugin-session-store-fastmmap, perl-catalyst-plugin-stacktrace,
700 perl-catalyst-plugin-static-simple, perl-catalyst-runtime,
701 perl-catalyst-traitfor-request-proxybase, perl-catalyst-view-download,
702 perl-catalyst-view-json, perl-catalyst-view-tt,
703 perl-catalystx-component-traits, perl-catalystx-roleapplicator,
704 perl-catalystx-script-server-starman, perl-cgi-simple, perl-cgi-struct,
705 perl-class-accessor, perl-class-accessor-chained, perl-class-accessor-grouped,
706 perl-class-c3, perl-class-c3-adopt-next, perl-class-c3-componentised,
707 perl-class-data-inheritable, perl-class-date, perl-class-factory-util,
708 perl-class-inspector, perl-class-load, perl-class-load-xs,
709 perl-class-method-modifiers, perl-class-methodmaker, perl-class-singleton,
710 perl-class-tiny, perl-class-unload, perl-class-xsaccessor, perl-common-sense,
711 perl-compress-raw-bzip2, perl-compress-raw-zlib, perl-config-any,
712 perl-config-autoconf, perl-config-general, perl-context-preserve,
713 perl-cpan-meta, perl-cpan-meta-check, perl-cpan-meta-requirements,
714 perl-cpan-meta-yaml, perl-cpanel-json-xs, perl-crypt-randpasswd,
715 perl-data-dump, perl-data-dumper-concise, perl-data-optlist, perl-data-page,
716 perl-data-stream-bulk, perl-data-tumbler, perl-data-visitor, perl-date-calc,
717 perl-date-calc-xs, perl-datetime, perl-datetime-event-ical,
718 perl-datetime-event-recurrence, perl-datetime-format-builder,
719 perl-datetime-format-flexible, perl-datetime-format-http,
720 perl-datetime-format-ical, perl-datetime-format-natural,
721 perl-datetime-format-strptime, perl-datetime-locale, perl-datetime-set,
722 perl-datetime-timezone, perl-datetimex-easy, perl-dbd-pg, perl-dbix-class,
723 perl-dbix-class-cursor-cached, perl-dbix-class-introspectablem2m,
724 perl-dbix-class-schema-loader, perl-devel-caller, perl-devel-checkbin,
725 perl-devel-globaldestruction, perl-devel-lexalias, perl-devel-overloadinfo,
726 perl-devel-partialdump, perl-devel-stacktrace, perl-devel-stacktrace-ashtml,
727 perl-devel-symdump, perl-digest-hmac, perl-digest-md5-file,
728 perl-dist-checkconflicts, perl-email-abstract, perl-email-address,
729 perl-email-date-format, perl-email-messageid, perl-email-mime,
730 perl-email-mime-contenttype, perl-email-mime-encodings, perl-email-sender,
731 perl-email-simple, perl-error, perl-eval-closure, perl-exception-class,
732 perl-exporter-tiny, perl-extutils-config, perl-extutils-helpers,
733 perl-extutils-installpaths, perl-file-changenotify, perl-file-copy-recursive,
734 perl-file-find-rule, perl-file-find-rule-perl, perl-file-homedir,
735 perl-file-remove, perl-file-sharedir, perl-file-sharedir-install,
736 perl-file-slurp, perl-file-temp, perl-gd, perl-gd-securityimage,
737 perl-getopt-long-descriptive, perl-hash-merge, perl-hash-multivalue,
738 perl-html-form, perl-html-lint, perl-html-tree, perl-http-body,
739 perl-http-cookiejar, perl-http-parser, perl-http-parser-xs,
740 perl-http-request-ascgi, perl-http-server-simple, perl-http-tiny,
741 perl-image-magick, perl-import-into, perl-inc-latest, perl-io-compress,
742 perl-io-interactive, perl-io-socket-ip, perl-io-stringy, perl-ipc-run,
743 perl-ipc-sharelite, perl-json, perl-json-any, perl-json-maybexs, perl-json-xs,
744 perl-lingua-en-findnumber, perl-lingua-en-inflect,
745 perl-lingua-en-inflect-number, perl-lingua-en-inflect-phrase,
746 perl-lingua-en-number-isordinal, perl-lingua-en-tagger,
747 perl-lingua-en-words2nums, perl-lingua-pt-stemmer, perl-lingua-stem,
748 perl-lingua-stem-fr, perl-lingua-stem-it, perl-lingua-stem-ru,
749 perl-lingua-stem-snowball-da, perl-list-allutils, perl-list-moreutils,
750 perl-lwp-protocol-https, perl-lwp-useragent-determined,
751 perl-memoize-expirelru, perl-mime-types, perl-module-build,
752 perl-module-build-tiny, perl-module-find, perl-module-implementation,
753 perl-module-install, perl-module-runtime, perl-module-runtime-conflicts,
754 perl-module-scandeps, perl-module-util, perl-moo, perl-moose,
755 perl-moosex-emulate-class-accessor-fast, perl-moosex-getopt,
756 perl-moosex-markasmethods, perl-moosex-methodattributes, perl-moosex-nonmoose,
757 perl-moosex-params-validate, perl-moosex-relatedclassroles,
758 perl-moosex-role-parameterized, perl-moosex-role-withoverloading,
759 perl-moosex-semiaffordanceaccessor, perl-moosex-strictconstructor,
760 perl-moosex-traits-pluggable, perl-moosex-types, perl-moosex-types-datetime,
761 perl-moosex-types-datetime-morecoercions, perl-moosex-types-loadableclass,
762 perl-moox-types-mooselike, perl-mro-compat, perl-namespace-autoclean,
763 perl-namespace-clean, perl-net-amazon-s3, perl-net-server,
764 perl-number-compare, perl-object-signature, perl-package-anon,
765 perl-package-deprecationmanager, perl-package-stash, perl-package-stash-xs,
766 perl-padwalker, perl-par-dist, perl-params-util, perl-params-validate,
767 perl-parent, perl-parse-cpan-meta, perl-path-class, perl-plack,
768 perl-plack-middleware-fixmissingbodyinredirect,
769 perl-plack-middleware-methodoverride,
770 perl-plack-middleware-removeredundantbody, perl-plack-middleware-reverseproxy,
771 perl-plack-test-externalserver, perl-pod-coverage,
772 perl-posix-strftime-compiler, perl-readonly, perl-role-tiny, perl-safe-isa,
773 perl-scalar-list-utils, perl-scope-guard, perl-set-infinite, perl-set-scalar,
774 perl-snowball-norwegian, perl-snowball-swedish, perl-spiffy,
775 perl-sql-abstract, perl-sql-splitstatement, perl-sql-tokenizer,
776 perl-stream-buffered, perl-strictures, perl-string-camelcase,
777 perl-string-rewriteprefix, perl-string-toidentifier-en, perl-sub-exporter,
778 perl-sub-exporter-progressive, perl-sub-identify, perl-sub-install,
779 perl-sub-name, perl-sub-uplevel, perl-svg, perl-sys-hostname-long,
780 perl-task-weaken, perl-template-timer, perl-template-toolkit,
781 perl-term-encoding, perl-term-progressbar, perl-term-progressbar-quiet,
782 perl-term-progressbar-simple, perl-term-readkey, perl-test-base,
783 perl-test-cleannamespaces, perl-test-differences, perl-test-directory,
784 perl-test-exception, perl-test-fatal, perl-test-harness, perl-test-leaktrace,
785 perl-test-longstring, perl-test-mockobject, perl-test-mocktime,
786 perl-test-most, perl-test-output, perl-test-pod, perl-test-pod-coverage,
787 perl-test-requires, perl-test-sharedfork, perl-test-tcp, perl-test-trap,
788 perl-test-utf8, perl-test-warn, perl-test-warnings, perl-test-without-module,
789 perl-test-writevariants, perl-test-www-mechanize,
790 perl-test-www-mechanize-catalyst, perl-test-www-mechanize-psgi,
791 perl-test-yaml, perl-text-aligner, perl-text-balanced, perl-text-csv,
792 perl-text-diff, perl-text-german, perl-text-glob, perl-text-simpletable,
793 perl-text-table, perl-text-unidecode, perl-throwable, perl-tie-ixhash,
794 perl-tie-toobject, perl-time-duration, perl-time-duration-parse,
795 perl-time-local, perl-time-mock, perl-timedate, perl-tree-simple,
796 perl-tree-simple-visitorfactory, perl-try-tiny, perl-types-serialiser,
797 perl-universal-can, perl-universal-isa, perl-uri-find, perl-uri-ws,
798 perl-variable-magic, perl-www-mechanize, perl-xml-libxml,
799 perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base, perl-yaml,
800 perl-yaml-tiny, ploticus, polipo, portaudio, pumpa, python-apsw,
801 python-biopython, python-cssselect, python-dbus, python-decorator,
802 python-drmaa, python-h5py, python-lxml, python-netifaces, python-networkx,
803 python-pyxdg, python-pyyaml, python-requests, python-scikit-learn,
804 python-singledispatch, python-sphinx-rtd-theme, python-sympy, python-testlib,
805 python-tornado, python-urwid, python-waf, python2-apsw,
806 python2-backport-ssl-match-hostname, python2-biopython, python2-bx-python,
807 python2-cssselect, python2-cssutils, python2-dbus, python2-decorator,
808 python2-drmaa, python2-h5py, python2-lxml, python2-netifaces,
809 python2-networkx, python2-pbcore, python2-pil, python2-pybedtools,
810 python2-pycairo, python2-pyxdg, python2-pyyaml, python2-rdflib, python2-rsvg,
811 python2-scikit-learn, python2-singledispatch, python2-six,
812 python2-sphinx-rtd-theme, python2-sympy, python2-testlib, python2-tornado,
813 python2-urwid, python2-waf, python2-xlib, quvi, r, rdesktop, recode, rep-gtk,
814 rseqc, rsound, rubberband, ruby-hoe, rxvt-unicode, s2tc, sawfish, sbcl, seqan,
815 serd, serf, sfml, shogun, sloccount, smartmontools, snakemake, soil, solfege,
816 sord, soundtouch, soxr, sra-tools, sratom, srt2vtt, star, starman, stow,
817 subread, suil, suitesparse, swt, sysfsutils, sysfsutils, taskwarrior, tbb,
818 terminology, tesseract-ocr, texlive-bin, texlive-texmf, the-silver-searcher,
819 tidy, tig, timidity++, tocc, totem-pl-parser, tree, tuxguitar, tvtime,
820 twolame, txt2man, unqlite, upower, utf8proc, vamp, vapoursynth, vcftools,
821 vigra, wavpack, webkitgtk, webkitgtk, weex, wicd, wpa-supplicant-light,
822 wxwidgets, wxwidgets, xbindkeys, xcape, xdg-utils, xf86-input-libinput,
823 xf86-input-wacom, xf86-video-nouveau, xfce, xmp, xosd, xournal, xvid, zathura,
824 zathura-cb, zathura-djvu, zathura-pdf-poppler, zathura-ps, zeromq,
825 zita-alsa-pcmi, zita-convolver
826
827 *** 189 package updates
828
829 acpica-20150410, apl-1.5, apr-1.5.2, arb-2.3.0, at-spi2-atk-2.16.0,
830 at-spi2-core-2.16.0, atk-2.16.0, autogen-5.18.5, bison-3.0.4, boost-1.57.0,
831 cairo-1.14.2, ccrtp-2.1.2, check-0.9.14, clang-3.6.0, cmake-3.2.2,
832 complexity-1.2, cups-filters-1.0.68, curl-7.42.1, dbus-1.8.16,
833 dbus-glib-0.104, dejagnu-1.5.3, docbook-xml-4.4, docbook-xml-4.5,
834 e2fsck-static-1.42.12, e2fsprogs-1.42.12, ed-1.11, eigen-3.2.4,
835 elfutils-0.161, emacs-24.5, emacs-no-x-toolkit-24.5, exo-0.10.3, ffmpeg-2.6.2,
836 fish-2.1.2, flac-1.3.1, flint-2.4.5, fltk-1.3.3, freetype-2.5.5, garcon-0.4.0,
837 gcc-5.1.0, gcc-toolchain-5.1.0, gdb-7.9, geiser-0.7, glib-2.44.0, glibc-2.21,
838 glibc-2.21, glibc-stripped-tarball-2.21, glibmm-2.44.0, global-6.4,
839 gnome-desktop-3.16.0, gnome-icon-theme-3.12.0, gnome-themes-standard-3.16.0,
840 gnu-pw-mgr-1.3, gnubik-2.4.2, gnumach-headers-1.5, gnunet-0.10.1,
841 gnupg-1.4.19, gnupg-2.0.27, gnupg-2.1.4, gnutls-3.4.0,
842 gobject-introspection-1.44.0, gpgme-1.5.4, gsettings-desktop-schemas-3.16.0,
843 gst-plugins-base-1.4.5, gst-plugins-good-1.4.5, gstreamer-1.4.5, gtk+-3.16.2,
844 gtkmm-2.24.4, gtkmm-3.16.0, guile-ssh-0.7.2, guix-0.8.1, guix-0.8.1.fc34dee,
845 help2man-1.46.6, httpd-2.4.12, hurd-headers-0.6, icecat-31.6.0-gnu1,
846 icu4c-55.1, imagemagick-6.9.0-4, imlib2-1.4.7, inetutils-1.9.3, inkscape-0.91,
847 isc-dhcp-4.3.1, itstool-2.0.2, kbd-2.0.2, libgcrypt-1.6.3, libgpg-error-1.18,
848 libidn-1.30, libltdl-2.4.6, libmicrohttpd-0.9.40, libmikmod-3.3.7,
849 libotr-4.1.0, libsigc++-2.4.1, libtasn1-4.5, libtool-2.4.6,
850 libunistring-0.9.5, libuv-1.4.2, libvorbis-1.3.5, libxfce4ui-4.12.0,
851 libxfce4util-4.12.1, libxfont-1.5.1, lightning-2.1.0, linux-libre-4.0.2,
852 linux-libre-headers-3.14.37, llvm-3.6.0, lua-5.2.3, man-pages-3.82,
853 mesa-10.5.4, mig-1.5, minetest-0.4.12, moe-1.7, mpc-1.0.3, mpd-0.19.9,
854 mu-0.9.12, nano-2.4.1, ncmpcpp-0.6.2, nettle-3.1, nginx-1.8.0, node-0.12.2,
855 notmuch-0.19, nspr-4.10.8, nss-3.18, ntp-4.2.8p2, ocrad-0.25, octave-3.8.2,
856 openconnect-7.05, openjpeg-2.0.1, openjpeg-2.1.0, openldap-2.4.40,
857 openssh-6.8p1, openssl-1.0.2a, pangomm-2.36.0, parallel-20150422,
858 pari-gp-2.7.3, patch-2.7.5, perf-4.0.2, perl-libwww-6.13, perl-net-http-6.07,
859 perl-net-ssleay-1.68, perl-test-simple-1.001014, perl-uri-1.67,
860 pinentry-0.9.0, pius-2.0.11, podofo-0.9.3, poppler-0.32.0, postgresql-9.3.6,
861 pulseaudio-6.0, python-3.4.3, python-pillow-2.7.0, python-pygobject-3.16.1,
862 python-setuptools-12.1, python-wrapper-3.4.3, python2-dateutil-2.2,
863 python2-pillow-2.7.0, python2-pygobject-3.16.1, python2-setuptools-12.1,
864 qt-5.4.1, ruby-2.2.2, samba-3.6.25, scons-2.3.4, sdl2-2.0.3, sharutils-4.15.1,
865 sipwitch-1.9.7, slock-1.2, source-highlight-3.1.8, sqlite-3.8.9,
866 subversion-1.8.13, texinfo-5.2, thunar-1.6.6, thunar-volman-0.8.1,
867 tor-0.2.5.12, tumbler-0.1.31, tzdata-2015c, ucommon-6.3.1, vala-0.28.0,
868 valgrind-3.10.1, vlc-2.2.0, vte-0.40.0, wget-1.16.3, wine-1.7.40,
869 wpa-supplicant-2.4, xboard-4.8.0, xfce4-appfinder-4.12.0, xfce4-panel-4.12.0,
870 xfce4-session-4.12.0, xfce4-settings-4.12.0, xfconf-4.12.0, xfdesktop-4.12.0,
871 xfwm4-4.12.0, xorg-server-1.16.4, xterm-317
872
873 ** Programming interfaces
874
875 *** New (guix build gremlin) to parse and validate ELF dynamic link info
876
877 *** (guix build-system gnu) has a new ‘validate-runpath’ phase
878
879 This phase reads the dynamic entries of ELF files and reports libraries listed
880 as NEEDED that are not found in the RUNPATH.
881
882 *** New (gnu services desktop) module and ‘%desktop-services’ variable
883
884 *** New (guix cvs-download) module, for CVS checkouts
885
886 *** New (guix build-system waf) module, for the Waf build system
887
888 *** New (guix build-system haskell) module, to build Haskell packages
889
890 *** (guix build-system gnu) now supports zip archives
891
892 *** New convenience syntax ‘modify-phases’ added in (guix build utils)
893
894 *** The ‘ld’ wrapper more finely determines whether to use ‘-rpath’
895
896 *** (guix gexp) exports ‘gexp-input’ to describe input unambiguously
897
898 *** The ‘define-gexp-compiler’ form allows (guix gexp) to be extended
899
900 *** New ‘local-file’ constructor exported by (guix gexp)
901
902 ** Noteworthy bug fixes
903
904 *** Profiles created with ‘guix package -p’ as indirect GC roots
905
906 Before that they were made permanent GC roots–i.e., uncollectable.
907
908 *** ‘guix package’ distinguishes downgrades from upgrades
909
910 *** Handle HTTP redirects to relative URI references
911 (<http://bugs.gnu.org/19840>)
912
913 *** Downloads now honor the ‘http_proxy’ environment variable
914 (<http://bugs.gnu.org/20402>)
915
916 *** ‘--no-*’ options are now always correctly handled
917 (<http://lists.gnu.org/archive/html/guix-devel/2015-02/msg00702.html>)
918
919 *** SLiM no longer leaks open file descriptors
920
921 *** Don't compare <pam-service> objects with 'equal?'
922 (<http://bugs.gnu.org/20037>)
923
924 *** x86_64 and i686 bootstrap binaries updated (<http://bugs.gnu.org/19780>)
925
926 *** ‘find-files’ no longer follows symlinks (<http://bugs.gnu.org/20081>)
927
928 *** libc message catalog (‘libc.mo’) is now installed
929
930 *** libstdc++ has appropriate RUNPATH (<http://bugs.gnu.org/20358>)
931
932 *** ‘dhcp-client-service’ now correctly tracks dhclient’s PID
933
934 ** Native language support
935
936 *** New translations: da (Danish)
937
938 *** Updated translations: eo
939
940 * Changes in 0.8.1 (since 0.8)
941
942 ** Package management
943
944 *** New ‘--share’ and ‘--expose’ options for ‘guix system vm’
945
946 See “Invoking guix system” in the manual.
947
948 *** Emacs mode now automatically loads newly installed Emacs packages
949
950 See “Emacs Initial Setup” in the manual.
951
952 *** ‘guix-daemon’ now defaults to ‘--cores=0 --jobs=1’
953
954 In other words, at any given time, only one derivation is being built or
955 substituted, and it can use as many cores as available. Before, there could
956 be N derivations using N cores, which was obviously not desirable.
957
958 *** Command-line tools support the ‘GUIX_BUILD_OPTIONS’ environment variable
959
960 See “Invoking guix build” in the manual.
961
962 *** ‘guix environment’ is faster
963
964 *** New ‘--recursive’ option for ‘guix archive’
965
966 See “Invoking guix archive” in the manual.
967
968 *** Missing patches required by a package definition are gracefully reported
969
970 *** ‘guix lint’ supports additional checkers
971
972 The new checkers are ‘gnu-description’, ‘home-page’, and ‘source’.
973 See “Invoking guix lint” in the manual.
974
975 *** New CPAN importer for ‘guix import’
976
977 See “Invoking guix import” in the manual.
978
979 ** Distribution
980
981 *** USB installation image has more tools
982
983 Tools added since 0.8: wpa_supplicant, cryptsetup, and iw.
984
985 *** Linux kernel module dependencies are automatically handled
986
987 Before that, all the modules needed in the initrd would need to be explicitly
988 listed, including their dependencies, and in topological order.
989
990 *** Font packages now all have a name starting with ‘font-’
991
992 See “Fonts” in the manual.
993
994 *** Shell startup files have been cleaned up
995
996 /etc/profile contains only environment variable definitions, which may also be
997 used when running a different shell. The skeletons for user’s ‘.bash_profile’
998 and ‘.bashrc’ files behave as documented in the Bash manual. Zsh is supported.
999
1000 *** The ‘root’ account gets a copy of the account skeleton files
1001
1002 Before that, the skeleton files would only be copied to non-root accounts.
1003
1004 *** The name service cache daemon (nscd) is configurable
1005
1006 By default it aggressively caches host and service lookups. See “Base
1007 Services” in the manual.
1008
1009 *** Available locale definitions are now declared in ‘operating-system’
1010
1011 Before, the ‘glibc’ package would contain all the existing locales, as well as
1012 the ‘locale-archive’ file, amounting to 110 MiB. See “Locales” in the manual.
1013
1014 *** SLiM sessions are configurable
1015
1016 Pressing F1 in the SLiM graphical log-in screen allows users to choose among
1017 the pre-configured session types. See “X Window” in the manual.
1018
1019 *** Man pages and Info files are systematically gzip-compressed
1020
1021 *** ‘gnu-build-system’ ensures that documentation is in share/{man,info}
1022
1023 If a package installs to $prefix/{man,info}, this is automatically fixed to be
1024 $prefix/share/{man,info}.
1025
1026 *** ‘strip’ is invoked only on ELF files and ‘ar’ archives
1027
1028 *** ‘libtool’ and ‘libltdl’ are now separate packages
1029
1030 *** Emacs mode is readily usable on the Guix System Distribution
1031
1032 *** Substitutes are now enabled by default on freshly installed systems
1033 *** 164 new packages
1034
1035 abcde, astyle, avr-libc, bbdb, bedtools, bowtie, bullet, c-reduce, cd-discid,
1036 cgal, clang, claws-mail, cups, cups-filters, cups-minimal, dconf, delta,
1037 dmenu, eigen, emms, exo, fastjar, font-bitstream-vera, font-dejavu,
1038 font-gnu-freefont-ttf, font-liberation, font-terminus, fvwm, garcon,
1039 gcc-cross-arm-linux-gnueabihf, gcc-cross-sans-libc-avr, gcj, getmail,
1040 git-flow, git-manpages, git-test-sequence, glew, glulxe, gourmet,
1041 gst-plugins-good, gtk-xfce-engine, hexchat, ijs, iw, jack, json-glib,
1042 libdvdnav, libdvdread, libetpan, libevdev, libltdl, libtorrent, libupnp,
1043 libwnck, libwnck, libxfce4ui, libxfce4util, libxshmfence, libyubikey, llvm,
1044 lrdf, mg, mp3info, msmtp, ncftp, nginx, ninja, nss, openbox,
1045 perl-benchmark-timer, perl-clone, perl-digest-sha1, perl-exporter-lite,
1046 perl-file-which, perl-getopt-tabular, perl-ipc-run3, perl-probe-perl,
1047 perl-regexp-common, perl-sys-cpu, perl-test-deep, perl-test-nowarnings,
1048 perl-test-script, perl-test-simple, perl-test-tester, pflask,
1049 python-cairocffi, python-cffi, python-distutils-extra, python-html5lib,
1050 python-ipython, python-isodate, python-matplotlib, python-numpy,
1051 python-numpydoc, python-pillow, python-pycairo, python-pycparser,
1052 python-pygobject, python-pyparsing, python-pyqt, python-pysam, python-rdflib,
1053 python-scipy, python-sip, python-sqlalchemy, python-xcffib, python2-cairocffi,
1054 python2-cffi, python2-distutils-extra, python2-elib.intl, python2-html5lib,
1055 python2-ipython, python2-isodate, python2-matplotlib, python2-numpy,
1056 python2-numpydoc, python2-pillow, python2-py2cairo, python2-pycparser,
1057 python2-pygobject, python2-pygtk, python2-pyparsing, python2-pyqt,
1058 python2-pysam, python2-scipy, python2-sip, python2-sqlalchemy, python2-xcffib,
1059 qpdf, retroarch, rtorrent, samtools, shflags, slang, slock, socat,
1060 startup-notification, sxiv, taglib, telepathy-glib, thunar, thunar-volman,
1061 tre, tumbler, vala, vte, vte, wine, wmctrl, xclip, xdotool, xf86-video-geode,
1062 xfce4-appfinder, xfce4-battery-plugin, xfce4-panel, xfce4-session,
1063 xfce4-settings, xfce4-terminal, xfconf, xfdesktop, xfwm4, xinit, ykclient,
1064 zerofree
1065
1066 *** 222 package updates
1067
1068 apr-util-1.5.4, atk-2.15.3, automake-1.15, bash-4.3.33, bash-light-4.3.33,
1069 bdftopcf-1.0.4, binutils-2.25, binutils-static-stripped-tarball-2.25,
1070 cairo-1.12.18, cairomm-1.11.2, ccrtp-2.1.1, curl-7.40.0, dbus-1.8.12,
1071 dbus-glib-0.102, ddrescue-1.19, dri2proto-2.8, e2fsck-static-1.42.11,
1072 e2fsprogs-1.42.11, eudev-2.1.1, ffmpeg-2.5.3, file-5.22, fish-2.1.1,
1073 fontconfig-2.11.92, fontsproto-2.1.3, freeipmi-1.4.8,
1074 gcc-cross-mips64el-linux-gnuabi64-4.8.4, gcc-cross-sans-libc-xtensa-elf-4.8.4,
1075 gcc-objc++-4.8.4, gcc-objc-4.8.4, gcc-stripped-tarball-4.8.4, gccgo-4.8.4,
1076 gcl-2.6.12, gd-2.1.1, gdb-7.8.2, gdk-pixbuf-2.31.1, gettext-0.19.4,
1077 gfortran-4.8.4, ghostscript-9.14.0, ghostscript-with-x-9.14.0, gimp-2.8.14,
1078 git-2.2.1, glib-2.42.1, glibmm-2.42.0, global-6.3.3, glproto-1.4.17,
1079 gnutls-3.2.21, gobject-introspection-1.42.0, gp2c-0.0.9pl2, grep-2.21,
1080 groff-1.22.3, gss-1.0.3, gst-plugins-base-1.0.10, gtk+-3.14.7, gtkmm-3.14.0,
1081 guix-0.8, guix-0.8.4ad8789, help2man-1.46.4, iceauth-1.0.6, icu4c-54.1,
1082 inkscape-0.48.5, inputproto-2.3.1, lcms-2.6, lftp-4.6.1, libassuan-2.2.0,
1083 libcdio-0.93, libdmx-1.1.3, libdrm-2.4.58, libfontenc-1.1.2, libfs-1.0.6,
1084 libgcrypt-1.6.2, libgpg-error-1.17, libice-1.0.9, libjpeg-9a, libksba-1.3.2,
1085 libmicrohttpd-0.9.39, libnl-3.2.25, libpciaccess-0.13.2, libpeas-1.12.1,
1086 libpng-1.5.21, librsvg-2.40.6, libsm-1.2.2, libtasn1-4.2, libtool-2.4.5,
1087 libx11-1.6.2, libxau-1.0.8, libxaw-1.0.12, libxcb-1.11, libxcomposite-0.4.4,
1088 libxcursor-1.1.14, libxdamage-1.1.4, libxext-1.3.3, libxfixes-5.0.1,
1089 libxfont-1.5.0, libxft-2.3.2, libxi-1.7.4, libxinerama-1.1.3,
1090 libxkbcommon-0.5.0, libxmu-1.1.2, libxp-1.0.2, libxpm-3.5.11, libxrandr-1.4.2,
1091 libxrender-0.9.8, libxres-1.0.7, libxt-1.1.4, libxtst-1.2.2, libxv-1.0.10,
1092 libxvmc-1.0.8, libxxf86dga-1.1.4, libxxf86vm-1.1.3, linux-libre-3.18.4,
1093 lua-5.2.3, makedepend-1.0.5, mercurial-3.2.4, mesa-10.4.0, minetest-0.4.11,
1094 mkfontscale-1.1.1, neon-0.30.0, nix-1.8, ntp-4.2.8, ocrad-0.24,
1095 openjpeg-2.0.1, openssl-1.0.1k, pango-1.36.8, parallel-20150122,
1096 pari-gp-2.7.2, patchelf-0.8, pcre-8.36, perf-3.18.4, phonon-4.8.3,
1097 pixman-0.32.6, pkg-config-0.28, poppler-0.28.1, python-3.3.5,
1098 python-dateutil-2.2, python2-dateutil-2.2, qemu-2.2.0, qemu-headless-2.2.0,
1099 qt-5.4.0, racket-6.1.1, randrproto-1.4.0, raptor2-2.0.15, rasqal-0.9.33,
1100 rcs-5.9.4, ruby-2.1.5, sessreg-1.0.8, sipwitch-1.9.3, sqlite-3.8.7.4,
1101 tiled-0.11.0, tmux-1.9a, tzdata-2014j, ucommon-6.2.3, util-linux-2.25.2,
1102 util-macros-1.19.0, vera-1.22, videoproto-2.3.2, wget-1.16.1, xauth-1.0.9,
1103 xbacklight-1.2.1, xcb-proto-1.11, xcb-util-0.4.0, xcb-util-image-0.4.0,
1104 xcb-util-keysyms-0.4.0, xcb-util-renderutil-0.3.9, xcb-util-wm-0.4.1,
1105 xcursor-themes-1.0.4, xcursorgen-1.0.6, xdpyinfo-1.3.1, xev-1.2.1,
1106 xextproto-7.3.0, xf86-input-evdev-2.8.4, xf86-input-joystick-1.6.2,
1107 xf86-input-keyboard-1.8.0, xf86-input-mouse-1.9.1, xf86-input-synaptics-1.8.1,
1108 xf86-video-ark-0.7.5, xf86-video-ati-7.5.0, xf86-video-cirrus-1.5.2,
1109 xf86-video-fbdev-0.4.4, xf86-video-glint-1.2.8, xf86-video-i128-1.3.6,
1110 xf86-video-intel-2.21.15, xf86-video-mach64-6.9.4, xf86-video-mga-1.6.3,
1111 xf86-video-neomagic-1.2.8, xf86-video-nv-2.1.20, xf86-video-openchrome-0.3.3,
1112 xf86-video-r128-6.9.2, xf86-video-savage-2.3.7,
1113 xf86-video-siliconmotion-1.7.7, xf86-video-sis-0.10.7,
1114 xf86-video-suncg6-1.1.2, xf86-video-sunffb-1.2.2, xf86-video-tdfx-1.4.5,
1115 xf86-video-tga-1.2.2, xf86-video-trident-1.3.6, xf86-video-vesa-2.3.3,
1116 xf86-video-vmware-13.0.2, xf86-video-voodoo-1.2.5, xhost-1.0.6, xinput-1.6.1,
1117 xkbcomp-1.3.0, xkbutils-1.0.4, xkeyboard-config-2.13, xkill-1.0.4,
1118 xlockmore-5.45, xlsclients-1.1.3, xmodmap-1.0.8, xnee-3.19,
1119 xorg-server-1.16.3, xprop-1.2.2, xproto-7.0.26, xrandr-1.4.3, xrdb-1.1.0,
1120 xrefresh-1.0.5, xset-1.2.3, xsetroot-1.1.1, xtrans-1.3.5, xvinfo-1.1.2,
1121 xwd-1.0.6, xwininfo-1.1.3, youtube-dl-2015.01.23.4, zsh-5.0.7
1122
1123 ** Programming interfaces
1124
1125 *** New (guix elf) and (gnu build linux-modules) modules
1126
1127 These provide resolution of Linux kernel module dependencies. See
1128 <https://lists.gnu.org/archive/html/guix-devel/2014-11/msg00670.html>.
1129
1130 *** ‘glib-or-gtk-build-system’ has been extended
1131
1132 It now handles GIO and XDG themes, takes care of generating the icon cache,
1133 and has a new #:glib-or-gtk-wrap-excluded-outputs parameter.
1134
1135 *** ‘search-path-specification’ can now specify non-directory items
1136
1137 For example, the ‘search-path-specification’ attached to libxml2 specifies a
1138 file pattern, which allows all the ‘catalog.xml’ files to be added to the
1139 ‘XML_CATALOG_FILES’ environment variable.
1140
1141 *** (guix build syscalls) has more network-related procedures
1142
1143 ‘set-network-interface-flags’, ‘set-network-interface-address’,
1144 ‘network-interface-address’, and ‘configure-network-interface’ are ioctl
1145 bindings used by network-handling dmd services.
1146
1147 *** (guix monads) refactoring
1148
1149 ‘%store-monad’ is now in (guix store) and is an alias for the new
1150 ‘%state-monad’ provided by (guix monads). Monadic procedures dealing with the
1151 store, with derivations, and with packages have been moved from (guix monads)
1152 to (guix store), (guix derivations), and (guix packages). See “The Store
1153 Monad” in the manual.
1154
1155 *** (guix build utils) provides ‘parallel-job-count’
1156
1157 *** ‘wrap-program’ preserves the original argv[0]
1158
1159 *** New (guix sets) module
1160
1161 *** ‘define-record-type*’ now support “delayed” fields
1162
1163 ** Noteworthy bug fixes
1164
1165 *** X session is executed from a login shell (<http://bugs.gnu.org/19119>)
1166 *** grub.cfg is now a garbage-collector root (<http://bugs.gnu.org/19160>)
1167 *** Substituter progress report properly formatted
1168 (<http://bugs.gnu.org/19313>)
1169 *** Document permissions for /gnu/store (<http://bugs.gnu.org/19316>)
1170 *** Make sure config.go is newer than config.scm
1171 (<http://bugs.gnu.org/19317>)
1172 *** Emacs knows where to find its GLib schemas (<http://bugs.gnu.org/19138>)
1173 *** Adjust 'grub.cfg' to work on systems with a separate /boot
1174 (<http://bugs.gnu.org/19220>)
1175 *** Fix removal of next-to-last item in a profile
1176 (<http://lists.gnu.org/archive/html/guix-devel/2014-12/msg00292.html>)
1177 *** Apply patches with "patch --force" (<http://bugs.gnu.org/19402>)
1178 *** Extend ‘search-path-specification’ for libxml2-style use cases
1179 (<http://bugs.gnu.org/18033>)
1180 *** Search for patches under $GUIX_PACKAGE_PATH (<http://bugs.gnu.org/19364>)
1181 *** Use executables from the target inputs in 'patch-shebangs'
1182 (<http://bugs.gnu.org/18895>)
1183 *** guix-daemon now automatically creates '…/profiles/per-user'
1184 (<http://bugs.gnu.org/19315>)
1185 *** Make /etc/mtab a symlink to /proc/self/mounts
1186 (<http://bugs.gnu.org/19491>)
1187 *** Don't build the mips64el-linux-gnuabi64 cross-compiler on i686
1188 (<http://bugs.gnu.org/19598>)
1189 *** Read archive signatures as Latin-1 strings (<http://bugs.gnu.org/19610>)
1190 *** Raise an error for references to non-existent outputs
1191 (<http://bugs.gnu.org/19630>)
1192 *** Initialize libgcrypt before use (<http://bugs.gnu.org/19677>)
1193
1194 ** Native language support
1195
1196 *** New translations: fr (French), hu (Hungarian)
1197 *** Updated translation: eo, vi
1198
1199 * Changes in 0.8 (since 0.7)
1200
1201 ** Package management
1202
1203 *** New visual user interface in Emacs
1204
1205 See “Emacs Interface” in the manual.
1206
1207 *** New ‘guix environment’ command to produce development environment
1208
1209 See “Invoking guix environment” in the manual.
1210
1211 *** The ‘guix import’ command has been extended and documented
1212
1213 It can now import packages from pypi.python.org and from GNU.
1214 See “Invoking guix import” in the manual.
1215
1216 *** New ‘guix lint’ command, for use by Guix developers
1217
1218 See “Invoking guix lint” in the manual.
1219
1220 *** Packages can now be “grafted” with replacements of their dependencies
1221
1222 See “Security Updates” in the manual.
1223
1224 *** The distribution can be extended with ‘--load-path’ or $GUIX_PACKAGE_PATH
1225
1226 This allows users to maintain their own package definitions, and make them
1227 visible to the various user interfaces. See “Package Modules” in the manual.
1228
1229 *** ‘guix package’ better reports package upgrades
1230
1231 *** ‘guix package’ has a new ‘--switch-generation’ option
1232
1233 See “Invoking guix package” in the manual.
1234
1235 *** ‘guix-daemon’ has a new ‘--substitute-urls’ option
1236
1237 See “Invoking guix-daemon” in the manual.
1238
1239 ** Distribution
1240
1241 *** The stand-alone operating system now supports Linux mapped devices
1242
1243 See “Mapped Devices” in the manual.
1244
1245 *** New fields in ‘operating-system’ declarations, better documentation
1246
1247 New fields include ‘hosts-file’, ‘mapped-devices’, and ‘swap-devices’.
1248 See “operating-system Reference” in the manual.
1249
1250 *** New services: ‘dhcp-client-service’, ‘bitlbee-service’, ‘ntp-service’
1251
1252 See “Services” in the manual.
1253
1254 *** Free firmware can be loaded
1255
1256 This notably enables support for some Atheros-based WiFi devices (ath9k-htc.)
1257 See “operating-system Reference” in the manual.
1258
1259 *** ‘grub-configuration’ declarations can now specify a theme
1260
1261 See “GRUB Configuration” in the manual.
1262
1263 *** The ‘base-initrd’ now has a different signature
1264
1265 Existing uses in ‘operating-system’ declarations need to be updated. See
1266 “Initial RAM Disk” in the manual for details.
1267
1268 *** eudev is now used by default, instead of an old udev release
1269
1270 *** ‘guix system vm’ has a new ‘--full-boot’ option
1271
1272 See “Invoking guix system” in the manual.
1273
1274 *** The ‘file’ command is now part of the package build environment
1275
1276 Autoconf-generated ‘configure’ scripts for packages using Libtool use ‘file’
1277 to determine the target ABI, notably on MIPS, hence this change.
1278
1279 *** 162 new packages
1280
1281 abiword, acpica, adns, arb, ath9k-htc-firmware, atlas, avrdude, cppunit,
1282 dblatex, detox, dfu-programmer, dionysus, direvent, dmidecode, dri3proto,
1283 emacs-no-x-toolkit, emacs-w3m, emacs-wget, enchant, eudev, feh, flashrom,
1284 flint, fontforge, freedink, freeimage, fribidi,
1285 gcc-cross-sans-libc-xtensa-elf, giblib, gnome-themes-standard, gpsbabel,
1286 gpscorrelate, graphite2, gtypist, guile-charting, guile-sdl, imake, imlib2,
1287 irrlicht, jbig2dec, libpsl, libspiro, libuninameslist, libwmf, lm-sensors,
1288 magit, minetest, miscfiles, mozjs, mupdf, nix, nspr, nss-mdns, ntp, nvi, opam,
1289 openal, openjpeg, opus-tools, orpheus, ots, oxygen-icons, paredit, perf,
1290 perl-archive-zip, perl-dbd-sqlite, perl-dbi, perl-image-exiftool,
1291 perl-io-socket-ssl, perl-net-ssleay, perl-www-curl, perl-zip, polkit,
1292 polkit-qt, postgresql, potrace, presentproto, python-certifi, python-coverage,
1293 python-cython, python-discover, python-docutils, python-exif-read,
1294 python-extras, python-fixtures, python-itsdangerous, python-jinja2,
1295 python-jsonschema, python-markupsafe, python-mimeparse, python-nose,
1296 python-oauthlib, python-py, python-pygments, python-pyjwt, python-pyld,
1297 python-pytest, python-scripttest, python-sphinx, python-subunit,
1298 python-testrepository, python-testresources, python-testscenarios,
1299 python-testtools, python-unidecode, python-unittest2, python-virtualenv,
1300 python2-certifi, python2-coverage, python2-cython, python2-discover,
1301 python2-docutils, python2-exif-read, python2-extras, python2-fixtures,
1302 python2-itsdangerous, python2-jinja2, python2-jsonschema, python2-markupsafe,
1303 python2-mimeparse, python2-nose, python2-oauthlib, python2-py,
1304 python2-pygments, python2-pyjwt, python2-pyld, python2-pytest,
1305 python2-requests, python2-scripttest, python2-sphinx, python2-subunit,
1306 python2-testrepository, python2-testresources, python2-testscenarios,
1307 python2-testtools, python2-unidecode, python2-unittest2, python2-virtualenv,
1308 rrdtool, ruby, ruby, ruby-i18n, sane-backends, scrot, sound-theme-freedesktop,
1309 stress, synergy, tdb, terminus-font, testdisk, texi2html, tiled, transfig,
1310 unclutter, unixodbc, weechat, wv, xboing, xf86-video-modesetting, xfig,
1311 xsensors, zsh
1312
1313 *** 117 package updates
1314
1315 acct-6.6.2, acl-2.2.52, apl-1.4, apr-1.5.1, apr-util-1.5.3, autoconf-2.68,
1316 autoconf-2.69, autogen-5.18.4, bash-4.3.30, bash-light-4.3.30, bazaar-2.6.0,
1317 bison-2.7, calcurse-3.2.1, ccache-3.1.10, chicken-4.9.0.1, coreutils-8.23,
1318 curl-7.37.1, datamash-1.0.6, dbus-1.8.8, docbook-xml-4.2, docbook-xml-4.4,
1319 docbook-xml-4.5, emacs-24.4, ffmpeg-2.2.10, ffmpeg-2.4.3, file-5.19,
1320 file-5.20, freeipmi-1.4.5, gcc-4.7.4, gcc-4.9.2, gcc-toolchain-4.9.2,
1321 gcl-2.6.11, gdb-7.8.1, geiser-0.6, gettext-0.19.3, git-2.1.2, glibc-2.20,
1322 glibc-2.20, glibc-stripped-tarball-2.20, global-6.3.2, glpk-4.55,
1323 gnupg-1.4.18, gnupg-2.0.26, gnurl-7.37.0, gnutls-3.2.20, gpgme-1.5.1,
1324 gst-plugins-base-1.0.10, gstreamer-1.0.10, gtk+-3.10.1, gtkmm-3.9.16,
1325 guile-1.8.8, guile-json-0.4.0, guile-ncurses-1.6, guile-ssh-0.7.1, guix-0.7,
1326 guix-0.7.48bd76e, hello-2.10, help2man-1.46.3, icecat-31.2.0,
1327 libart-lgpl-2.3.21, libassuan-2.1.3, libatomic-ops-7.4.2, libdrm-2.4.33,
1328 libffi-3.1, libgc-7.2f, libgc-7.4.2, libgcrypt-1.5.4, libgcrypt-1.6.2,
1329 libidn-1.29, libjpeg-9a, libotr-4.0.0, libsodium-1.0.0, libtasn1-4.1,
1330 libunistring-0.9.4, libwebsockets-1.3, lightning-2.0.5, linux-libre-3.17.3,
1331 lsof-4.88, lua-5.2.3, lvm2-2.02.109, lzip-1.16, make-4.1, maxima-5.34.1,
1332 mit-scheme-9.2, mysql-5.1.73, neon-0.30.0, net-base-5.3, nettle-2.7.1,
1333 notmuch-0.18.1, openssh-6.7p1, openssl-1.0.1j, parallel-20141022,
1334 phonon-4.8.2, pspp-0.8.4, python-3.3.5, python-dateutil-1.5,
1335 python2-dateutil-1.5, python2-pyicu-1.8, qt-4.8.6, qt-5.3.2, rcs-5.9.3,
1336 readline-6.3, subversion-1.7.18, swig-3.0.2, tar-1.28, texinfo-5.2,
1337 tor-0.2.5.10, transmission-2.84, ucommon-6.1.11, valgrind-3.10.0, vlc-2.1.5,
1338 wget-1.16, windowmaker-0.95.6, xapian-1.2.18, xf86-video-ati-6.14.6,
1339 xpdf-3.04, youtube-dl-2014.09.06
1340
1341 ** Programming interfaces
1342
1343 *** New ‘ruby-build-system’, for Ruby packages
1344
1345 See “Build Systems” in the manual.
1346
1347 *** New ‘glib-or-gtk-build-system’, for packages using GLib schemas
1348
1349 See “Build Systems” in the manual.
1350
1351 *** ‘gnu-build-system’ has a new #:substitutable? parameter
1352
1353 This allows packagers to mark a package as requiring a local build, thus
1354 preventing it from being substituted by a pre-built binary.
1355
1356 *** ‘cmake-build-system’ has a new #:build-type parameter
1357
1358 See “Build Systems” in the manual.
1359
1360 *** The ‘supported-systems’ field of packages is used more consistently
1361
1362 This allows packagers to prevent attempts to build a package on a given
1363 architecture when that architecture is known not to be supported. The
1364 ‘package-transitive-supported-systems’ procedure returns the intersection of
1365 the systems supported by the given package and by its dependencies.
1366
1367 *** The ‘wrap-program’ procedure can now be called multiple times
1368
1369 *** New ‘graft-derivations’ and ‘package-grafts’ procedures
1370
1371 They implement “grafts”, as described under “Security Updates” in the manual.
1372
1373 *** New “bag” intermediate representation for use by build systems
1374
1375 “Bags” are used internally as an intermediate representation between packages
1376 and derivations. See “Build Systems” in the manual.
1377
1378 *** New (guix monad-repl) module, for monadic interaction at the REPL
1379
1380 See “The Store Monad” in the manual.
1381
1382 *** New (guix build emacs-utils) module, to facilitate building Emacs packages
1383
1384 *** New (guix tests) module, with tools used by the test suite
1385
1386 *** The internal ‘guix-register’ command now deduplicates files in store items
1387
1388 *** Several system modules moved from (guix build …) to (gnu build …)
1389
1390 Also, the (gnu build linux-boot) module has been introduced, with code
1391 typically used by initial RAM disks when booting on GNU/Linux-libre.
1392
1393 *** (guix profiles) provides a representation of package transactions
1394
1395 This factorizes code between ‘guix package’ and the Emacs user interface.
1396
1397 *** Bootstrapping packages moved to (gnu packages commencement) modules
1398
1399 ** Bugs fixed
1400
1401 *** ‘guix-daemon’ now really deduplicates store items by default
1402
1403 Deduplication means that identical files found in /gnu/store are stored only
1404 once, using hard links. This feature was wrongfully disabled, and is now
1405 enabled by default. The former ‘--disable-store-optimization’ option has been
1406 renamed to ‘--disable-deduplication’.
1407
1408 *** ‘guix-daemon’ no longer uses ‘vfork’
1409
1410 This could cause problems with ancient Linux kernel.
1411
1412 *** Fixed compilation of ‘gccgo’ (<http://bugs.gnu.org/18101>)
1413 *** 'make clean' doesn't delete os-config.tmpl (<http://bugs.gnu.org/18243>)
1414 *** Fix handling of periods by fill-paragraph (<http://bugs.gnu.org/17468>)
1415 *** Produce a top-level Info 'dir' file (<http://bugs.gnu.org/18305>)
1416 *** guix offload ignores unreachable machines (<http://bugs.gnu.org/18070>)
1417 *** guix offload: Ignore EEXIST when registering a .drv as a GC root
1418 (<http://bugs.gnu.org/18115>)
1419 *** perl-tk: Build sequentially (<http://bugs.gnu.org/18262>)
1420 *** download: Use the 'SERVER NAME' TLS extension when possible
1421 (<http://bugs.gnu.org/18526>)
1422 *** libdaemon: Add alternate source URLs (<http://bugs.gnu.org/18639>)
1423 *** icu4c: Reinstate RUNPATH on shared libraries
1424 (<http://bugs.gnu.org/18695>)
1425 *** nss-mdns: Add alternate source URLs (<http://bugs.gnu.org/18704>)
1426 *** download: Add "Accept: */*" to the HTTP headers
1427 (<http://bugs.gnu.org/18768>)
1428 *** guix-register: Do not attempt to create NIX_STORE_DIR
1429 (<http://bugs.gnu.org/18689>)
1430 *** Allow Linux-libre to find our 'modprobe' command
1431 (<http://bugs.gnu.org/18525>)
1432 *** man-pages: Build sequentially (<http://bugs.gnu.org/18701>)
1433 *** Fix intermittent test failures involving GC (<http://bugs.gnu.org/18935>)
1434 *** guix import: pypi: Gracefully handle non-existent packages
1435 (<http://bugs.gnu.org/18831>)
1436 *** Make sure the shared library has the '.so' extension
1437 (<http://bugs.gnu.org/18521>)
1438 *** pull: Use the build procedure provided by the newly-downloaded Guix.
1439 (<http://bugs.gnu.org/18534>)
1440 *** WindowMaker no longer pollutes $PATH (<http://bugs.gnu.org/18698>)
1441
1442 ** Native language support
1443 *** New translation: cs (Czech)
1444 *** Updated translations: de, sr, vi
1445
1446 * Changes in 0.7 (since 0.6)
1447 ** Package management
1448 *** Binaries for mips64el-linux now available from hydra.gnu.org
1449
1450 These come in addition to the x86_64-linux and i686-linux binaries already
1451 provided, thanks to our generous donor and friendly admins. See
1452 “Substitutes” in the manual.
1453
1454 *** ‘guix package’ has a new ‘--show’ option
1455 *** ‘guix refresh’ has a new ‘--list-dependent’ option
1456
1457 ** Programming interfaces
1458 *** New (guix gexp) module, which implements “G-expressions”
1459
1460 G-expressions are a new mechanism to embed build-side code in host-side
1461 code. See “G-Expressions” in the manual.
1462
1463 *** (gnu system) and related modules now use G-expressions
1464
1465 This greatly simplifies code, and guarantees that build code carries
1466 references to the packages or derivations it uses.
1467
1468 *** ‘build-expression->derivation’ is deprecated in favor of G-expressions
1469 *** The (gnu system) module has been largely augmented and factorized
1470 *** New (guix build vm) module, support for virtual machine images
1471 *** New (guix build activation) module, for “system activation”
1472 *** New (guix build syscalls) module
1473 *** New (guix build install) and module for whole system installation
1474 *** New (gnu system install) module, for the installation system
1475 *** New (gnu system file-systems) module, for ‘file-system’ declarations
1476 *** New (gnu) module, which aggregates common (gnu …) modules
1477 *** ‘service’ records now have an optional ‘activate’ field
1478
1479 This allows services to specify code to run at system activation time.
1480
1481 ** GNU distribution
1482 *** An image to install the GNU system from a USB stick is provided
1483
1484 This is the first time an installation image is provided. See “System
1485 Installation” in the manual for details. This is work in progress as noted
1486 in “Limitations”. Your feedback and help are welcome!
1487
1488 *** Support for more parameters in ‘operating-system’ declarations
1489
1490 Operating system declarations can now provide a list of file systems, a list
1491 of setuid programs, bootloader options, and more. See “System Configuration”
1492 in the manual.
1493
1494 *** ‘guix system’ supports more actions
1495
1496 Newly supported actions are ‘init’, ‘build’, ‘reconfigure’, and ‘disk-image’.
1497 See “Invoking guix system” in the manual.
1498
1499 *** User accounts and groups are created at system activation time
1500 *** Virtual machine support uses para-virtualized devices
1501 *** GCC package now has an additional ‘lib’ output, for run-time support libs
1502 *** GLib package now has a separate “bin” output (<http://bugs.gnu.org/17853>)
1503 *** 134 new packages
1504
1505 abbaye, aegis, attica, babl, barcode, behave, btar, busybox, ccache, ccrtp,
1506 chess, clucene, cmatrix, commoncpp, conkeror, cook, cssc, datamash, diffstat,
1507 doxygen, dropbear, dtach, duplicity, e2fsck-static, exosip, fftw-openmpi,
1508 fish, gconf, gegl, gimp, gmsh, gnome-mime-data, gnome-vfs, gnumeric, goffice,
1509 gsegrafix, guile-opengl, guile-static-stripped, hdup, hwloc, inotify-tools,
1510 jrnl, kbd, kmod, lftp, libarchive, libart-lgpl, libbonobo, libbonoboui,
1511 libcroco, libdbusmenu-qt, libftdi, libglade, libgnome, libgnomecanvas,
1512 libgnomeprint, libgnomeprintui, libgnomeui, libgsf, libidl, libmcrypt,
1513 libmhash, librsvg, librsync, libsodium, libuv, libvpx, links, lzop, man-pages,
1514 maxima, mcrypt, mosh, mpg123, mplayer, mu, ncmpcpp, node, notmuch, numactl,
1515 offlineimap, openmpi, orbit2, osip, pangox-compat, perl-io-tty, petsc,
1516 petsc-complex, petsc-complex-openmpi, petsc-openmpi, pingus, podofo, protobuf,
1517 pt-scotch, python-enum34, python-keyring, python-lockfile, python-mock,
1518 python-parse, python-parse-type, python-parsedatetime, python-pycrypto,
1519 python-six, python-tzlocal, python2-lockfile, python2-mock, qjson, qrencode,
1520 rasqal, rdiff-backup, rdup, redland, rottlog, scotch, sipwitch, sshfs-fuse,
1521 strigi, sudo, superlu, superlu-dist, talkfilters, talloc, tcpdump, tinyproxy,
1522 transmission, ucommon, udev, vlc, vtk, wakelan, wireless-tools,
1523 wpa-supplicant, xboard, youtube-dl
1524
1525 *** 87 package updates
1526
1527 bitlbee-3.2.2, cursynth-1.5, ddrescue-1.18.1, dfc-3.0.4, dmd-0.2,
1528 docbook-xml-4.3, docbook-xml-4.4, docbook-xsl-1.78.1, dvdisaster-0.72.6,
1529 ffmpeg-2.3, fftw-3.3.4, fftwf-3.3.4, flac-1.3.0, gawk-4.1.1, gcc-4.7.4,
1530 gcc-4.8.3, gcc-4.8.3, gcc-4.9.1, gcc-cross-mips64el-linux-gnuabi64-4.8.3,
1531 gcc-objc++-4.8.3, gcc-objc-4.8.3, gcc-stripped-tarball-4.8.3,
1532 gcc-toolchain-4.8.3, gcc-toolchain-4.9.1, gccgo-4.8.3, gdb-7.7.1,
1533 gettext-0.19.2, gfortran-4.8.3, glib-2.40.0, global-6.3, gmp-6.0.0a,
1534 gnupg-1.4.18, gnupg-2.0.25, gnutls-3.2.15, gp2c-0.0.9pl1, grep-2.20,
1535 gst-plugins-base-1.0.10, gstreamer-0.10.36, gtk+-3.10.1, gtkmm-2.24.2,
1536 guile-2.0.11, guile-2.0.11, guix-0.6, guix-0.6.0ae8c15, htop-1.0.3,
1537 icu4c-53.1, imagemagick-6.8.9-0, json-c-0.12, libdrm-2.4.33, libgc-7.2e,
1538 libgcrypt-1.5.3, libgpg-error-1.13, libjpeg-8d, libmicrohttpd-0.9.37,
1539 libogg-1.3.2, libotr-4.0.0, libtasn1-3.6, libvorbis-1.3.4, lightning-2.0.4,
1540 linux-libre-3.15.6, lua-5.1.5, lua-5.2.3, mcron-1.0.8, moe-1.6, nano-2.3.6,
1541 neon-0.29.6, nettle-3.0, openssl-1.0.1h, parallel-20140722, pari-gp-2.7.1,
1542 pspp-0.8.3, python-2.7.6, python-dateutil-2.2, python2-dateutil-2.2,
1543 qemu-2.0.0, qemu-headless-2.0.0, qt-4.8.6, qt-5.2.1, readline-6.2,
1544 screen-4.2.1, soprano-2.9.4, texinfo-5.2, texlive-2014, tor-0.2.4.22,
1545 wdiff-1.2.2, xorriso-1.3.8, xterm-304
1546
1547 ** Native language support
1548 *** New translations: de (German), and hu (Hungarian)
1549 *** Updated translations: eo, pt_BR, sr, vi
1550 *** Package descriptions moved from the ‘guix’ text domain to ‘guix-packages’
1551 ** Bugs fixed
1552 *** Downloads are now faster (<http://bugs.gnu.org/15368>)
1553 *** ‘guix authenticate’ properly writes signatures to stdout
1554 (<http://bugs.gnu.org/17312>)
1555 *** Progress report of downloads is now properly displayed
1556 *** Error reporting of pk-crypto errors has been improved
1557 *** The 'patches' field now works for origins with no extension
1558 *** Synchronization and GC issues fixed in the offload hook
1559 *** (guix ftp-client) emits USER commands suitable for all servers
1560
1561 * Changes in 0.6 (since 0.5)
1562 ** Package management
1563 *** Default store directory changed to /gnu/store
1564
1565 Although it is still possible to configure Guix to use the old store
1566 directory, we recommend that you start with a fresh install to /gnu/store.
1567
1568 *** Substitutes from hydra.gnu.org must now be signed and authorized
1569 *** Support for offloading builds to other Guix machines over SSH
1570 *** New ‘guix archive’ command
1571 *** New ‘guix system’ command; it can currently build VM images
1572 *** ‘guix package’ accepts several arguments after -i, -r, and -u
1573 *** Updating a profile with ‘guix package’ is now noticeably faster
1574 *** ‘guix build’ can override a package’s source with the new ‘--with-source’
1575 *** ‘guix build’ has a new ‘--no-build-hook’ option
1576 *** ‘guix’ commands that build packages have a common set of options
1577 *** ‘guix hash’ has a new ‘--recursive’ option
1578 *** Daemon no longer bind-mounts the host’s /dev (improves reproducibility)
1579 ** Programming interfaces
1580 *** New (guix pk-crypto) and (guix pki) modules for public key cryptography
1581 *** New #:local-build? parameter for derivations that shouldn’t be offloaded
1582 *** (gnu system vm) has procedures to build VMs that share the host’s store
1583 *** New ‘text-file*’ procedure in (guix monads)
1584 *** System service definitions are now provided by the (guix services) modules
1585 *** New X and SLiM services in (gnu services xorg)
1586 *** New (guix git-download) and (guix svn-download) for git/svn checkouts
1587 ** GNU distribution
1588 *** 91 new packages
1589
1590 a2ps, asciidoc, aspell-dict-en, aspell-dict-eo, aspell-dict-es,
1591 aspell-dict-fr, aumix, bitlbee, bogofilter, boost, calcurse, clusterssh,
1592 corkscrew, cursynth, docbook-xml, docbook-xsl, elfutils, enscript, fftwf,
1593 fltk, fuse, gcc-toolchain, giflib, glade, gmime, gnome-desktop, gnubg, gnubik,
1594 gnumach-headers, gnunet, gnuplot, gnurl, gphoto2, gtkglext, guile-json,
1595 guile-reader-for-guile_2.0.11, gxmessage, hdf5, hurd-headers, inkscape, iotop,
1596 isc-dhcp, iso-codes, jnettop, libatomic-ops, libexif, libgphoto2, libmpcdec,
1597 libmpdclient, libotr, libpcap, libpeas, libpipeline, libtirpc, libwebsockets,
1598 ltrace, luajit, lynx, man-db, mc, mig, miniupnpc, moe, mpc123, mpd, ncdc,
1599 ncdu, ncmpc, neon, neon, octave, opus, paperkey, patchutils, perl-tk,
1600 perl-x11-protocol, pinentry, python2-element-tree, python2-pybugz, quilt,
1601 source-highlight, stalonetray, trueprint, ttf-dejavu, unionfs-fuse,
1602 unionfs-fuse-static, uucp, vera, windowmaker, xapian, xterm
1603
1604 *** 90 package updates
1605
1606 apl-1.3, autoconf-2.68, automake-1.14.1, bash-4.3, bash-light-4.3,
1607 bigloo-4.1a, binutils-2.24, binutils-static-stripped-tarball-2.24,
1608 coreutils-8.22, curl-7.35.0, ed-1.10, ffmpeg-2.1.4, file-5.18, freeipmi-1.4.1,
1609 gcc-4.8.2, gcc-4.8.2, gdb-7.7, gdbm-1.11, gettext-0.18.3.2, glib-2.39.1,
1610 glibc-2.19, glibc-stripped-tarball-2.19, global-6.2.12, glpk-4.54,
1611 gnu-pw-mgr-1.2, gnupg-1.4.16, gnutls-3.2.12, gp2c-0.0.8pl1, grep-2.18,
1612 gst-plugins-base-0.10.36, gstreamer-1.0.10, gtk+-3.10.1, gtkmm-2.24.2,
1613 guile-2.0.11, guile-ssh-0.6.0, guile-static-stripped-tarball-2.0.11,
1614 guile-wm-1.0, guile-xcb-1.3, guix-0.5, help2man-1.45.1, icu4c-52.1,
1615 imagemagick-6.8.8-10, inetutils-1.9.2, lapack-3.5.0, libcdio-0.92,
1616 libdrm-2.4.46, libextractor-1.3, libgc-7.2e, libgc-7.4.0, libgcrypt-1.6.1,
1617 libjpeg-9, libmicrohttpd-0.9.34, libssh-0.6.3, libtasn1-3.4, lightning-2.0.3,
1618 linux-libre-3.13.7, mpc-1.0.2, mutt-1.5.23, net-base-5.2, ocrad-0.23,
1619 openssh-6.6p1, openssl-1.0.1g, parallel-20140322, pari-gp-2.7.0, pspp-0.8.2,
1620 pulseaudio-5.0, python-2.7.6, python-3.3.5, python-wrapper-3.3.5,
1621 python2-pysqlite-2.6.3a, qemu-1.7.1, qemu-headless-1.7.1,
1622 qemu-with-multiple-smb-shares-1.7.1, qt-4.8.5, qt-5.2.0, readline-6.3,
1623 recutils-1.7, slim-1.3.6, sqlite-3.8.4.3, subversion-1.7.14, texinfo-4.13a,
1624 tor-0.2.4.21, tzdata-2014a, units-2.11, valgrind-3.9.0, vim-7.4, wget-1.15,
1625 xnee-3.18, xorriso-1.3.6.pl01, zile-2.4.11
1626
1627 *** New ‘gcc-toolchain’ meta-package, makes it easy to install a GCC tool chain
1628 *** libc’s Info manual is now installed
1629 *** Binutils is built with --enable-deterministic-archives
1630 *** Packages that populated man/man* now populate share/man/man*
1631 *** Many other packaging improvements
1632 ** Bugs fixed
1633 *** ‘guix pull’ consumes less memory, compiles in parallel
1634 *** ‘guix package --list-*’ gracefully handles EPIPE when used in a pipeline
1635 *** ‘guix package’ handles collisions between a symlink and a directory
1636 (http://bugs.gnu.org/17083)
1637 *** HTTP downloads provide a ‘User-Agent’ field (http://bugs.gnu.org/16703)
1638 *** ‘guix package’ no longer shows misleading installed package number
1639 (http://bugs.gnu.org/16484)
1640 *** Manual suggests ‘useradd --system’ (http://bugs.gnu.org/16289)
1641 *** Python is built with ctypes support (http://bugs.gnu.org/16569)
1642 *** HTTP/TLS connection not terminated properly (http://bugs.gnu.org/14884)
1643 *** Gracefully handle poorly behaved HTTP servers (http://bugs.gnu.org/15733)
1644
1645 * Changes in 0.5 (since 0.4)
1646 ** Package management
1647 *** GNU package descriptions synchronized with the ‘gnumaint’ repository
1648
1649 In addition to synopses, descriptions of GNU packages are now kept in sync
1650 with the ‘gnumaint’ repository, which is the canonical place for GNU package
1651 meta-data.
1652
1653 ** Programming interfaces
1654 *** Patches are now listed as part of ‘origin’
1655
1656 The ‘origin’ form supports two new fields: ‘patches’ (list of patches), and
1657 ‘snippet’ (code snippet to modify the source.) These are applied when running
1658 ‘guix build --source’. See “Defining Packages” in the manual.
1659
1660 *** New (guix monads) monadic interface to operate on the store
1661
1662 See “The Store Monad” in the manual. The (gnu system …) modules have been
1663 rewritten to use this monadic interface.
1664
1665 *** New (guix profiles) module
1666
1667 It provides an API for dealing with profiles, as with the ‘guix package’
1668 command.
1669
1670 *** New (gnu system) module
1671
1672 This module provides a generic way to describe the system’s configuration,
1673 and to instantiate it, regardless of the final medium (QEMU image, etc.)
1674 See “System Configuration” in the manual.
1675
1676 This is work in progress. Send feedback to guix-devel@gnu.org!
1677
1678 *** ‘build-expression->derivation’ uses more parameters
1679
1680 Some positional parameters have been changed to keyword parameters.
1681 See “Derivations” in the manual.
1682
1683 ** GNU distribution
1684 *** New port to the Loongson MIPS64 processors, n32 ABI (‘mips64el-linux’)
1685
1686 Bootstrap binaries have been built for that architecture, and several
1687 Loongson-specific patches not yet available upstream have been applied to core
1688 packages. See “GNU Distribution” and “Porting” in the manual.
1689
1690 Pre-built binaries are not yet available via hydra.gnu.org, so Guix will
1691 build from source on this platform.
1692
1693 *** 110 new packages
1694
1695 acct, alive, alsa-utils, apl, at-spi2-atk, at-spi2-core, atkmm, autogen,
1696 automoc4, brasero, bridge-utils, cairomm, catkin, complexity, evince, ffmpeg,
1697 fftw, ftgl, gcc-objc, gcc-objc++, gccgo, gcl, gfortran, glibmm, glpk,
1698 gnome-icon-theme, gnu-pw-mgr, gp2c, gpgme, gsettings-desktop-schemas, gtkmm,
1699 gtksourceview, guile-ssh, guile-wm, gvpe, hicolor-icon-theme, httpd, icecat,
1700 icon-naming-utils, json-c, lapack, libcanberra, libcap, libgnome-keyring,
1701 libmikmod, libnl, libnotify, libsamplerate, libsigc++, libsndfile, libssh,
1702 libtheora, libxkbcommon, mercurial, mtools, netcat, pangomm, parallel,
1703 pavucontrol, pciutils, pem, perl-encode-locale, perl-file-list,
1704 perl-file-listing, perl-html-parser, perl-html-tagset, perl-http-cookies,
1705 perl-http-daemon, perl-http-date, perl-http-message, perl-http-negotiate,
1706 perl-io-html, perl-libwww, perl-libxml, perl-lwp-mediatypes, perl-net-http,
1707 perl-uri, perl-www-robotrules, perl-xml-dom, perl-xml-regexp, perl-xml-simple,
1708 phonon, powertop, pulseaudio, python2-dogtail, python2-empy, qemu-headless,
1709 qt, qt, raptor2, scons, sdl, sdl-gfx, sdl-image, sdl-mixer, sdl-net, sdl-ttf,
1710 sdl2, serveez, shared-mime-info, sharutils, skribilo, slim, soprano, swig,
1711 xcb-util, xcb-util-image, xcb-util-keysyms, xcb-util-renderutil, xcb-util-wm
1712
1713 *** 47 package updates
1714
1715 atk 2.10.0, bison 3.0.2, cmake 2.8.12, dmd 0.1, freeipmi 1.3.3, gcc 4.8.2,
1716 gcc 4.8.2, gcc-cross-mips64el-linux-gnuabi64 4.8.2, gcc-stripped-tarball 4.8.2,
1717 gdb 7.6.2, gettext 0.18.3.1, glib 2.38.0, global 6.2.9, gmp 5.1.3,
1718 gnupg 2.0.22, gobject-introspection 1.38.0, grep 2.15, gsl 1.16,
1719 gtk+ 2.24.21, gtk+ 3.10.1, guile 2.0.9, guile 2.0.9, guile-xcb 1.2,
1720 harfbuzz 0.9.22, hello 2.9, iproute2 3.12.0, libdrm 2.4.46,
1721 libextractor 1.2, libjpeg 9, libmicrohttpd 0.9.32, lightning 2.0.2,
1722 linux-libre 3.12, lzip 1.15, make 4.0, mit-krb5 1.11.3, pari-gp 2.5.5,
1723 pixman 0.32.4, python 3.3.2, qemu 1.6.1,
1724 qemu-with-multiple-smb-shares 1.6.1, rcs 5.9.2, recutils 1.6, rsync 3.1.0,
1725 tar 1.27.1, texinfo 5.2, units 2.02, xorriso 1.3.2
1726
1727 *** Packages are now built with GCC 4.8.2 by default (was 4.7.3)
1728
1729 ** Native language support
1730 *** New ‘sr’ (Serbian) translation
1731 *** New ‘vi’ (Vietnamese) translation
1732 *** Updated ‘pt_BR’ (Brazilian Portuguese) translation
1733 ** Bugs fixed
1734 *** ‘guix pull’ compiles Guix deterministically and correctly
1735
1736 Previously, the build environment was not cleared in between ‘compile-file’
1737 calls, leading to build errors due to Guile bug http://bugs.gnu.org/15602 .
1738
1739 *** ‘guix package’ allows removal of a specific package output
1740 (http://bugs.gnu.org/15756)
1741 *** ‘guix-daemon’ always sets umask to 022
1742 (http://lists.gnu.org/archive/html/bug-guix/2013-07/msg00033.html)
1743 *** Files referenced by environment variables are protected from GC
1744 *** Yet unbuilt packages get correctly installed (http://bugs.gnu.org/15283)
1745 *** ‘bootstrap-graph.{png,eps,pdf}’ built in srcdir (http://bugs.gnu.org/15640)
1746
1747 * Changes in 0.4 (since 0.3)
1748
1749 ** Package management
1750
1751 *** New ‘--list-generations’ and ‘--delete-generations’ options
1752
1753 The ‘guix package’ command has these two new options, which make it easier to
1754 deal with a profile’s generation. See “Invoking guix package” in the manual.
1755
1756 *** New ‘guix-register’ program
1757
1758 This program allows the meta-data of a new store to be initialized, by
1759 copying info from an existing store. It is mostly an internal tool.
1760
1761 ** Programming interfaces
1762
1763 *** New API to bootstrap Autotools-based packages
1764
1765 The (guix build-system gnu) has a new ‘dist-package’ procedure that takes a
1766 package object and source directory, and returns a new package object that
1767 runs ‘./bootstrap && make dist’ or anything similar.
1768
1769 *** ‘derivation’ and related procedures have a #:references-graphs parameter
1770
1771 This parameter instructs the build daemon to populate the derivation’s build
1772 tree with files containing the list of references of the given store files.
1773 This is useful to write code that copies a packages and all its dependencies
1774 to another storage device, such as a QEMU disk image.
1775
1776 *** Extended API to build a GNU system virtual machine image
1777
1778 The (gnu system vm) module has been augmented in many ways: the ‘qemu-image’
1779 procedure can now populate and initialize the image’s store; the new
1780 ‘system-qemu-image’ procedure returns a QEMU image that runs dmd as its init
1781 system, has ‘login’ running on several consoles, has a set of installed
1782 packages, and where Guix can be used.
1783
1784 New (gnu system …) modules have been added to handle the configuration of the
1785 various parts of a GNU/Linux system. For instance, (gnu system dmd) provides
1786 support for instantiating dmd services; (gnu system linux) helps with Linux
1787 PAM configuration; and so on.
1788
1789 *** <derivation> objects supersede .drv file names in the API
1790
1791 ‘derivation’ and similar procedures no longer return two values (a
1792 <derivation> and a .drv file name); they now return a single value, which is
1793 a <derivation> object. The <derivation> object embeds the corresponding .drv
1794 file name. See “Derivations” in the manual for details.
1795
1796 ** GNU distribution
1797
1798 *** 60 new packages
1799
1800 apr, apr-util, cdparanoia, dbus-glib, dfc, dmd, dvdisaster, exiv2, fetchmail,
1801 freefont-ttf, freeglut, geeqie, git, gkrellm, glu, gnome-doc-utils,
1802 gst-plugins-base, gstreamer, guile-cairo, guile-lib, guile-xcb, guix, htop,
1803 itstool, lame, libextractor, libmicrohttpd, lightning, lzip, mingetty, mutt,
1804 net-base, net-tools, ocrad, pspp, python-babel, python-dateutil, python-pytz,
1805 python-setuptools, python-simplejson, python-wrapper, python2-babel,
1806 python2-dateutil, python2-mechanize, python2-pyicu, python2-pysqlite,
1807 python2-pytz, python2-setuptools, python2-simplejson, qemu-system-initrd,
1808 qemu-with-multiple-smb-shares, ripperx, shadow, ttf-bitstream-vera, units,
1809 valgrind, xmlto, xnee, yasm
1810
1811 *** 27 package updates
1812
1813 bigloo 4.0b, cairo 1.12.16, ddrescue 1.17, fontconfig 2.10.93, fplll 4.0.4,
1814 gcc 4.7.3, gcc 4.7.3, glibc 2.18, glibc 2.18, glibc-stripped-tarball 2.18,
1815 gnupg 2.0.21, gnutls 3.2.4, guile 2.0.9, guile 2.0.9, harfbuzz 0.9.21,
1816 imagemagick 6.8.6-9, libdrm 2.4.46, libgcrypt 1.5.3, libjpeg 9, libksba 1.3.0,
1817 linux-libre 3.11, m4 1.4.17, mpfrcx 0.4.2, pari-gp 2.5.4, python 2.7.5, python
1818 3.3.2, texlive 2013
1819
1820 *** Fontconfig font search path made more convenient
1821
1822 Fontconfig, the library used by many graphical applications, such as those
1823 based on GTK+, now knows where to find the default set of fonts. Additional
1824 fonts installed in the user profile are automatically picked up.
1825
1826 *** More GUI applications
1827
1828 The ‘emacs’ and ‘racket’ packages are now linked against GTK+. New GTK+
1829 applications have been added (see above.)
1830
1831 *** Packaging guidelines
1832
1833 The documentation of packaging guidelines has been augmented. See the manual
1834 under “GNU Distribution”.
1835
1836 *** Support for Python 3 along with Python 2
1837
1838 Python 3 has been added to the distribution, and Python packages that support
1839 it are now built for both Python 2 and Python 3. See the “Python Modules”
1840 section of the manual for details.
1841
1842 ** Internationalization
1843
1844 Updated translations: eo.
1845
1846 ** Bugs fixed
1847
1848 *** Workarounds for Guile 2.0.5 now work on Debian derivatives
1849 *** The dependency graph image has correct size in PDF output
1850 *** 'ldd' now works correctly on x86_64
1851 *** Xorg server test suite no longer fails (http://bugs.gnu.org/15392)
1852 *** module-init-tools now builds (http://bugs.gnu.org/15182, http://bugs.gnu.org/15187)
1853 *** Hop 2.4 builds with newer Bigloo (http://bugs.gnu.org/15194)
1854
1855 * Changes in 0.3 (since 0.2)
1856
1857 ** Package management
1858
1859 *** Cross-compilation support
1860
1861 Guix can now cross-build packages. On the command-line, this is achieved with
1862 the new ‘--target’ command-line option of ‘guix build’. At the Scheme level,
1863 the guts of this is the ‘package-cross-derivation’ procedure. Core packages
1864 of the distribution can already be cross-compiled. See the manual for
1865 details.
1866
1867 *** New ‘--max-silent-time’ option for “guix build” and “guix package”
1868
1869 See the manual for details.
1870
1871 *** New ‘--fallback’ option for “guix build” and “guix package”
1872
1873 This option instructs to fall back to local builds when the substituter fails
1874 to download a substitute.
1875
1876 *** New ‘--requisites’ option for “guix gc”
1877
1878 See the manual for details.
1879
1880 *** New ‘--key-download’ option for “guix refresh”
1881
1882 See the manual for details.
1883
1884 ** Programming interfaces
1885
1886 *** New ‘package-cross-derivation’ procedure in (guix derivations)
1887
1888 See the manual for details.
1889
1890 *** New ‘%current-target-system’ SRFI-39 parameter
1891
1892 This parameter is like ‘%current-system’, but for cross-compilation. It
1893 allows code in package definitions (such as in the ‘arguments’ field) to know
1894 whether it is being cross-compiled, and what the target system is.
1895
1896 *** New (guix hash) module; new ‘open-sha256-port’ and ‘sha256-port’ procedures
1897
1898 This improves performance of SHA256 computations.
1899
1900
1901 ** GNU distribution
1902
1903 *** 33 new packages
1904
1905 alsa-lib, babel, cairo, cvs, gcal, gcc-cross-mips64el-linux-gnuabi64, gd,
1906 gdk-pixbuf, graphviz, grue-hunter, gtk+, gts, harfbuzz, imagemagick, iproute2,
1907 iptables, libspectre, mpg321, noweb, pango, plotutils, privoxy, pytz, racket,
1908 rubber, rush, strace, tk, torsocks, unrtf, vc-dwim, wordnet, xlockmore
1909
1910 *** 25 package updates
1911
1912 automake 1.14, ed 1.9, freeipmi 1.2.8, gawk 4.1.0, gcc 4.8.1, gettext 0.18.3,
1913 glib 2.37.1, gmp 5.1.2, gnutls 3.2.1, gzip 1.6, help2man 1.43.3, libapr 1.4.8,
1914 libaprutil 1.5.2, libassuan 2.1.1, libffi 3.0.13, libgc 7.2d, libgpg-error
1915 1.12, libidn 1.28, libpng 1.5.17, lout 3.40, lsh 2.1, nettle 2.7.1, qemu
1916 1.5.1, tzdata 2013d, xorriso 1.3.0
1917
1918 *** Binary packages now available for i686-linux
1919
1920 The build farm at http://hydra.gnu.org now provides 32-bit GNU/Linux binaries
1921 (i686-linux), in addition to the x86_64-linux binaries. Both can be
1922 transparently used as substitutes for local builds on these platforms.
1923
1924 *** Debug info packages
1925
1926 Some packages now have a “debug” output containing debugging information. The
1927 “debug” output can be used by GDB, and can be installed separately from the
1928 other outputs of the package. See “Installing Debugging Files” in the manual.
1929
1930 *** Bootstrap binaries can be cross-compiled
1931
1932 The distribution can now be ported to new architectures (currently
1933 GNU/Linux-only) by cross-compiling the “bootstrap binaries”. See “Porting”
1934 in the manual.
1935
1936 *** Bootstrapping documented
1937
1938 See “Bootstrapping” in the manual, for information on how the GNU
1939 distribution builds “from scratch”.
1940
1941 ** Internationalization
1942
1943 New translations: eo, pt_BR.
1944
1945 ** Bugs fixed
1946 *** “guix --help” now works when using Guile 2.0.5
1947 *** Binary substituter multi-threading and pipe issues fixed
1948
1949 These could lead to random substituter crashes while substituting a binary.
1950 See commits 0332386 and 101d9f3 for details.
1951
1952 *** Binary substituter gracefully handles lack of network connectivity
1953
1954 *** Daemon properly handles rebuilds of multiple-output derivations
1955
1956 Previously it would fail when rebuilding a multiple-output derivation when
1957 some (but not all) of its outputs were already present. See
1958 http://lists.gnu.org/archive/html/bug-guix/2013-06/msg00038.html and
1959 https://github.com/NixOS/nix/issues/122 .
1960
1961 *** ‘guix package -i foo:out’ no longer removes other outputs of ‘foo’
1962
1963 Previously only the ‘out’ output of package ‘foo’ would be kept in the
1964 profile.
1965
1966 *** Replacement (srfi srfi-37) provided if the user’s one is broken
1967
1968 When the user’s (srfi srfi-37) is affected by http://bugs.gnu.org/13176 (Guile
1969 < 2.0.9), a replacement with the bug fix is provided. This bug would affect
1970 command-line argument processing in some cases.
1971
1972 * Changes in 0.2 (since 0.1)
1973
1974 ** Package management
1975
1976 *** Guix commands are now sub-commands of the “guix” program
1977
1978 Instead of typing “guix-package”, one now has to type “guix package”, and so
1979 on. This has allowed us to homogenize the user interface and initial program
1980 setup, and to allow commands to be upgradable through “guix pull”.
1981
1982 *** New “guix package --upgrade” option
1983
1984 As the name implies, this option atomically upgrades all the packages
1985 installed in a profile or the set of packages matching a given regexp.
1986 See “Invoking guix package” in the manual.
1987
1988 *** New “guix package --search” option
1989
1990 Performs a full text search in package synopses and descriptions, and returns
1991 the matching packages in recutils format. See “Invoking guix package” in the
1992 manual, for details.
1993
1994 *** New “guix pull” command
1995
1996 The command pulls the latest version of Guix–both the package management
1997 modules and the distribution. See the manual for details.
1998
1999 *** New binary substituter
2000
2001 The “substituter” mechanism allows pre-built binaries to be transparently
2002 downloaded instead of performing a build locally. Currently binaries are
2003 available for x86_64 Linux-based GNU systems from http://hydra.gnu.org. The
2004 distribution is continuously built and binaries are made available from there.
2005
2006 See http://hydra.gnu.org/jobset/gnu/master under “Job status” for the list of
2007 available binary packages.
2008
2009 *** New “guix refresh” command
2010
2011 The command is used by Guix maintainers. It automatically updates the
2012 distribution to the latest upstream releases of GNU software.
2013
2014 *** New “guix hash” command
2015
2016 Convenience command to compute the hash of a file. See the manual for
2017 details.
2018
2019 *** Nix daemon code updated
2020
2021 The daemon code from Nix, used by the ‘guix-daemon’ command, has been updated
2022 to current Nix ‘master’.
2023
2024 ** Programming interfaces
2025
2026 *** (guix download) now supports HTTPS, using GnuTLS
2027
2028 It allows package source tarballs to be retrieved over HTTPS.
2029
2030 *** New ‘native-search-path’ and ‘search-path’ package fields
2031
2032 Packages can define in their ‘native-search-path’ field environment variables
2033 that define search paths and need to be set for proper functioning of the
2034 package. For instance, GCC has ‘CPATH’ and ‘LIBRARY_PATH’ in its
2035 ‘native-search-path’, Perl has ‘PERL5LIB’, Python has ‘PYTHONPATH’, etc.
2036 These environment variables are automatically set when building a package that
2037 uses one of these.
2038
2039 *** Package inputs can be a function of the target system type
2040
2041 The ‘inputs’ field of a package can now be conditional on the value of
2042 (%current-system). This is useful for packages that take system-dependent
2043 tarballs as inputs, such as GNU/MIT Scheme.
2044
2045 *** New build systems
2046
2047 The ‘perl-build-system’, ‘python-build-system’, and ‘cmake-build-system’ have
2048 been added. They implement the standard build systems for Perl, Python, and
2049 CMake packages.
2050
2051 *** Tools to build Linux initrds, QEMU images, and more
2052
2053 The (gnu packages linux-initrd) module provides a procedure to build a Linux
2054 initrd (“initial RAM disk”). The initrd embeds Guile, which is used to
2055 evaluate the given expression. The example below returns an initrd that
2056 mounts the /proc file system and starts a REPL:
2057
2058 (expression->initrd
2059 '(begin
2060 (mkdir "/proc")
2061 (mount "none" "/proc" "proc")
2062 ((@ (system repl repl) start-repl))))
2063
2064 More examples in the linux-initrd.scm file.
2065
2066 Experimental interfaces to produce and use QEMU images are provided by the
2067 (gnu system vm) module. For instance, the
2068 ‘expression->derivation-in-linux-vm’ evaluates the given Scheme expression in
2069 a QEMU virtual machine running the Linux kernel and Guile.
2070
2071 ** GNU distribution
2072
2073 Many updates and additions have been made to the distribution. Here are the
2074 highlights.
2075
2076 *** Major updates
2077
2078 GCC 4.7.3 (the default) and GCC 4.8.0, Binutils 2.23.2, Guile 2.0.9,
2079 Coreutils 8.20, GDB 7.6, Texinfo 5.1.
2080
2081 *** Noteworthy new packages
2082
2083 TeXLive, Xorg, GNU GRUB, GNU Parted, QEMU and QEMU-KVM, Avahi, Bigloo,
2084 CHICKEN, Scheme48, Hugs, Python, Lua, Samba.