gnu: bootstrap: 'package-with-bootstrap-guile' uses 'eq?' memoization.
* gnu/packages/bootstrap.scm (package-with-bootstrap-guile): Use
'mlambdaq'.
gnu: commencement: Memoize 'linux-libre-headers-boot0'.
Fixes <https://bugs.gnu.org/30155>.
The effect can be seen in the package graph produced by:
guix graph -e '(@@ (gnu packages commencement) static-bash-for-glibc)'
This reduces the number of "duplicate" nodes in this graph, i.e.,
distinct package objects that correspond to the same derivation (objects
that are not 'eq?' but semantically equal.)
* gnu/packages/commencement.scm (linux-libre-headers-boot0): Make an
'mlambda' instead of a 'lambda'.
(hurd-core-headers-boot0): Ditto.
gnu: gcc@4.9: Fix libsanitizer cross-compilation.
* gnu/packages/gcc.scm (gcc@4.9)[source]: Add gcc-asan-missing-include patch.
gnu: gcc@4.9: Fix building with glibc@2.26.
* gnu/packages/gcc.scm (gcc@4.9)[source]: Add snippet to adjust
linux-unwind.h to changes in glibc.
* gnu/packages/commencement.scm (gcc-for-libstdc++): New variable.
(libstdc++-boot0): Inherit from gcc-for-libstdc++, update note.
gnu: thc-ipv6: Update to 3.4-0.4bb7257.
* gnu/packages/networking.scm (thc-ipv6): Update to 3.4-0.4bb7257.
[source]: Use git-fetch.
gnu: unionfs-fuse: Skip the test phase.
* gnu/packages/linux.scm (unionfs-fuse)[arguments]: Set #:tests? #f.
[native-inputs]: Remove python-pytest.
gnu: chez-scheme: Fix build issues against glibc 2.26.
* gnu/packages/chez.scm (chez-scheme)[source](modules, snippet): New
fields.
gnu: clang-runtime: Fix build issues against glibc 2.26.
* gnu/packages/patches/clang-runtime-asan-build-fixes.patch,
gnu/packages/patches/clang-runtime-esan-build-fixes.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/llvm.scm (clang-runtime-from-llvm): Add 'patches'
parameter and honor it.
(clang-runtime): Pass patch list.
(clang-runtime-3.9.1, clang-runtime-3.7, clang-runtime-3.6)
(clang-runtime-3.5): Likewise.
gnu: fontforge: Fix typo in comment.
* gnu/packages/fontutils.scm (fontforge): Fix comment.
gnu: perl-moosex-getopt: Update to 0.71.
* gnu/packages/perl.scm (perl-moosex-getopt): Update to 0.71.
gnu: python-graphql-relay: Skip the test phase.
* gnu/packages/python.scm (python-graphql-relay,
python2-graphql-relay)[arguments]: Set #:tests? #f
gnu: python-consul: Skip the test phase.
* gnu/packages/python.scm (python-consul, python2-consul)[arguments]:
Set #:tests? #f.
gnu: opencascade-oce: Fix build with glibc 2.26.
* gnu/packages/patches/opencascade-oce-glibc-2.26.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/maths.scm (opencascade-oce)[source]: Use it.
gnu: fontforge: Skip failing test.
* gnu/packages/fontutils.scm (fontforge)[arguments]: Add #:make-flags.
gnu: xmlsec: Update to 1.2.25.
* gnu/packages/xml.scm (xmlsec): Update to 1.2.25.
gnu: lightdm: Update to 1.24.0.
* gnu/packages/display-managers.scm (lightdm): Update to 1.24.0.
gnu: libgnomeui: Fix build with Python 3.6.
* gnu/packages/patches/libgnomeui-utf8.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/gnome.scm (libgnomeui)[source]: Use it.
gnu: java-classpathx-servletapi: Update to 3.0.1.
* gnu/packages/java.scm (java-classpathx-servletapi): Update to 3.0.1.
[arguments]: Switch to a java8 compiler, remove comment about not working with java8.
Signed-off-by: Chris Marusich <cmmarusich@gmail.com>
cuirass: Properly convert list of <license> objects.
Fixes a bug whereby we would 'write' raw <license> objects when they
were in a list.
* build-aux/cuirass/gnu-system.scm (entry->sexp-entry): Add recursive
case when O is a list.