guix-commits
[Top][All Lists]
Advanced

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

GNU Guixguix source archive branch, master, updated. v0.7-121-gc233721


From: Ludovic Courtès
Subject: GNU Guixguix source archive branch, master, updated. v0.7-121-gc233721
Date: Thu, 28 Aug 2014 09:38:29 +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 "guix source archive".

The branch, master has been updated
       via  c23372131dd665791e08772ba29a609bcf6b9d80 (commit)
       via  12507a3ee66e409d521b0b9950dd088fa609aeee (commit)
       via  49710cea4c71256815505a3af633235457839844 (commit)
       via  bdb36958fb50fa5d9fb8b79a32a41fa74a619563 (commit)
      from  5c3eb14e072de2549e89073b002ac072fd4b35dc (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 c23372131dd665791e08772ba29a609bcf6b9d80
Author: Ludovic Courtès <address@hidden>
Date:   Thu Aug 28 11:38:12 2014 +0200

    gnu: libwebsockets: Update to 1.3.
    
    * gnu/packages/web.scm (libwebsockets): Update to 1.3.  Switch to
      CMAKE-BUILD-SYSTEM.  Remove #:phases parameter and add #:tests?.
      Remove AUTOCONF, AUTOMAKE, and LIBTOOL from 'native-inputs'.

commit 12507a3ee66e409d521b0b9950dd088fa609aeee
Author: Ludovic Courtès <address@hidden>
Date:   Thu Aug 28 10:09:28 2014 +0200

    gnu: Add Guile-Charting.
    
    * gnu/packages/guile.scm (guile-charting): New variable.

commit 49710cea4c71256815505a3af633235457839844
Author: Ludovic Courtès <address@hidden>
Date:   Thu Aug 28 10:06:48 2014 +0200

    gnu: guile-cairo: Propagate Cairo.
    
    * gnu/packages/gtk.scm (guile-cairo): Move CAIRO to 'propagated-inputs'.

commit bdb36958fb50fa5d9fb8b79a32a41fa74a619563
Author: Ludovic Courtès <address@hidden>
Date:   Wed Aug 27 00:25:17 2014 +0200

    gnu: Split (gnu packages base), adding (gnu packages commencement).
    
    * gnu/packages/base.scm (gnu-make-boot0, diffutils-boot0,
      findutils-boot0, %boot0-inputs, nix-system->gnu-triplet, boot-triplet,
      binutils-boot0, gcc-boot0, perl-boot0, linux-libre-headers-boot0,
      texinfo-boot0, %boot1-inputs, glibc-final-with-bootstrap-bash,
      cross-gcc-wrapper, static-bash-for-glibc, glibc-final,
      gcc-boot0-wrapped, %boot2-inputs, binutils-final, libstdc++,
      gcc-final, ld-wrapper-boot3, %boot3-inputs, bash-final, %boot4-inputs,
      guile-final, gnu-make-final, ld-wrapper, coreutils-final, grep-final,
      %boot5-inputs, %final-inputs, canonical-package, gcc-toolchain,
      gcc-toolchain-4.8, gcc-toolchain-4.9): Move to...
    * gnu/packages/commencement.scm: ... here.  New file.
    * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
    * build-aux/check-final-inputs-self-contained.scm: Adjust accordingly.
    * gnu/packages/cross-base.scm: Likewise.
    * gnu/packages/make-bootstrap.scm: Likewise.
    * guix/build-system/cmake.scm (cmake-build): Likewise.
    * guix/build-system/gnu.scm (standard-packages, gnu-build,
      gnu-cross-build): Likewise.
    * guix/build-system/perl.scm (perl-build): Likewise.
    * guix/build-system/python.scm (python-build): Likewise.
    * guix/build-system/trivial.scm (guile-for-build): Likewise.
    * guix/download.scm (url-fetch): Likewise.
    * guix/gexp.scm (default-guile): Likewise.
    * guix/git-download.scm (git-fetch): Likewise.
    * guix/monads.scm (run-with-store): Likewise.
    * guix/packages.scm (default-guile): Likewise.
    * guix/scripts/package.scm (guix-package): Likewise.
    * guix/scripts/refresh.scm: Likewise.
    * guix/svn-download.scm (svn-fetch): Likewise.
    * tests/builders.scm (%bootstrap-inputs, %bootstrap-search-paths):
      Likewise.
    * tests/packages.scm ("GNU Make, bootstrap"): Likewise.
    * tests/guix-package.sh: Likewise.
    * gnu/services/base.scm: Use 'canonical-package' instead of xxx-final.
    * gnu/services/xorg.scm: Likewise.
    * gnu/system/vm.scm: Likewise.
    * guix/scripts/pull.scm (guix-pull): Likewise.

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

Summary of changes:
 build-aux/check-final-inputs-self-contained.scm |    2 +-
 gnu-system.am                                   |    1 +
 gnu/packages/base.scm                           |  720 +---------------------
 gnu/packages/commencement.scm                   |  759 +++++++++++++++++++++++
 gnu/packages/cross-base.scm                     |    1 +
 gnu/packages/gtk.scm                            |    4 +-
 gnu/packages/guile.scm                          |   32 +
 gnu/packages/make-bootstrap.scm                 |    1 +
 gnu/packages/web.scm                            |   29 +-
 gnu/services/base.scm                           |    4 +-
 gnu/services/xorg.scm                           |    7 +-
 gnu/system.scm                                  |    5 +-
 gnu/system/vm.scm                               |   10 +-
 guix/build-system/cmake.scm                     |    4 +-
 guix/build-system/gnu.scm                       |    8 +-
 guix/build-system/perl.scm                      |    4 +-
 guix/build-system/python.scm                    |    4 +-
 guix/build-system/trivial.scm                   |    4 +-
 guix/download.scm                               |    4 +-
 guix/gexp.scm                                   |    2 +-
 guix/git-download.scm                           |    2 +-
 guix/monads.scm                                 |    2 +-
 guix/packages.scm                               |    2 +-
 guix/scripts/package.scm                        |   12 +-
 guix/scripts/pull.scm                           |    5 +-
 guix/scripts/refresh.scm                        |    2 +-
 guix/svn-download.scm                           |    2 +-
 tests/builders.scm                              |    4 +-
 tests/guix-package.sh                           |    2 +-
 tests/packages.scm                              |    2 +-
 30 files changed, 862 insertions(+), 778 deletions(-)
 create mode 100644 gnu/packages/commencement.scm


hooks/post-receive
-- 
guix source archive



reply via email to

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