<feed xmlns='http://www.w3.org/2005/Atom'>
<title>guix, branch v1.1.0</title>
<subtitle>Transactional package manager, declarative GNU/Linux distribution, reproducible deployment tool, and more! https://guix.gnu.org</subtitle>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/guix/'/>
<entry>
<title>Update NEWS.</title>
<updated>2020-04-14T22:02:23+00:00</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2020-04-14T20:29:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/guix/commit/?id=d62c9b2671be55ae0305bebfda17b595f33797f2'/>
<id>d62c9b2671be55ae0305bebfda17b595f33797f2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>services: shepherd: Increase the PID file timeout to 30s.</title>
<updated>2020-04-14T22:02:23+00:00</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2020-04-14T21:58:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/guix/commit/?id=8aa752ba222c3d7ec094bb7947359f75f2a6bb2c'/>
<id>8aa752ba222c3d7ec094bb7947359f75f2a6bb2c</id>
<content type='text'>
When running the installation image off a DVD, early I/O operations are
extremely slow, to the point that something like dbus-daemon would need
~20s to start.  This change works around the issue.

Fixes &lt;https://bugs.gnu.org/40572&gt;.
Reported by Florian Pelz &lt;pelzflorian@pelzflorian.de&gt;.

* gnu/services/shepherd.scm (shepherd-configuration-file): Set
%pid-file-timeout to 30.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When running the installation image off a DVD, early I/O operations are
extremely slow, to the point that something like dbus-daemon would need
~20s to start.  This change works around the issue.

Fixes &lt;https://bugs.gnu.org/40572&gt;.
Reported by Florian Pelz &lt;pelzflorian@pelzflorian.de&gt;.

* gnu/services/shepherd.scm (shepherd-configuration-file): Set
%pid-file-timeout to 30.
</pre>
</div>
</content>
</entry>
<entry>
<title>doc: Improve anchor collection.</title>
<updated>2020-04-14T14:01:53+00:00</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2020-04-13T10:27:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/guix/commit/?id=bd4c345ef7ddf3542662fe0872b06393b414a3fc'/>
<id>bd4c345ef7ddf3542662fe0872b06393b414a3fc</id>
<content type='text'>
This allows us to catch "operating_002dsystem-1", for instance.

* doc/build.scm (syntax-highlighted-html)[build](anchor-id-&gt;key): Drop
"-1" &amp; co. from ID.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows us to catch "operating_002dsystem-1", for instance.

* doc/build.scm (syntax-highlighted-html)[build](anchor-id-&gt;key): Drop
"-1" &amp; co. from ID.
</pre>
</div>
</content>
</entry>
<entry>
<title>doc: Avoid invalid 'match' pattern in 'syntax-highlighted-html'.</title>
<updated>2020-04-14T14:01:45+00:00</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2020-04-13T00:09:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/guix/commit/?id=4487e42cba15110bce91d729b3e964f62347ed50'/>
<id>4487e42cba15110bce91d729b3e964f62347ed50</id>
<content type='text'>
This is a followup to da9deba13d551e316f5a99a614834efa27ddc7d1.

Last-minute modification of the 'match' pattern would lead to an error:

  "multiple ellipsis patterns not allowed at same level"

* doc/build.scm (syntax-highlighted-html)[build](collect-anchors):
Add 'worthy-entry?' procedure and use it instead of the unsupported
pattern for ('dt ...).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a followup to da9deba13d551e316f5a99a614834efa27ddc7d1.

Last-minute modification of the 'match' pattern would lead to an error:

  "multiple ellipsis patterns not allowed at same level"

* doc/build.scm (syntax-highlighted-html)[build](collect-anchors):
Add 'worthy-entry?' procedure and use it instead of the unsupported
pattern for ('dt ...).
</pre>
</div>
</content>
</entry>
<entry>
<title>doc: Emit hyperlinks in HTML output for @lisp snippets.</title>
<updated>2020-04-14T14:01:39+00:00</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2020-04-12T22:12:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/guix/commit/?id=f37789a523d3e4169b72312c3540b7624415c116'/>
<id>f37789a523d3e4169b72312c3540b7624415c116</id>
<content type='text'>
This makes it easier to jump to the definition of a procedure or
variable when looking at a code snippet.  There can be false-positive
because scoping rules are ignored, for example, but it should be a good
approximation.

* doc/build.scm (syntax-highlighted-html)[build](highlights-&gt;sxml*): Add
'anchors' parameter.  Add clause for ('symbol text).
(syntax-highlight): Add 'anchors' parameter.  Wrap body in named let and
use it in recursive calls.  Pass ANCHORS to 'highlights-&gt;sxml*'.
(underscore-decode, anchor-id-&gt;key, collect-anchors, html?): New procedures.
(process-file): Add 'anchors' parameter. and honor it.
Rewrite mono-node and multi-node HTML files separately.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes it easier to jump to the definition of a procedure or
variable when looking at a code snippet.  There can be false-positive
because scoping rules are ignored, for example, but it should be a good
approximation.

* doc/build.scm (syntax-highlighted-html)[build](highlights-&gt;sxml*): Add
'anchors' parameter.  Add clause for ('symbol text).
(syntax-highlight): Add 'anchors' parameter.  Wrap body in named let and
use it in recursive calls.  Pass ANCHORS to 'highlights-&gt;sxml*'.
(underscore-decode, anchor-id-&gt;key, collect-anchors, html?): New procedures.
(process-file): Add 'anchors' parameter. and honor it.
Rewrite mono-node and multi-node HTML files separately.
</pre>
</div>
</content>
</entry>
<entry>
<title>weather: Delete duplicate entries coming from '--manifest'.</title>
<updated>2020-04-14T14:01:05+00:00</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2020-04-14T13:19:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/guix/commit/?id=1ae7a9251b282a5f5e73a754dbc3b8bd4fe1da74'/>
<id>1ae7a9251b282a5f5e73a754dbc3b8bd4fe1da74</id>
<content type='text'>
* guix/scripts/weather.scm (load-manifest): Call 'delete-duplicates'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* guix/scripts/weather.scm (load-manifest): Call 'delete-duplicates'.
</pre>
</div>
</content>
</entry>
<entry>
<title>maint: Ensure substitutes are available for '%default-xorg-modules'.</title>
<updated>2020-04-14T14:01:05+00:00</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2020-04-14T12:47:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/guix/commit/?id=bab1f340b35078dcfd3cbac67ad56393b53bb46b'/>
<id>bab1f340b35078dcfd3cbac67ad56393b53bb46b</id>
<content type='text'>
* etc/release-manifest.scm (%system-packages): Append
%DEFAULT-XORG-MODULES.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* etc/release-manifest.scm (%system-packages): Append
%DEFAULT-XORG-MODULES.
</pre>
</div>
</content>
</entry>
<entry>
<title>maint: Actually check for the availablility of system packages.</title>
<updated>2020-04-14T14:01:05+00:00</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2020-04-14T13:10:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/guix/commit/?id=8e8d984fd6db77bb5c1bec66369e5e99470d416f'/>
<id>8e8d984fd6db77bb5c1bec66369e5e99470d416f</id>
<content type='text'>
* etc/release-manifest.scm (%system-manifest): New variable.
&lt;top level&gt;: Add it in 'concatenate-manifests' call.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* etc/release-manifest.scm (%system-manifest): New variable.
&lt;top level&gt;: Add it in 'concatenate-manifests' call.
</pre>
</div>
</content>
</entry>
<entry>
<title>installer: Only load uvesafb kernel module when needed.</title>
<updated>2020-04-14T13:05:57+00:00</updated>
<author>
<name>Florian Pelz</name>
<email>pelzflorian@pelzflorian.de</email>
</author>
<published>2020-04-14T12:49:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/guix/commit/?id=0ad60b2a89d6d387236466e0bcdd61ac489fca37'/>
<id>0ad60b2a89d6d387236466e0bcdd61ac489fca37</id>
<content type='text'>
This is a follow-up to commit 557e6820a77b24f8f3f03f28ee473137b1caeb64.

* gnu/system/install.scm (uvesafb-shepherd-service): Check
that /dev/fb0 is not already present.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a follow-up to commit 557e6820a77b24f8f3f03f28ee473137b1caeb64.

* gnu/system/install.scm (uvesafb-shepherd-service): Check
that /dev/fb0 is not already present.
</pre>
</div>
</content>
</entry>
<entry>
<title>nls: Update.</title>
<updated>2020-04-14T11:01:58+00:00</updated>
<author>
<name>Ludovic Courtès</name>
<email>ludo@gnu.org</email>
</author>
<published>2020-04-14T11:00:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vineetk.net/guix/commit/?id=2b2921937017bf4b3c7c8be2d0448f8c64d02bb1'/>
<id>2b2921937017bf4b3c7c8be2d0448f8c64d02bb1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
