guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] UNNAMED PROJECT branch, core-updates, updated. 79580eb698d07e4b213


From: Ludovic Courtès
Subject: [SCM] UNNAMED PROJECT branch, core-updates, updated. 79580eb698d07e4b21334ddfbcbcf620d27b5e41
Date: Sun, 06 Jan 2013 00:16:26 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "UNNAMED PROJECT".

The branch, core-updates has been updated
       via  79580eb698d07e4b21334ddfbcbcf620d27b5e41 (commit)
       via  4155e2a9093617e1d920e794aa848ac733064df0 (commit)
       via  7584f822bf076f4fc8aef9c1f4d48c179fe15fc3 (commit)
       via  312543dcfc2b19063f172bd10bb437d6bfe62cff (commit)
       via  d3b59727fb5a8a040bc9d5ca6ada1239ccf90c01 (commit)
       via  c2d771fd1da27cc6393c16e7e0ad10336e629f28 (commit)
       via  fdc78b72f8ba87a62c61f8acb6d7dbaf2b204fe0 (commit)
      from  2f8a123ed32eba2d63822327f86eadfba2c12143 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 79580eb698d07e4b21334ddfbcbcf620d27b5e41
Author: Ludovic Courtès <address@hidden>
Date:   Sun Jan 6 01:16:14 2013 +0100

    distro: Update bootstrap binaries to an nscd-less libc.
    
    Update bootstrap binaries following changes in commit d3b5972 ("Build
    glibc without nscd, and with static NSS modules.")
    
    * Makefile.am (distro/packages/bootstrap/x86_64-linux/guile-2.0.7.tar.xz,
      distro/packages/bootstrap/i686-linux/guile-2.0.7.tar.xz): Update hashes.
    * build-aux/download.scm (file-name->uri): Update URL.
    * distro/packages/bootstrap.scm (%bootstrap-coreutils&co,
      %bootstrap-binutils, %bootstrap-glibc, %bootstrap-gcc): Update URLs
      and hashes.

commit 4155e2a9093617e1d920e794aa848ac733064df0
Author: Ludovic Courtès <address@hidden>
Date:   Sat Jan 5 16:08:07 2013 +0100

    Update license headers of builder-side code.
    
    Change license headers with this script:
    
      (use-modules (guix build utils))
    
      (fluid-set! %default-port-encoding "UTF-8")
    
      (substitute* (cons "distro/packages/ld-wrapper.scm"
                     (find-files "guix/build" "\\.scm$"))
        (("^([[:graph:]]+) This file is part of Guix." _ comment-start)
         (string-append comment-start " This file is part of GNU Guix."))
        (("^([[:graph:]]+) Guix --- Nix package management.*" _ comment-start)
         (string-append comment-start
                    " GNU Guix --- Functional package management for GNU\n"))
        (("^([[:graph:]]+) Guix is " _ comment-start)
         (string-append comment-start " GNU Guix is "))
        (("^([[:graph:]]+) along with Guix." _ comment-start)
         (string-append comment-start " along with GNU Guix."))
        (("^([[:graph:]]+) Copyright \\(C\\)" _ comment-start)
         (string-append comment-start " Copyright ©")))
    
    * distro/packages/ld-wrapper.scm, guix/build/download.scm,
      guix/build/gnu-build-system.scm, guix/build/union.scm,
      guix/build/utils.scm: Update license headers.

commit 7584f822bf076f4fc8aef9c1f4d48c179fe15fc3
Author: Ludovic Courtès <address@hidden>
Date:   Sat Jan 5 16:02:32 2013 +0100

    utils: Add `which'.
    
    * guix/build/utils.scm (which): New procedure.
    
    * distro/packages/lsh.scm (lsh): Use `which' instead of `search-path'.
    * distro/packages/perl.scm (perl): Likewise.
    * distro/packages/attr.scm (attr): Likewise.

commit 312543dcfc2b19063f172bd10bb437d6bfe62cff
Author: Ludovic Courtès <address@hidden>
Date:   Sat Jan 5 15:46:08 2013 +0100

    distro: make-bootstrap: Add `%bootstrap-tarballs' package.
    
    * distro/packages/make-bootstrap.scm (%bootstrap-tarballs): New
      variable.

commit d3b59727fb5a8a040bc9d5ca6ada1239ccf90c01
Author: Ludovic Courtès <address@hidden>
Date:   Sat Jan 5 12:41:05 2013 +0100

    distro: make-bootstrap: Build glibc without nscd, and with static NSS 
modules.
    
    * distro/packages/make-bootstrap.scm (%glibc-with-relocatable-system):
      Rename to...
      (%glibc-for-bootstrap): ... this.  Add new configure flags.

commit c2d771fd1da27cc6393c16e7e0ad10336e629f28
Author: Ludovic Courtès <address@hidden>
Date:   Fri Jan 4 18:58:53 2013 +0100

    distro: make-bootstrap: Make the Coreutils smaller.
    
    * distro/packages/make-bootstrap.scm (%static-inputs)[coreutils]: Remove
      optional dependencies, except Perl; build with "-Os -g0"; disable
      tests.

commit fdc78b72f8ba87a62c61f8acb6d7dbaf2b204fe0
Author: Ludovic Courtès <address@hidden>
Date:   Fri Jan 4 17:42:59 2013 +0100

    distro: make-bootstrap: Fix arguments to gawk.
    
    * distro/packages/make-bootstrap.scm (%static-inputs)[gawk]: Use
      `substitute-keyword-arguments' to preserve the #:phases argument of
      GAWK.

-----------------------------------------------------------------------

Summary of changes:
 Makefile.am                        |    4 +-
 build-aux/download.scm             |    4 +-
 distro/packages/attr.scm           |    9 +---
 distro/packages/bootstrap.scm      |   26 +++++-----
 distro/packages/ld-wrapper.scm     |   12 +++---
 distro/packages/lsh.scm            |    5 +-
 distro/packages/make-bootstrap.scm |   87 +++++++++++++++++++++++++++++-------
 distro/packages/perl.scm           |   10 ++---
 guix/build/download.scm            |   12 +++---
 guix/build/gnu-build-system.scm    |   12 +++---
 guix/build/union.scm               |   12 +++---
 guix/build/utils.scm               |   20 ++++++---
 12 files changed, 134 insertions(+), 79 deletions(-)


hooks/post-receive
-- 
UNNAMED PROJECT



reply via email to

[Prev in Thread] Current Thread [Next in Thread]