guix-commits
[Top][All Lists]
Advanced

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

[SCM] UNNAMED PROJECT branch, master, updated. 233e76769ae3a438bff7117c6


From: Ludovic Courtès
Subject: [SCM] UNNAMED PROJECT branch, master, updated. 233e76769ae3a438bff7117c68f2c88739a28db0
Date: Sat, 05 Jan 2013 23:53:45 +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, master has been updated
       via  233e76769ae3a438bff7117c68f2c88739a28db0 (commit)
       via  fe8ff0282779b57a27139ced6ac7b7bcc5658252 (commit)
       via  2646c55b03971774cf1760694415c4b83fbb3e44 (commit)
       via  7244a5f74e8a2f465b1ad04b5c4666457567c54e (commit)
       via  3441e164976c14ef8bf9a95ab4130ca25ac85e70 (commit)
      from  706d0641cfede33c70edaee5be49251388b8a000 (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 233e76769ae3a438bff7117c68f2c88739a28db0
Author: Ludovic Courtès <address@hidden>
Date:   Sun Jan 6 00:47:50 2013 +0100

    Update license headers.
    
    Change all license headers, except guix/build/* and ld-wrapper.scm, with
    this code:
    
      (use-modules (guix build utils)
               (srfi srfi-1))
    
      (fluid-set! %default-port-encoding "UTF-8")
    
      (substitute* (remove (lambda (f)
                         (or (string-contains f ".tar.")
                             (string-contains f ".git/")
                             (string-contains f ".so")
                             (string-suffix? ".o" f)
                             (string-suffix? ".a" f)
                             (string-suffix? ".go" f)
                             (string-suffix? ".pdf" f)
                             (string-suffix? ".png" f)
                             (string-suffix? ".info" f)
                             (equal? (basename f) "guix-daemon")
                             (equal? (basename f) "nix-setuid-helper")
                             (string-contains f "nix-upstream/")
                             (string-contains f "distro/packages/bootstrap/")))
                       (find-files "." "\\.[a-z]+$"))
        (("^([[: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 ©")))
    
    Change headers using C-style comments manually.

commit fe8ff0282779b57a27139ced6ac7b7bcc5658252
Author: Ludovic Courtès <address@hidden>
Date:   Sun Jan 6 00:28:06 2013 +0100

    Add `guix-gc'.
    
    * guix-gc.in, tests/guix-gc.sh: New files.
    * configure.ac: Output `guix-gc', and make it executable.
    * Makefile.am (bin_SCRIPTS): Add `guix-gc'.
      (TESTS): Add `tests/guix-gc.sh'.
    * doc/guix.texi (Features): Add xref to "Invoking guix-gc".
      (Invoking guix-gc): New node.
    * po/POTFILES.in: Add `guix-gc.in'.

commit 2646c55b03971774cf1760694415c4b83fbb3e44
Author: Ludovic Courtès <address@hidden>
Date:   Sun Jan 6 00:18:43 2013 +0100

    guix-build: Make `--root' effective for .drv files too.
    
    * guix-build.in (guix-build)[register-root]: Change first argument to
      `paths', which should be a list of store paths.  Update caller to call
      `derivation-path->output-paths' on DRV.  When `derivations-only?',
      also register root for .drv files.

commit 7244a5f74e8a2f465b1ad04b5c4666457567c54e
Author: Ludovic Courtès <address@hidden>
Date:   Sat Jan 5 23:51:13 2013 +0100

    derivations: Add `derivation-path->output-paths'.
    
    * guix/derivations.scm (derivation-path->output-paths): New procedure.
    * tests/derivations.scm ("multiple-output derivation"): Test it.

commit 3441e164976c14ef8bf9a95ab4130ca25ac85e70
Author: Ludovic Courtès <address@hidden>
Date:   Sat Jan 5 15:55:47 2013 +0100

    ui: Factorize bug-report information in `--help'.
    
    * guix/config.scm.in (%guix-home-page-url): New variable.
    * guix/ui.scm (show-bug-report-information): New procedure.
    * guix-build.in (show-help): Use it.
    * guix-download.in (show-help): Likewise.
    * guix-import.in (show-help): Likewise.
    * guix-package.in (show-help): Likewise.

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

Summary of changes:
 .gitignore                         |    1 +
 Makefile.am                        |   16 ++--
 build-aux/download.scm             |   12 +-
 configure.ac                       |    4 +-
 daemon.am                          |   12 +-
 distro.scm                         |   12 +-
 distro/packages/acl.scm            |   12 +-
 distro/packages/algebra.scm        |   12 +-
 distro/packages/attr.scm           |   14 ++--
 distro/packages/autotools.scm      |   14 ++--
 distro/packages/base.scm           |   14 ++--
 distro/packages/bash.scm           |   12 +-
 distro/packages/bdb.scm            |   12 +-
 distro/packages/bdw-gc.scm         |   12 +-
 distro/packages/bison.scm          |   12 +-
 distro/packages/bootstrap.scm      |   12 +-
 distro/packages/check.scm          |   12 +-
 distro/packages/compression.scm    |   12 +-
 distro/packages/cpio.scm           |   12 +-
 distro/packages/ddrescue.scm       |   12 +-
 distro/packages/ed.scm             |   12 +-
 distro/packages/flex.scm           |   12 +-
 distro/packages/gawk.scm           |   12 +-
 distro/packages/gdbm.scm           |   12 +-
 distro/packages/gettext.scm        |   12 +-
 distro/packages/gnupg.scm          |   12 +-
 distro/packages/gnutls.scm         |   12 +-
 distro/packages/gperf.scm          |   12 +-
 distro/packages/gsasl.scm          |   12 +-
 distro/packages/guile.scm          |   12 +-
 distro/packages/help2man.scm       |   12 +-
 distro/packages/idutils.scm        |   12 +-
 distro/packages/less.scm           |   12 +-
 distro/packages/libffi.scm         |   12 +-
 distro/packages/libidn.scm         |   12 +-
 distro/packages/libsigsegv.scm     |   12 +-
 distro/packages/libunistring.scm   |   12 +-
 distro/packages/libusb.scm         |   12 +-
 distro/packages/linux.scm          |   14 ++--
 distro/packages/lout.scm           |   12 +-
 distro/packages/lsh.scm            |   12 +-
 distro/packages/m4.scm             |   12 +-
 distro/packages/make-bootstrap.scm |   12 +-
 distro/packages/mit-krb5.scm       |   12 +-
 distro/packages/multiprecision.scm |   12 +-
 distro/packages/nano.scm           |   12 +-
 distro/packages/ncurses.scm        |   12 +-
 distro/packages/nettle.scm         |   12 +-
 distro/packages/perl.scm           |   12 +-
 distro/packages/pkg-config.scm     |   12 +-
 distro/packages/pth.scm            |   12 +-
 distro/packages/readline.scm       |   12 +-
 distro/packages/recutils.scm       |   12 +-
 distro/packages/rsync.scm          |   12 +-
 distro/packages/shishi.scm         |   14 ++--
 distro/packages/system.scm         |   12 +-
 distro/packages/texinfo.scm        |   12 +-
 distro/packages/time.scm           |   12 +-
 distro/packages/wget.scm           |   12 +-
 distro/packages/which.scm          |   12 +-
 distro/packages/zile.scm           |   12 +-
 doc/guix.texi                      |   57 +++++++++++-
 guix-build.in                      |   66 +++++++-------
 guix-download.in                   |   15 ++--
 guix-gc.in                         |  183 ++++++++++++++++++++++++++++++++++++
 guix-import.in                     |   15 ++--
 guix-package.in                    |   15 ++--
 guix.scm                           |   12 +-
 guix/base32.scm                    |   12 +-
 guix/build-system.scm              |   12 +-
 guix/build-system/gnu.scm          |   12 +-
 guix/build-system/trivial.scm      |   12 +-
 guix/config.scm.in                 |   16 ++-
 guix/derivations.scm               |   23 ++++-
 guix/download.scm                  |   12 +-
 guix/ftp-client.scm                |   12 +-
 guix/gnu-maintenance.scm           |   14 ++--
 guix/licenses.scm                  |   14 ++--
 guix/packages.scm                  |   12 +-
 guix/snix.scm                      |   12 +-
 guix/store.scm                     |   12 +-
 guix/ui.scm                        |   22 +++-
 guix/utils.scm                     |   12 +-
 hydra.scm                          |   12 +-
 nix/libutil/gcrypt-hash.cc         |   10 +-
 nix/libutil/gcrypt-hash.hh         |   10 +-
 nix/libutil/md5.h                  |   10 +-
 nix/libutil/sha1.h                 |   10 +-
 nix/libutil/sha256.h               |   10 +-
 nix/nix-daemon/guix-daemon.cc      |   12 +-
 nix/nix-daemon/shared.hh           |   10 +-
 nix/scripts/list-runtime-roots.in  |   12 +-
 po/POTFILES.in                     |    2 +
 pre-inst-env.in                    |   12 +-
 release.nix                        |   12 +-
 test-env.in                        |   12 +-
 tests/base32.scm                   |   12 +-
 tests/build-utils.scm              |   12 +-
 tests/builders.scm                 |   12 +-
 tests/derivations.scm              |   17 ++--
 tests/guix-build.sh                |   12 +-
 tests/guix-daemon.sh               |   12 +-
 tests/guix-download.sh             |   12 +-
 tests/guix-gc.sh                   |   54 +++++++++++
 tests/guix-package.sh              |   12 +-
 tests/packages.scm                 |   12 +-
 tests/snix.scm                     |   12 +-
 tests/store.scm                    |   12 +-
 tests/union.scm                    |   12 +-
 tests/utils.scm                    |   12 +-
 110 files changed, 983 insertions(+), 665 deletions(-)
 create mode 100644 guix-gc.in
 create mode 100644 tests/guix-gc.sh


hooks/post-receive
-- 
UNNAMED PROJECT



reply via email to

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