<feed xmlns='http://www.w3.org/2005/Atom'>
<title>guix.git/guix.scm, branch master</title>
<subtitle>Personal branch of https://git.savannah.gnu.org/cgit/guix.git/ for implementing 'guix deploy'.
</subtitle>
<id>https://git.jakob.space/guix.git/atom?h=master</id>
<link rel='self' href='https://git.jakob.space/guix.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.jakob.space/guix.git/'/>
<updated>2014-08-15T14:26:28Z</updated>
<entry>
<title>Add (guix monad-repl).</title>
<updated>2014-08-15T14:26:28Z</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2014-08-15T14:22:11Z</published>
<link rel='alternate' type='text/html' href='https://git.jakob.space/guix.git/commit/?id=b9b8607824448cd6bd152ca0ede460a7f44f3b2b'/>
<id>urn:sha1:b9b8607824448cd6bd152ca0ede460a7f44f3b2b</id>
<content type='text'>
* guix/monad-repl.scm: New file.
* guix.scm: Add it.
* Makefile.am (MODULES): Add it.
* doc/guix.texi (The Store Monad): Document it.
</content>
</entry>
<entry>
<title>Augment (guix).</title>
<updated>2014-05-20T21:37:11Z</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2014-05-20T21:18:02Z</published>
<link rel='alternate' type='text/html' href='https://git.jakob.space/guix.git/commit/?id=29decd1f368e769ac176822c0b5e0d54e056b7d2'/>
<id>urn:sha1:29decd1f368e769ac176822c0b5e0d54e056b7d2</id>
<content type='text'>
* guix.scm (%public-modules): Add 'monads' and 'gexp'.
</content>
</entry>
<entry>
<title>Update license headers.</title>
<updated>2013-01-05T23:47:50Z</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2013-01-05T23:47:50Z</published>
<link rel='alternate' type='text/html' href='https://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>Remove (guix http) and (guix ftp).</title>
<updated>2012-11-12T23:23:39Z</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2012-11-12T23:22:44Z</published>
<link rel='alternate' type='text/html' href='https://git.jakob.space/guix.git/commit/?id=87f5d36630db13fee1f2c0563505dc0938f3787e'/>
<id>urn:sha1:87f5d36630db13fee1f2c0563505dc0938f3787e</id>
<content type='text'>
* guix/ftp.scm, guix/http.scm, guix/build/ftp.scm, guix/build/http.scm:
  Remove.
* Makefile.am (MODULES): Likewise.
* tests/builders.scm, distro/packages/base.scm,
  distro/packages/bash.scm, distro/packages/bdw-gc.scm,
  distro/packages/compression.scm, distro/packages/gawk.scm,
  distro/packages/gnupg.scm, distro/packages/gperf.scm,
  distro/packages/guile.scm, distro/packages/libffi.scm,
  distro/packages/libsigsegv.scm, distro/packages/libtool.scm,
  distro/packages/libunistring.scm, distro/packages/lout.scm,
  distro/packages/m4.scm, distro/packages/multiprecision.scm,
  distro/packages/ncurses.scm, distro/packages/perl.scm,
  distro/packages/pkg-config.scm, distro/packages/pth.scm,
  distro/packages/readline.scm, distro/packages/recutils.scm: Use
  `url-fetch' instead of `http-fetch' and `ftp-fetch'.
* distro/packages/bootstrap.scm: Likewise
  (bootstrap-origin): Remove references to `http-fetch' and
  `ftp-fetch'.
* guix.scm (%public-modules): Remove `http' and `ftp'; add `download'.
</content>
</entry>
<entry>
<title>Move base32 code to (guix base32).</title>
<updated>2012-11-11T21:33:28Z</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2012-11-11T21:33:28Z</published>
<link rel='alternate' type='text/html' href='https://git.jakob.space/guix.git/commit/?id=ddc29a782eac30fcf4ff1f07677aa2896dc140e4'/>
<id>urn:sha1:ddc29a782eac30fcf4ff1f07677aa2896dc140e4</id>
<content type='text'>
* guix/utils.scm (bytevector-quintet-ref, bytevector-quintet-ref-right,
  bytevector-quintet-length, bytevector-quintet-fold,
  bytevector-quintet-fold-right, make-bytevector-&gt;base32-string,
  %nix-base32-chars, %rfc4648-base32-chars, bytevector-&gt;base32-string,
  bytevector-&gt;nix-base32-string, bytevector-quintet-set!,
  bytevector-quintet-set-right!, base32-string-unfold,
  base32-string-unfold-right, make-base32-string-&gt;bytevector,
  base32-string-&gt;bytevector, nix-base32-string-&gt;bytevector): Move to...
* guix/base32.scm: ... here.  New file.

* tests/utils.scm (%nix-hash, "bytevector-&gt;base32-string",
  "base32-string-&gt;bytevector", "nix-base32-string-&gt;bytevector", "sha256
  &amp; bytevector-&gt;base32-string"): Move to...
* tests/base32.scm: ... here.  New file

* guix-download.in, guix/derivations.scm, guix/packages.scm,
  guix/snix.scm, tests/builders.scm, tests/derivations.scm: Adjust
  accordingly.
* guix.scm (%public-modules): Add `base32'.
</content>
</entry>
<entry>
<title>Remove non-existent module from (guix).</title>
<updated>2012-10-08T21:13:51Z</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2012-10-08T21:13:51Z</published>
<link rel='alternate' type='text/html' href='https://git.jakob.space/guix.git/commit/?id=ad8526466cc43f99c9869601785fabd7d76e346b'/>
<id>urn:sha1:ad8526466cc43f99c9869601785fabd7d76e346b</id>
<content type='text'>
* guix.scm (%public-modules): Remove `snix', since that modules doesn't
  exist yet.
</content>
</entry>
<entry>
<title>Update the (guix) module.</title>
<updated>2012-10-07T20:26:55Z</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2012-10-05T23:24:46Z</published>
<link rel='alternate' type='text/html' href='https://git.jakob.space/guix.git/commit/?id=58ddf10ea35cc918320b43702a5bea5743dbee24'/>
<id>urn:sha1:58ddf10ea35cc918320b43702a5bea5743dbee24</id>
<content type='text'>
* guix.scm (%public-modules): Update list of current second-level
  modules.
</content>
</entry>
<entry>
<title>Split (guix) in (guix store) and (guix derivations).</title>
<updated>2012-04-18T21:34:12Z</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2012-04-18T21:34:12Z</published>
<link rel='alternate' type='text/html' href='https://git.jakob.space/guix.git/commit/?id=77d3cf087dca7b92af745b7e25af186d1d11f7b9'/>
<id>urn:sha1:77d3cf087dca7b92af745b7e25af186d1d11f7b9</id>
<content type='text'>
* guix.scm: Move contents to other files.  Just aggregate these.
* guix/derivations.scm, guix/store.scm: New files.
</content>
</entry>
<entry>
<title>Initial commit.</title>
<updated>2012-04-18T21:21:11Z</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2012-04-18T21:21:11Z</published>
<link rel='alternate' type='text/html' href='https://git.jakob.space/guix.git/commit/?id=207cba8114d354737b231e510d6110ea2a42e07b'/>
<id>urn:sha1:207cba8114d354737b231e510d6110ea2a42e07b</id>
<content type='text'>
</content>
</entry>
</feed>
