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-156-ga423555


From: Ludovic Courtès
Subject: GNU Guixguix source archive branch, master, updated. v0.7-156-ga423555
Date: Wed, 03 Sep 2014 13:43:19 +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  a423555d3c4314f8347d75b050d7daf6e594281f (commit)
       via  fbb3555809966ee2dacfe16451fba0b963d1cdc0 (commit)
       via  e2f4b305d0b7cff1e19c7f67ea633ef8a971e712 (commit)
       via  8a9e21d1f719748213414343cd02ec113ebe90c1 (commit)
       via  548f7a8fa2a4745d0e35e175e201513857440991 (commit)
       via  141360b5b257715fdca2db4fc106b4220788ae06 (commit)
       via  b002e9d08eb909e9fa1a84b0feed1662dce0bd3f (commit)
      from  52bd0810a86396e961ca4c92f7e9e5ea0e8c547b (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 a423555d3c4314f8347d75b050d7daf6e594281f
Author: Ludovic Courtès <address@hidden>
Date:   Wed Sep 3 15:22:49 2014 +0200

    gnu: datamash: Fix license.
    
    * gnu/packages/datamash.scm (datamash)[license]: Change to GPL3+.

commit fbb3555809966ee2dacfe16451fba0b963d1cdc0
Author: Ludovic Courtès <address@hidden>
Date:   Wed Sep 3 15:13:44 2014 +0200

    linux-initrd: Factorize cpio archive creation.
    
    * gnu/build/linux-initrd.scm: New file.
    * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
    * gnu/system/linux-initrd.scm (expression->initrd): Use (gnu build
      linux-initrd) and 'write-cpio-archive' instead of the inlined code.

commit e2f4b305d0b7cff1e19c7f67ea633ef8a971e712
Author: Ludovic Courtès <address@hidden>
Date:   Wed Sep 3 14:19:51 2014 +0200

    Move part of (gnu build linux-boot) to (gnu build file-systems).
    
    * gnu/build/linux-boot.scm (%ext2-endianness, %ext2-sblock-magic,
      %ext2-sblock-creator-os, %ext2-sblock-uuid, %ext2-sblock-volume-name,
      read-ext2-superblock, ext2-superblock-uuid,
      ext2-superblock-volume-name, disk-partitions,
      partition-label-predicate, find-partition-by-label,
      canonicalize-device-spec, MS_RDONLY, MS_NOSUID, MS_NODEV, MS_NOEXEC,
      MS_BIND, MS_MOVE, bind-mount, check-file-system,
      mount-flags->bit-mask, mount-file-system): Move to...
    * gnu/build/file-systems.scm: ... here.  New file.
    * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
    * gnu/services/base.scm: Use (gnu build file-systems).
    * gnu/services/dmd.scm (dmd-configuration-file): Likewise.
    * gnu/system.scm (operating-system-activation-script): Likewise.
    * gnu/system/linux-initrd.scm (base-initrd): Likewise.
    * gnu/system/vm.scm (expression->derivation-in-linux-vm): Likewise.

commit 8a9e21d1f719748213414343cd02ec113ebe90c1
Author: Ludovic Courtès <address@hidden>
Date:   Wed Sep 3 11:14:12 2014 +0200

    Rename (gnu build linux-initrd) to (gnu build linux-boot).
    
    * gnu/build/linux-initrd.scm: Rename to...
    * gnu/build/linux-boot.scm: ... this.
    * gnu-system.am (GNU_SYSTEM_MODULES): Adjust accordingly.
    * gnu/build/activation.scm, gnu/build/vm.scm, gnu/services/base.scm,
      gnu/services/dmd.scm, gnu/system.scm, gnu/system/linux-initrd.scm,
      gnu/system/vm.scm: Adjust accordingly.

commit 548f7a8fa2a4745d0e35e175e201513857440991
Author: Ludovic Courtès <address@hidden>
Date:   Wed Sep 3 10:47:05 2014 +0200

    Move operating system helpers from (guix build …) to (gnu build …).
    
    * guix/build/activation.scm, guix/build/install.scm,
      guix/build/linux-initrd.scm, guix/build/vm.scm: Move to...
    * gnu/build: ... here.
    * Makefile.am (MODULES): Remove the above guix/build/ files.
    * gnu-system.am (GNU_SYSTEM_MODULES): Add the above gnu/build/ files
      here.
    * gnu/services/base.scm, gnu/services/dmd.scm, gnu/system.scm,
      gnu/system/linux-initrd.scm, gnu/system/vm.scm,
      guix/scripts/system.scm: Adjust to the new module names.

commit 141360b5b257715fdca2db4fc106b4220788ae06
Author: Ludovic Courtès <address@hidden>
Date:   Wed Sep 3 10:41:13 2014 +0200

    doc: Mention 'guix lint' and '--list-dependent' in 'HACKING'.
    
    * HACKING (Submitting Patches): Mention 'guix lint' and 'guix refresh
      --list-dependent'.

commit b002e9d08eb909e9fa1a84b0feed1662dce0bd3f
Author: Ludovic Courtès <address@hidden>
Date:   Wed Sep 3 09:01:28 2014 +0200

    guix lint: Remove "guix lint: " prefix from warnings.
    
    This allows editors to parse warnings correctly.
    
    * guix/scripts/lint.scm (emit-warning): Use 'format' instead of
      'warning', to avoid the "guix lint: " prefix in messages.
    * tests/lint.scm (call-with-warnings): Indent.

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

Summary of changes:
 HACKING                            |    7 +
 Makefile.am                        |    4 -
 gnu-system.am                      |   18 +-
 {guix => gnu}/build/activation.scm |    4 +-
 gnu/build/file-systems.scm         |  299 +++++++++++++++
 {guix => gnu}/build/install.scm    |    3 +-
 gnu/build/linux-boot.scm           |  445 +++++++++++++++++++++++
 gnu/build/linux-initrd.scm         |   70 ++++
 {guix => gnu}/build/vm.scm         |    6 +-
 gnu/packages/datamash.scm          |    2 +-
 gnu/services/base.scm              |    2 +-
 gnu/services/dmd.scm               |    4 +-
 gnu/system.scm                     |    9 +-
 gnu/system/linux-initrd.scm        |   50 +--
 gnu/system/vm.scm                  |   13 +-
 guix/build/linux-initrd.scm        |  702 ------------------------------------
 guix/scripts/lint.scm              |    8 +-
 guix/scripts/system.scm            |    2 +-
 tests/lint.scm                     |    8 +-
 19 files changed, 877 insertions(+), 779 deletions(-)
 rename {guix => gnu}/build/activation.scm (99%)
 create mode 100644 gnu/build/file-systems.scm
 rename {guix => gnu}/build/install.scm (98%)
 create mode 100644 gnu/build/linux-boot.scm
 create mode 100644 gnu/build/linux-initrd.scm
 rename {guix => gnu}/build/vm.scm (98%)
 delete mode 100644 guix/build/linux-initrd.scm


hooks/post-receive
-- 
guix source archive



reply via email to

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