<feed xmlns='http://www.w3.org/2005/Atom'>
<title>guix.git/distro/packages/make-bootstrap.scm, branch master</title>
<subtitle>Personal branch of https://git.savannah.gnu.org/cgit/guix.git/ for implementing 'guix deploy'.
</subtitle>
<id>https://www.git.jakob.space/guix.git/atom?h=master</id>
<link rel='self' href='https://www.git.jakob.space/guix.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/guix.git/'/>
<updated>2013-01-18T00:07:31Z</updated>
<entry>
<title>distro: Change the module name space to (gnu ...).</title>
<updated>2013-01-18T00:07:31Z</updated>
<author>
<name>Ludovic Courtès</name>
</author>
<published>2013-01-18T00:06:24Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/guix.git/commit/?id=1ffa7090b99dfd2f54fa883929c5e78d7852657a'/>
<id>urn:sha1:1ffa7090b99dfd2f54fa883929c5e78d7852657a</id>
<content type='text'>
* distro: Rename to...
* gnu: ... this.  Update module names accordingly.
* Makefile.am: Adjust accordingly.
* po/POTFILES.in: Likewise.
* distro.scm: Search for files under /gnu/packages instead of
  /distro/packages.
* gnu/packages/base.scm (ld-wrapper-boot3): Likewise.
</content>
</entry>
<entry>
<title>Merge branch 'master' into core-updates</title>
<updated>2013-01-06T16:33:02Z</updated>
<author>
<name>Ludovic Courtès</name>
</author>
<published>2013-01-06T16:33:02Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/guix.git/commit/?id=4050e5d6cfe8f7af29f10b2f1b3c7febdc10946a'/>
<id>urn:sha1:4050e5d6cfe8f7af29f10b2f1b3c7febdc10946a</id>
<content type='text'>
Conflicts:
	build-aux/download.scm
	distro/packages/autotools.scm
	distro/packages/base.scm
	distro/packages/bootstrap.scm
	distro/packages/lsh.scm
	distro/packages/make-bootstrap.scm
	distro/packages/ncurses.scm
	distro/packages/perl.scm
	tests/derivations.scm
	tests/union.scm
</content>
</entry>
<entry>
<title>Update license headers.</title>
<updated>2013-01-05T23:47:50Z</updated>
<author>
<name>Ludovic Courtès</name>
</author>
<published>2013-01-05T23:47:50Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/guix.git/commit/?id=233e76769ae3a438bff7117c68f2c88739a28db0'/>
<id>urn:sha1:233e76769ae3a438bff7117c68f2c88739a28db0</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>distro: make-bootstrap: Add `%bootstrap-tarballs' package.</title>
<updated>2013-01-05T14:46:08Z</updated>
<author>
<name>Ludovic Courtès</name>
</author>
<published>2013-01-05T14:46:08Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/guix.git/commit/?id=312543dcfc2b19063f172bd10bb437d6bfe62cff'/>
<id>urn:sha1:312543dcfc2b19063f172bd10bb437d6bfe62cff</id>
<content type='text'>
* distro/packages/make-bootstrap.scm (%bootstrap-tarballs): New
  variable.
</content>
</entry>
<entry>
<title>distro: make-bootstrap: Build glibc without nscd, and with static NSS modules.</title>
<updated>2013-01-05T11:41:05Z</updated>
<author>
<name>Ludovic Courtès</name>
</author>
<published>2013-01-05T11:41:05Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/guix.git/commit/?id=d3b59727fb5a8a040bc9d5ca6ada1239ccf90c01'/>
<id>urn:sha1:d3b59727fb5a8a040bc9d5ca6ada1239ccf90c01</id>
<content type='text'>
* distro/packages/make-bootstrap.scm (%glibc-with-relocatable-system):
  Rename to...
  (%glibc-for-bootstrap): ... this.  Add new configure flags.
</content>
</entry>
<entry>
<title>distro: make-bootstrap: Make the Coreutils smaller.</title>
<updated>2013-01-04T17:58:53Z</updated>
<author>
<name>Ludovic Courtès</name>
</author>
<published>2013-01-04T17:58:53Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/guix.git/commit/?id=c2d771fd1da27cc6393c16e7e0ad10336e629f28'/>
<id>urn:sha1:c2d771fd1da27cc6393c16e7e0ad10336e629f28</id>
<content type='text'>
* distro/packages/make-bootstrap.scm (%static-inputs)[coreutils]: Remove
  optional dependencies, except Perl; build with "-Os -g0"; disable
  tests.
</content>
</entry>
<entry>
<title>distro: make-bootstrap: Fix arguments to gawk.</title>
<updated>2013-01-04T16:42:59Z</updated>
<author>
<name>Ludovic Courtès</name>
</author>
<published>2013-01-04T16:42:59Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/guix.git/commit/?id=fdc78b72f8ba87a62c61f8acb6d7dbaf2b204fe0'/>
<id>urn:sha1:fdc78b72f8ba87a62c61f8acb6d7dbaf2b204fe0</id>
<content type='text'>
* distro/packages/make-bootstrap.scm (%static-inputs)[gawk]: Use
  `substitute-keyword-arguments' to preserve the #:phases argument of
  GAWK.
</content>
</entry>
<entry>
<title>build-system/gnu: Add `static-package'.</title>
<updated>2013-01-01T15:55:34Z</updated>
<author>
<name>Ludovic Courtès</name>
</author>
<published>2013-01-01T15:55:34Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/guix.git/commit/?id=4d058c67929aa9d464fcb1ff0217122424078cb8'/>
<id>urn:sha1:4d058c67929aa9d464fcb1ff0217122424078cb8</id>
<content type='text'>
* distro/packages/make-bootstrap.scm (static-package): Move to...
* guix/build-system/gnu.scm (static-package): ... here.  New procedure.
</content>
</entry>
<entry>
<title>distro: Move lightweight Bash to (distro packages bash).</title>
<updated>2013-01-01T15:54:45Z</updated>
<author>
<name>Ludovic Courtès</name>
</author>
<published>2013-01-01T15:54:45Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/guix.git/commit/?id=450fb5a6b44f05dbaa35daf2b696dfc4d502be96'/>
<id>urn:sha1:450fb5a6b44f05dbaa35daf2b696dfc4d502be96</id>
<content type='text'>
* distro/packages/make-bootstrap.scm (%bash-static): Move BASH-LIGHT to...
* distro/packages/bash.scm (bash-light): ... here.  New variable.
</content>
</entry>
<entry>
<title>distro: make-bootstrap: Have libc's functions search for `sh' in $PATH.</title>
<updated>2012-12-20T00:38:56Z</updated>
<author>
<name>Ludovic Courtès</name>
</author>
<published>2012-12-20T00:29:56Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/guix.git/commit/?id=5d4fd2671aaadc5b0b7e0c331fa5e2a1d7e5c4d8'/>
<id>urn:sha1:5d4fd2671aaadc5b0b7e0c331fa5e2a1d7e5c4d8</id>
<content type='text'>
* distro/packages/make-bootstrap.scm (%glibc-with-relocatable-system,
  %standard-inputs-with-relocatable-glibc): New variables.
  (%static-inputs)[gawk]: Apply `gawk-shell.patch'.
  [finalize]: New procedure.
  Build all the packages against %STANDARD-INPUTS-WITH-RELOCATABLE-GLIBC.
  (%glibc-stripped): Inherit from %GLIBC-WITH-RELOCATABLE-SYSTEM.
  (%gcc-static, %guile-static): Build against
  %STANDARD-INPUTS-WITH-RELOCATABLE-GLIBC.
* distro/packages/patches/gawk-shell.patch,
  distro/packages/patches/glibc-bootstrap-system.patch: New files.
* Makefile.am (dist_patch_DATA): Add them.
</content>
</entry>
</feed>
