<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>9base, branch HEAD</title>
<subtitle>revived minimalist port of Plan 9 userland to Unix
</subtitle>
<entry>
<id>63916da7bd6d73d9a405ce83fc4ca34845667cce</id>
<published>2019-09-11T22:46:27Z</published>
<updated>2019-09-13T15:56:15Z</updated>
<title type="text">hoc: Don&#39;t nest calls to follow() when lexing ++/+= and --/-=</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/63916da7bd6d73d9a405ce83fc4ca34845667cce.gph" />
<author>
<name>Evan Gates</name>
<email>[email protected]</email>
</author>
<content type="text">commit 63916da7bd6d73d9a405ce83fc4ca34845667cce
parent 09e95a2d6f8dbafc6601147b2f5f150355813be6
Author: Evan Gates &lt;[email protected]&gt;
Date:   Wed, 11 Sep 2019 15:46:27 -0700

hoc: Don&#39;t nest calls to follow() when lexing ++/+= and --/-=

The code had a nested use of the follow() function that could cause +=+
and -=- to register as ++ and --.  The first follow() to execute could
consume a character and match and then the second follow() could consume
another character and match.  For example i-=-10 would result in a syntax
error and i-=- would decrement i.

</content>
</entry>
<entry>
<id>09e95a2d6f8dbafc6601147b2f5f150355813be6</id>
<published>2017-08-06T07:30:30Z</published>
<updated>2017-08-06T07:30:30Z</updated>
<title type="text">replaced sbrk() uses with malloc()</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/09e95a2d6f8dbafc6601147b2f5f150355813be6.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 09e95a2d6f8dbafc6601147b2f5f150355813be6
parent bdca47727a2618c3cbb85a43fadcf9298ebec424
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sun,  6 Aug 2017 09:30:30 +0200

replaced sbrk() uses with malloc()

</content>
</entry>
<entry>
<id>bdca47727a2618c3cbb85a43fadcf9298ebec424</id>
<published>2017-06-07T15:58:04Z</published>
<updated>2017-06-30T08:56:44Z</updated>
<title type="text">ed: avoid name collision with libc&#39;s getline.</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/bdca47727a2618c3cbb85a43fadcf9298ebec424.gph" />
<author>
<name>Christopher Brannon</name>
<email>[email protected]</email>
</author>
<content type="text">commit bdca47727a2618c3cbb85a43fadcf9298ebec424
parent 1583c9239d968bbc571190d2cf563146a9704528
Author: Christopher Brannon &lt;[email protected]&gt;
Date:   Wed,  7 Jun 2017 08:58:04 -0700

ed: avoid name collision with libc&#39;s getline.

Redefining getline leads to a fun bug when linking statically against musl.

</content>
</entry>
<entry>
<id>1583c9239d968bbc571190d2cf563146a9704528</id>
<published>2017-05-19T23:06:03Z</published>
<updated>2017-06-30T08:54:10Z</updated>
<title type="text">apply changes from https://github.com/9fans/plan9port on rc/havefork.c</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/1583c9239d968bbc571190d2cf563146a9704528.gph" />
<author>
<name>pranomostro</name>
<email>[email protected]</email>
</author>
<content type="text">commit 1583c9239d968bbc571190d2cf563146a9704528
parent de27e3fba58c3dd467c29ea9a1aea6f9e65a5299
Author: pranomostro &lt;[email protected]&gt;
Date:   Sat, 20 May 2017 01:06:03 +0200

apply changes from https://github.com/9fans/plan9port on rc/havefork.c

before applying those changes, rc exited with sigsegv when receiving
sigint while executing a command in a subshell (example: rc -c &#39;`{read}&#39;).

</content>
</entry>
<entry>
<id>de27e3fba58c3dd467c29ea9a1aea6f9e65a5299</id>
<published>2016-09-09T19:36:57Z</published>
<updated>2016-09-12T12:29:38Z</updated>
<title type="text">check for _LARGEFILE64_SOURCE instead of __USE_LARGEFILE64</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/de27e3fba58c3dd467c29ea9a1aea6f9e65a5299.gph" />
<author>
<name>Evan Gates</name>
<email>[email protected]</email>
</author>
<content type="text">commit de27e3fba58c3dd467c29ea9a1aea6f9e65a5299
parent 5673fdd72fae4823ba67e2c216bbfd724bc9e01c
Author: Evan Gates &lt;[email protected]&gt;
Date:   Fri,  9 Sep 2016 12:36:57 -0700

check for _LARGEFILE64_SOURCE instead of __USE_LARGEFILE64

glibc doesn&#39;t define getdents() and requires use of the raw syscall. As
such lib9/dirread.c needed to decide whether to use SYS_getdents or
SYS_getdents64 and was checking if __USE_LARGEFILE64 was defined in
order to do so. musl does not define __USE_LARGEFILE64 so the wrong
syscall was being used. musl does however define _LARGEFILE64_SOURCE,
the macro that glibc checks in order to define __USE_LARGEFILE64.

</content>
</entry>
<entry>
<id>5673fdd72fae4823ba67e2c216bbfd724bc9e01c</id>
<published>2016-08-17T18:45:57Z</published>
<updated>2016-08-18T06:49:11Z</updated>
<title type="text">add bclib from plan 9 sources</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/5673fdd72fae4823ba67e2c216bbfd724bc9e01c.gph" />
<author>
<name>Evan Gates</name>
<email>[email protected]</email>
</author>
<content type="text">commit 5673fdd72fae4823ba67e2c216bbfd724bc9e01c
parent c074f6d0c7ad9ee13cfa65900e1789cfe4eb693c
Author: Evan Gates &lt;[email protected]&gt;
Date:   Wed, 17 Aug 2016 11:45:57 -0700

add bclib from plan 9 sources

add post-install and pre-uninstall targets to tools using yacc.mk
mirroring those in std.mk in order to install and uninstall bclib

</content>
</entry>
<entry>
<id>c074f6d0c7ad9ee13cfa65900e1789cfe4eb693c</id>
<published>2016-08-17T18:40:29Z</published>
<updated>2016-08-18T06:49:04Z</updated>
<title type="text">fix DESTDIRK typo in yacc/Makefile</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/c074f6d0c7ad9ee13cfa65900e1789cfe4eb693c.gph" />
<author>
<name>Evan Gates</name>
<email>[email protected]</email>
</author>
<content type="text">commit c074f6d0c7ad9ee13cfa65900e1789cfe4eb693c
parent 7a0d18922b67c0e21c415e0865a1cfdb0646f020
Author: Evan Gates &lt;[email protected]&gt;
Date:   Wed, 17 Aug 2016 11:40:29 -0700

fix DESTDIRK typo in yacc/Makefile

</content>
</entry>
<entry>
<id>7a0d18922b67c0e21c415e0865a1cfdb0646f020</id>
<published>2016-06-16T08:02:58Z</published>
<updated>2016-06-16T08:02:58Z</updated>
<title type="text">applied Alexander Clouter&#39;s 9base sha1sum patch</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/7a0d18922b67c0e21c415e0865a1cfdb0646f020.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 7a0d18922b67c0e21c415e0865a1cfdb0646f020
parent c5aeaf9ec5e393061e87fe5d41d002ef5d4428e9
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Thu, 16 Jun 2016 10:02:58 +0200

applied Alexander Clouter&#39;s 9base sha1sum patch

</content>
</entry>
<entry>
<id>c5aeaf9ec5e393061e87fe5d41d002ef5d4428e9</id>
<published>2015-06-27T19:53:02Z</published>
<updated>2015-06-27T19:53:02Z</updated>
<title type="text">applied emg&#39;s cal fix</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/c5aeaf9ec5e393061e87fe5d41d002ef5d4428e9.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit c5aeaf9ec5e393061e87fe5d41d002ef5d4428e9
parent 4fe8994317557febe21758a92fe26edbce6d517d
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sat, 27 Jun 2015 21:53:02 +0200

applied emg&#39;s cal fix

</content>
</entry>
<entry>
<id>4fe8994317557febe21758a92fe26edbce6d517d</id>
<published>2014-10-09T10:34:03Z</published>
<updated>2014-10-09T10:34:03Z</updated>
<title type="text">install lib9.a</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/4fe8994317557febe21758a92fe26edbce6d517d.gph" />
<author>
<name>sin</name>
<email>[email protected]</email>
</author>
<content type="text">commit 4fe8994317557febe21758a92fe26edbce6d517d
parent 9108d8bdacd655aed0b6a9a79a035dd24a99ff24
Author: sin &lt;[email protected]&gt;
Date:   Thu,  9 Oct 2014 11:34:03 +0100

install lib9.a

This patch installs lib9.a in ${DESTDIR}${PREFIX}/lib/ so it can be
linked against with -l9 (given the correct -L). I found that necessary
to compile y.tab.c generated by 9base&#39;s yacc due to sprint().

Patch contributed by Evan Gates.

</content>
</entry>
<entry>
<id>9108d8bdacd655aed0b6a9a79a035dd24a99ff24</id>
<published>2014-10-07T23:24:23Z</published>
<updated>2014-10-07T23:25:01Z</updated>
<title type="text">Install yaccpar and yaccpars</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/9108d8bdacd655aed0b6a9a79a035dd24a99ff24.gph" />
<author>
<name>sin</name>
<email>[email protected]</email>
</author>
<content type="text">commit 9108d8bdacd655aed0b6a9a79a035dd24a99ff24
parent 27d866c6ab4a2349a23cb21dada9a1136f76bfc0
Author: sin &lt;[email protected]&gt;
Date:   Wed,  8 Oct 2014 00:24:23 +0100

Install yaccpar and yaccpars

fatal error:cannot open parser /usr/local/plan9/yacc/yaccpar: No such
file or directory, /home/egates/projects/hoc/hoc1/hoc.y:27

Issue reported by Evan Gates.

</content>
</entry>
<entry>
<id>27d866c6ab4a2349a23cb21dada9a1136f76bfc0</id>
<published>2014-03-03T13:57:30Z</published>
<updated>2014-03-07T15:04:28Z</updated>
<title type="text">Fix building on OpenBSD 5.5</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/27d866c6ab4a2349a23cb21dada9a1136f76bfc0.gph" />
<author>
<name>sin</name>
<email>[email protected]</email>
</author>
<content type="text">commit 27d866c6ab4a2349a23cb21dada9a1136f76bfc0
parent a71862d4fff6274e7b59e5d6381a05d8a1db579b
Author: sin &lt;[email protected]&gt;
Date:   Mon,  3 Mar 2014 13:57:30 +0000

Fix building on OpenBSD 5.5

getdirentries() has been removed and instead we should use
getdents().

</content>
</entry>
<entry>
<id>a71862d4fff6274e7b59e5d6381a05d8a1db579b</id>
<published>2014-03-03T10:59:34Z</published>
<updated>2014-03-07T15:03:58Z</updated>
<title type="text">Simplify preprocessor conditions to enable building on musl-libc</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/a71862d4fff6274e7b59e5d6381a05d8a1db579b.gph" />
<author>
<name>sin</name>
<email>[email protected]</email>
</author>
<content type="text">commit a71862d4fff6274e7b59e5d6381a05d8a1db579b
parent 45d1314a1bd1886c42c1bdaac4a0128f23f50e32
Author: sin &lt;[email protected]&gt;
Date:   Mon,  3 Mar 2014 10:59:34 +0000

Simplify preprocessor conditions to enable building on musl-libc

musl-libc does not export __MUSL__ so we cannot use that.  I&#39;ve
chosen to go with the common solution here that works on uClibc,
glibc and musl-libc by just using syscall(2) and getdents(2).

To build 9base, you will need the appropriate kernel headers in
place.

</content>
</entry>
<entry>
<id>45d1314a1bd1886c42c1bdaac4a0128f23f50e32</id>
<published>2013-04-27T19:07:51Z</published>
<updated>2013-04-27T19:07:51Z</updated>
<title type="text">applied David Galos musl compile patch, thanks</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/45d1314a1bd1886c42c1bdaac4a0128f23f50e32.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 45d1314a1bd1886c42c1bdaac4a0128f23f50e32
parent 51cdf1141edd627428ecf0b8bd643142dd5c3773
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sat, 27 Apr 2013 21:07:51 +0200

applied David Galos musl compile patch, thanks

</content>
</entry>
<entry>
<id>51cdf1141edd627428ecf0b8bd643142dd5c3773</id>
<published>2012-11-01T17:42:41Z</published>
<updated>2012-11-01T17:42:41Z</updated>
<title type="text">added missing urlencode, thanks sl for checking this</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/51cdf1141edd627428ecf0b8bd643142dd5c3773.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 51cdf1141edd627428ecf0b8bd643142dd5c3773
parent 19a07111123964b50fff2644882430398fded904
Author: [email protected] &lt;unknown&gt;
Date:   Thu,  1 Nov 2012 18:42:41 +0100

added missing urlencode, thanks sl for checking this
</content>
</entry>
<entry>
<id>19a07111123964b50fff2644882430398fded904</id>
<published>2012-11-01T17:07:57Z</published>
<updated>2012-11-01T17:07:57Z</updated>
<title type="text">applied sl&#39;s 9front patch</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/19a07111123964b50fff2644882430398fded904.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 19a07111123964b50fff2644882430398fded904
parent 21195c3217d3a4a69848735cb7cab5e669fad8de
Author: [email protected] &lt;unknown&gt;
Date:   Thu,  1 Nov 2012 18:07:57 +0100

applied sl&#39;s 9front patch
</content>
</entry>
<entry>
<id>21195c3217d3a4a69848735cb7cab5e669fad8de</id>
<published>2012-07-02T19:52:15Z</published>
<updated>2012-07-02T19:52:15Z</updated>
<title type="text">applied sl&#39;s read patch</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/21195c3217d3a4a69848735cb7cab5e669fad8de.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 21195c3217d3a4a69848735cb7cab5e669fad8de
parent b7ce8129de5defa275d14b7656101ddcfb06cb77
Author: [email protected] &lt;unknown&gt;
Date:   Mon,  2 Jul 2012 21:52:15 +0200

applied sl&#39;s read patch
</content>
</entry>
<entry>
<id>b7ce8129de5defa275d14b7656101ddcfb06cb77</id>
<published>2012-04-19T17:17:26Z</published>
<updated>2012-04-19T17:17:26Z</updated>
<title type="text">remove useless files</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/b7ce8129de5defa275d14b7656101ddcfb06cb77.gph" />
<author>
<name>Connor Lane Smith</name>
<email>[email protected]</email>
</author>
<content type="text">commit b7ce8129de5defa275d14b7656101ddcfb06cb77
parent 8528f7e3faac54de1b61ddc1443431543a1c1ce9
Author: Connor Lane Smith &lt;[email protected]&gt;
Date:   Thu, 19 Apr 2012 18:17:26 +0100

remove useless files
</content>
</entry>
<entry>
<id>8528f7e3faac54de1b61ddc1443431543a1c1ce9</id>
<published>2012-04-05T18:27:40Z</published>
<updated>2012-04-05T18:27:40Z</updated>
<title type="text">applied cls&#39;s OSX troff fix patch, thanks</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/8528f7e3faac54de1b61ddc1443431543a1c1ce9.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 8528f7e3faac54de1b61ddc1443431543a1c1ce9
parent 5fcbf100201b93235b43cff403080a049a3a482d
Author: [email protected] &lt;unknown&gt;
Date:   Thu,  5 Apr 2012 20:27:40 +0200

applied cls&#39;s OSX troff fix patch, thanks
</content>
</entry>
<entry>
<id>5fcbf100201b93235b43cff403080a049a3a482d</id>
<published>2012-03-19T21:42:11Z</published>
<updated>2012-03-19T21:42:11Z</updated>
<title type="text">added PLAN9PORT flag as outlined by Chris Brannon, thanks!</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/5fcbf100201b93235b43cff403080a049a3a482d.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 5fcbf100201b93235b43cff403080a049a3a482d
parent d2a6d3b9d5cc69cfb0fe09604217280d4093f21c
Author: [email protected] &lt;unknown&gt;
Date:   Mon, 19 Mar 2012 22:42:11 +0100

added PLAN9PORT flag as outlined by Chris Brannon, thanks!
</content>
</entry>
<entry>
<id>d2a6d3b9d5cc69cfb0fe09604217280d4093f21c</id>
<published>2012-03-07T20:34:14Z</published>
<updated>2012-03-07T20:34:14Z</updated>
<title type="text">applied Matthew&#39;s dirread patch, thanks</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/d2a6d3b9d5cc69cfb0fe09604217280d4093f21c.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit d2a6d3b9d5cc69cfb0fe09604217280d4093f21c
parent 0ebf0433351f6e6fd61c5bfc25d5d4bd685f7b3a
Author: [email protected] &lt;unknown&gt;
Date:   Wed,  7 Mar 2012 21:34:14 +0100

applied Matthew&#39;s dirread patch, thanks
</content>
</entry>
<entry>
<id>0ebf0433351f6e6fd61c5bfc25d5d4bd685f7b3a</id>
<published>2012-03-07T20:29:55Z</published>
<updated>2012-03-07T20:29:55Z</updated>
<title type="text">applied Paul&#39;s final uClibc patches, thanks</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/0ebf0433351f6e6fd61c5bfc25d5d4bd685f7b3a.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 0ebf0433351f6e6fd61c5bfc25d5d4bd685f7b3a
parent 4644257fec39484e3dedb9dc9688105bc2605b98
Author: [email protected] &lt;unknown&gt;
Date:   Wed,  7 Mar 2012 21:29:55 +0100

applied Paul&#39;s final uClibc patches, thanks
</content>
</entry>
<entry>
<id>4644257fec39484e3dedb9dc9688105bc2605b98</id>
<published>2012-02-29T19:52:27Z</published>
<updated>2012-02-29T19:52:27Z</updated>
<title type="text">applied Paul Onyschuk&#39;s remarks</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/4644257fec39484e3dedb9dc9688105bc2605b98.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 4644257fec39484e3dedb9dc9688105bc2605b98
parent 422c761c28840f03071ac83a3edbfc6ae04d1921
Author: [email protected] &lt;unknown&gt;
Date:   Wed, 29 Feb 2012 20:52:27 +0100

applied Paul Onyschuk&#39;s remarks
</content>
</entry>
<entry>
<id>422c761c28840f03071ac83a3edbfc6ae04d1921</id>
<published>2012-02-28T17:50:48Z</published>
<updated>2012-02-28T17:50:48Z</updated>
<title type="text">applied Anthony&#39;s fix for yacc.mk</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/422c761c28840f03071ac83a3edbfc6ae04d1921.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 422c761c28840f03071ac83a3edbfc6ae04d1921
parent 629f22258ad7db15ecccd9e38baa6456a5153e9e
Author: [email protected] &lt;unknown&gt;
Date:   Tue, 28 Feb 2012 18:50:48 +0100

applied Anthony&#39;s fix for yacc.mk
</content>
</entry>
<entry>
<id>629f22258ad7db15ecccd9e38baa6456a5153e9e</id>
<published>2012-02-12T22:13:17Z</published>
<updated>2012-02-12T22:13:17Z</updated>
<title type="text">applied Juliens 9base fixes on OBSD</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/629f22258ad7db15ecccd9e38baa6456a5153e9e.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 629f22258ad7db15ecccd9e38baa6456a5153e9e
parent 3ba816cd672688bda5c8657e3499e734c28f24c3
Author: [email protected] &lt;unknown&gt;
Date:   Sun, 12 Feb 2012 23:13:17 +0100

applied Juliens 9base fixes on OBSD
</content>
</entry>
<entry>
<id>3ba816cd672688bda5c8657e3499e734c28f24c3</id>
<published>2011-07-05T18:25:18Z</published>
<updated>2011-07-05T18:25:18Z</updated>
<title type="text">added missing rules, thanks peth</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/3ba816cd672688bda5c8657e3499e734c28f24c3.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 3ba816cd672688bda5c8657e3499e734c28f24c3
parent 7e8dfaf921d135e0c8b2cea4d231c3a509059f7d
Author: [email protected] &lt;unknown&gt;
Date:   Tue,  5 Jul 2011 19:25:18 +0100

added missing rules, thanks peth
</content>
</entry>
<entry>
<id>7e8dfaf921d135e0c8b2cea4d231c3a509059f7d</id>
<published>2011-05-22T07:11:50Z</published>
<updated>2011-05-22T07:11:50Z</updated>
<title type="text">applied nsz&#39;s makefile cleanup, thanks Szabolcs!</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/7e8dfaf921d135e0c8b2cea4d231c3a509059f7d.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 7e8dfaf921d135e0c8b2cea4d231c3a509059f7d
parent 443de6b2ff7295c63811275a5e97659a11a5d5c0
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sun, 22 May 2011 07:11:50 +0000

applied nsz&#39;s makefile cleanup, thanks Szabolcs!
</content>
</entry>
<entry>
<id>443de6b2ff7295c63811275a5e97659a11a5d5c0</id>
<published>2011-05-08T08:26:38Z</published>
<updated>2011-05-08T08:26:38Z</updated>
<title type="text">applied sl&#39;s patch, thanks Stanley!</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/443de6b2ff7295c63811275a5e97659a11a5d5c0.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 443de6b2ff7295c63811275a5e97659a11a5d5c0
parent 6d2a7da4aae588f1bb970dbe40d66a8585d4c0bb
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sun,  8 May 2011 08:26:38 +0000

applied sl&#39;s patch, thanks Stanley!
</content>
</entry>
<entry>
<id>6d2a7da4aae588f1bb970dbe40d66a8585d4c0bb</id>
<published>2011-05-02T14:17:55Z</published>
<updated>2011-05-02T14:17:55Z</updated>
<title type="text">Update TODO.</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/6d2a7da4aae588f1bb970dbe40d66a8585d4c0bb.gph" />
<author>
<name>Uriel</name>
<email>[email protected]</email>
</author>
<content type="text">commit 6d2a7da4aae588f1bb970dbe40d66a8585d4c0bb
parent 616bc8fa86909ff44a2cda817ad43fb29a33db93
Author: Uriel &lt;[email protected]&gt;
Date:   Mon,  2 May 2011 14:17:55 +0000

Update TODO.
</content>
</entry>
<entry>
<id>616bc8fa86909ff44a2cda817ad43fb29a33db93</id>
<published>2011-02-25T13:45:57Z</published>
<updated>2011-02-25T13:45:57Z</updated>
<title type="text">applied the right man page from p9p, thanks Evil_Bob</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/616bc8fa86909ff44a2cda817ad43fb29a33db93.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 616bc8fa86909ff44a2cda817ad43fb29a33db93
parent 8afe866336de73ae7b81b601b13673cb820b8c90
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Fri, 25 Feb 2011 13:45:57 +0000

applied the right man page from p9p, thanks Evil_Bob
</content>
</entry>
<entry>
<id>8afe866336de73ae7b81b601b13673cb820b8c90</id>
<published>2011-02-25T12:58:56Z</published>
<updated>2011-02-25T12:58:56Z</updated>
<title type="text">added listen.1 placeholder, is there a man page in p9 source somewhere?</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/8afe866336de73ae7b81b601b13673cb820b8c90.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 8afe866336de73ae7b81b601b13673cb820b8c90
parent 4f7cd11b8b5e6b5b69cf29a11a85c876795da881
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Fri, 25 Feb 2011 12:58:56 +0000

added listen.1 placeholder, is there a man page in p9 source somewhere?
</content>
</entry>
<entry>
<id>4f7cd11b8b5e6b5b69cf29a11a85c876795da881</id>
<published>2011-02-23T21:56:46Z</published>
<updated>2011-02-23T21:56:46Z</updated>
<title type="text">added missing files</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/4f7cd11b8b5e6b5b69cf29a11a85c876795da881.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 4f7cd11b8b5e6b5b69cf29a11a85c876795da881
parent 60bd5888062ba341609f89bb9788fbf31123b060
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Wed, 23 Feb 2011 21:56:46 +0000

added missing files
</content>
</entry>
<entry>
<id>60bd5888062ba341609f89bb9788fbf31123b060</id>
<published>2011-02-23T21:49:39Z</published>
<updated>2011-02-23T21:49:39Z</updated>
<title type="text">applied Stanley&#39;s listen1 patch, thanks Stanley!</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/60bd5888062ba341609f89bb9788fbf31123b060.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 60bd5888062ba341609f89bb9788fbf31123b060
parent 5eee7b5bb7e801a2ab1f88d327aff192fd8fd334
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Wed, 23 Feb 2011 21:49:39 +0000

applied Stanley&#39;s listen1 patch, thanks Stanley!
</content>
</entry>
<entry>
<id>5eee7b5bb7e801a2ab1f88d327aff192fd8fd334</id>
<published>2011-01-06T09:50:05Z</published>
<updated>2011-01-06T09:50:05Z</updated>
<title type="text">added sun4u OBJTYPE</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/5eee7b5bb7e801a2ab1f88d327aff192fd8fd334.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 5eee7b5bb7e801a2ab1f88d327aff192fd8fd334
parent 6f16e4300c567ec7f42a000abce4c674dc848227
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Thu,  6 Jan 2011 09:50:05 +0000

added sun4u OBJTYPE
</content>
</entry>
<entry>
<id>6f16e4300c567ec7f42a000abce4c674dc848227</id>
<published>2011-01-06T09:30:54Z</published>
<updated>2011-01-06T09:30:54Z</updated>
<title type="text">include md5sum and added wc</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/6f16e4300c567ec7f42a000abce4c674dc848227.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 6f16e4300c567ec7f42a000abce4c674dc848227
parent ea58929c86383da9bb19f8449f48f26f25cbc3c6
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Thu,  6 Jan 2011 09:30:54 +0000

include md5sum and added wc
</content>
</entry>
<entry>
<id>ea58929c86383da9bb19f8449f48f26f25cbc3c6</id>
<published>2011-01-05T16:21:08Z</published>
<updated>2011-01-05T16:21:08Z</updated>
<title type="text">added TODO</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/ea58929c86383da9bb19f8449f48f26f25cbc3c6.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit ea58929c86383da9bb19f8449f48f26f25cbc3c6
parent 0ad0bc437baae7672db4a3975d5b8c716202939c
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Wed,  5 Jan 2011 16:21:08 +0000

added TODO
</content>
</entry>
<entry>
<id>0ad0bc437baae7672db4a3975d5b8c716202939c</id>
<published>2011-01-05T08:33:42Z</published>
<updated>2011-01-05T08:33:42Z</updated>
<title type="text">reverted have*fork.c to erik&#39;s unlimited allocation to work better together with werc posts</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/0ad0bc437baae7672db4a3975d5b8c716202939c.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 0ad0bc437baae7672db4a3975d5b8c716202939c
parent 38702511c5203e487776932e6ebdb1c0a9e80a67
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Wed,  5 Jan 2011 08:33:42 +0000

reverted have*fork.c to erik&#39;s unlimited allocation to work better together with werc posts
</content>
</entry>
<entry>
<id>38702511c5203e487776932e6ebdb1c0a9e80a67</id>
<published>2010-07-19T17:11:30Z</published>
<updated>2010-07-19T17:11:30Z</updated>
<title type="text">Sync lib9 with plan9port.</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/38702511c5203e487776932e6ebdb1c0a9e80a67.gph" />
<author>
<name>Kris Maglione</name>
<email>[email protected]</email>
</author>
<content type="text">commit 38702511c5203e487776932e6ebdb1c0a9e80a67
parent 65f285bad8c2fe136ce4c4a99f12cfc1cb2d0f68
Author: Kris Maglione &lt;[email protected]&gt;
Date:   Mon, 19 Jul 2010 13:11:30 -0400

Sync lib9 with plan9port.
</content>
</entry>
<entry>
<id>65f285bad8c2fe136ce4c4a99f12cfc1cb2d0f68</id>
<published>2010-07-19T15:50:26Z</published>
<updated>2010-07-19T15:50:26Z</updated>
<title type="text">Sync lib9 with plan9port. Fix build with bsdmake.</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/65f285bad8c2fe136ce4c4a99f12cfc1cb2d0f68.gph" />
<author>
<name>Kris Maglione</name>
<email>[email protected]</email>
</author>
<content type="text">commit 65f285bad8c2fe136ce4c4a99f12cfc1cb2d0f68
parent a3b65ffcdcc4450db02e999e89d126201852813f
Author: Kris Maglione &lt;[email protected]&gt;
Date:   Mon, 19 Jul 2010 11:50:26 -0400

Sync lib9 with plan9port. Fix build with bsdmake.
</content>
</entry>
<entry>
<id>a3b65ffcdcc4450db02e999e89d126201852813f</id>
<published>2010-07-19T06:49:13Z</published>
<updated>2010-07-19T06:49:13Z</updated>
<title type="text">applied Sebastian Liem&#39;s OpenBSD patch, thanks!</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/a3b65ffcdcc4450db02e999e89d126201852813f.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit a3b65ffcdcc4450db02e999e89d126201852813f
parent 5abaddc5f0212bf8d035638327cb0b30ee8cb843
Author: [email protected] &lt;unknown&gt;
Date:   Mon, 19 Jul 2010 07:49:13 +0100

applied Sebastian Liem&#39;s OpenBSD patch, thanks!
</content>
</entry>
<entry>
<id>5abaddc5f0212bf8d035638327cb0b30ee8cb843</id>
<published>2010-06-04T10:44:25Z</published>
<updated>2010-06-04T10:44:25Z</updated>
<title type="text">Added tag 6 for changeset 31578905a059</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/5abaddc5f0212bf8d035638327cb0b30ee8cb843.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 5abaddc5f0212bf8d035638327cb0b30ee8cb843
parent 44ec7df86c30fdb6b7ccba018b0bc5a05551ca18
Author: [email protected] &lt;unknown&gt;
Date:   Fri,  4 Jun 2010 11:44:25 +0100

Added tag 6 for changeset 31578905a059
</content>
</entry>
<entry>
<id>44ec7df86c30fdb6b7ccba018b0bc5a05551ca18</id>
<published>2010-05-29T18:23:23Z</published>
<updated>2010-05-29T18:23:23Z</updated>
<title type="text">applied dibbs patch, slightly modified though</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/44ec7df86c30fdb6b7ccba018b0bc5a05551ca18.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 44ec7df86c30fdb6b7ccba018b0bc5a05551ca18
parent 9765fabf4d48cc6af2f8870fae4dde5c975ac86c
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sat, 29 May 2010 19:23:23 +0100

applied dibbs patch, slightly modified though
</content>
</entry>
<entry>
<id>9765fabf4d48cc6af2f8870fae4dde5c975ac86c</id>
<published>2010-05-29T13:33:38Z</published>
<updated>2010-05-29T13:33:38Z</updated>
<title type="text">added sam</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/9765fabf4d48cc6af2f8870fae4dde5c975ac86c.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 9765fabf4d48cc6af2f8870fae4dde5c975ac86c
parent 631633fb8f9afdeaf4c7002680ae4913d0c36397
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sat, 29 May 2010 14:33:38 +0100

added sam
</content>
</entry>
<entry>
<id>631633fb8f9afdeaf4c7002680ae4913d0c36397</id>
<published>2010-05-29T10:58:52Z</published>
<updated>2010-05-29T10:58:52Z</updated>
<title type="text">renamed ed&#39;s internal mktemp</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/631633fb8f9afdeaf4c7002680ae4913d0c36397.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 631633fb8f9afdeaf4c7002680ae4913d0c36397
parent baa580c2a2190234f86224d627eeac9d29f6e7d7
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sat, 29 May 2010 11:58:52 +0100

renamed ed&#39;s internal mktemp
</content>
</entry>
<entry>
<id>baa580c2a2190234f86224d627eeac9d29f6e7d7</id>
<published>2010-05-28T10:32:00Z</published>
<updated>2010-05-28T10:32:00Z</updated>
<title type="text">added factor.1 and primes.1 stub</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/baa580c2a2190234f86224d627eeac9d29f6e7d7.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit baa580c2a2190234f86224d627eeac9d29f6e7d7
parent fa62640154da08c5fd229af50efde0d33871a0aa
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Fri, 28 May 2010 11:32:00 +0100

added factor.1 and primes.1 stub
</content>
</entry>
<entry>
<id>fa62640154da08c5fd229af50efde0d33871a0aa</id>
<published>2010-05-28T10:30:17Z</published>
<updated>2010-05-28T10:30:17Z</updated>
<title type="text">added commands as discussed with Uriel yesterday</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/fa62640154da08c5fd229af50efde0d33871a0aa.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit fa62640154da08c5fd229af50efde0d33871a0aa
parent 85bacddf7706d2c89c30c2433fb8c43cd794cdb5
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Fri, 28 May 2010 11:30:17 +0100

added commands as discussed with Uriel yesterday
</content>
</entry>
<entry>
<id>85bacddf7706d2c89c30c2433fb8c43cd794cdb5</id>
<published>2010-05-27T12:32:03Z</published>
<updated>2010-05-27T12:32:03Z</updated>
<title type="text">added TODO</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/85bacddf7706d2c89c30c2433fb8c43cd794cdb5.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 85bacddf7706d2c89c30c2433fb8c43cd794cdb5
parent d37eb1034e3bab754a24c9629fc369545f7c9b67
Author: [email protected] &lt;unknown&gt;
Date:   Thu, 27 May 2010 13:32:03 +0100

added TODO
</content>
</entry>
<entry>
<id>d37eb1034e3bab754a24c9629fc369545f7c9b67</id>
<published>2010-05-27T12:31:50Z</published>
<updated>2010-05-27T12:31:50Z</updated>
<title type="text">added md5sum</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/d37eb1034e3bab754a24c9629fc369545f7c9b67.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit d37eb1034e3bab754a24c9629fc369545f7c9b67
parent 78a6c092e93295e60ed4cba344117a34b586d7da
Author: [email protected] &lt;unknown&gt;
Date:   Thu, 27 May 2010 13:31:50 +0100

added md5sum
</content>
</entry>
<entry>
<id>78a6c092e93295e60ed4cba344117a34b586d7da</id>
<published>2010-05-27T12:02:29Z</published>
<updated>2010-05-27T12:02:29Z</updated>
<title type="text">added fmt as well</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/78a6c092e93295e60ed4cba344117a34b586d7da.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 78a6c092e93295e60ed4cba344117a34b586d7da
parent e70375948b9e9afebde07fb294abf5f039f19d44
Author: [email protected] &lt;unknown&gt;
Date:   Thu, 27 May 2010 13:02:29 +0100

added fmt as well
</content>
</entry>
<entry>
<id>e70375948b9e9afebde07fb294abf5f039f19d44</id>
<published>2010-05-27T09:26:43Z</published>
<updated>2010-05-27T09:26:43Z</updated>
<title type="text">added sha1sum and ed, enabled factor and primes, increases version to 6, remaining work is syncing with most recent code and applying some patches to rc</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/e70375948b9e9afebde07fb294abf5f039f19d44.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit e70375948b9e9afebde07fb294abf5f039f19d44
parent 7dce804fe658181cb8cbb102a525ca34b4fb0006
Author: [email protected] &lt;unknown&gt;
Date:   Thu, 27 May 2010 10:26:43 +0100

added sha1sum and ed, enabled factor and primes, increases version to 6, remaining work is syncing with most recent code and applying some patches to rc
</content>
</entry>
<entry>
<id>7dce804fe658181cb8cbb102a525ca34b4fb0006</id>
<published>2010-04-27T14:48:07Z</published>
<updated>2010-04-27T14:48:07Z</updated>
<title type="text">merge</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/7dce804fe658181cb8cbb102a525ca34b4fb0006.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 7dce804fe658181cb8cbb102a525ca34b4fb0006
parent a7102135eff7e934b6616a59dcb83c09bf188f06
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Tue, 27 Apr 2010 14:48:07 +0000

merge
</content>
</entry>
<entry>
<id>a7102135eff7e934b6616a59dcb83c09bf188f06</id>
<published>2010-04-27T14:47:43Z</published>
<updated>2010-04-27T14:47:43Z</updated>
<title type="text">added missing man pages, thanks to pmarin for his digging</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/a7102135eff7e934b6616a59dcb83c09bf188f06.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit a7102135eff7e934b6616a59dcb83c09bf188f06
parent 942791ab23de64d2580e3143ba3866ad85fa8ab3
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Tue, 27 Apr 2010 14:47:43 +0000

added missing man pages, thanks to pmarin for his digging
</content>
</entry>
<entry>
<id>07785c2b7ed7c1c38a9cd2e782acf0fc347392f2</id>
<published>2010-04-27T07:50:05Z</published>
<updated>2010-04-27T07:50:05Z</updated>
<title type="text">updated some man pages that I could find</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/07785c2b7ed7c1c38a9cd2e782acf0fc347392f2.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 07785c2b7ed7c1c38a9cd2e782acf0fc347392f2
parent 3510aaba60ec5a1e1d9db66cb8a898c2a06389e2
Author: [email protected] &lt;unknown&gt;
Date:   Tue, 27 Apr 2010 08:50:05 +0100

updated some man pages that I could find
</content>
</entry>
<entry>
<id>3510aaba60ec5a1e1d9db66cb8a898c2a06389e2</id>
<published>2010-04-25T11:10:19Z</published>
<updated>2010-04-25T11:10:19Z</updated>
<title type="text">Added tag 5 for changeset 5f3d19e583ff</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/3510aaba60ec5a1e1d9db66cb8a898c2a06389e2.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 3510aaba60ec5a1e1d9db66cb8a898c2a06389e2
parent b4d70c74a47b2b92751a661f74a2b2247362cae6
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sun, 25 Apr 2010 12:10:19 +0100

Added tag 5 for changeset 5f3d19e583ff
</content>
</entry>
<entry>
<id>b4d70c74a47b2b92751a661f74a2b2247362cae6</id>
<published>2010-04-25T11:10:12Z</published>
<updated>2010-04-25T11:10:12Z</updated>
<title type="text">prepared 9base-5 release</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/b4d70c74a47b2b92751a661f74a2b2247362cae6.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit b4d70c74a47b2b92751a661f74a2b2247362cae6
parent b760594c08c602c775f585b105108e710cf7e811
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sun, 25 Apr 2010 12:10:12 +0100

prepared 9base-5 release
</content>
</entry>
<entry>
<id>b760594c08c602c775f585b105108e710cf7e811</id>
<published>2010-04-13T15:30:34Z</published>
<updated>2010-04-13T15:30:34Z</updated>
<title type="text">another fix</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/b760594c08c602c775f585b105108e710cf7e811.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit b760594c08c602c775f585b105108e710cf7e811
parent 78cf15c824fb149d0a8a1f2f751efb8477c3168b
Author: [email protected] &lt;unknown&gt;
Date:   Tue, 13 Apr 2010 16:30:34 +0100

another fix
</content>
</entry>
<entry>
<id>78cf15c824fb149d0a8a1f2f751efb8477c3168b</id>
<published>2010-04-13T15:19:01Z</published>
<updated>2010-04-13T15:19:01Z</updated>
<title type="text">update</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/78cf15c824fb149d0a8a1f2f751efb8477c3168b.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 78cf15c824fb149d0a8a1f2f751efb8477c3168b
parent a6b5f13ce8d4c644d0ea555804aadcb194da667e
Author: [email protected] &lt;unknown&gt;
Date:   Tue, 13 Apr 2010 16:19:01 +0100

update
</content>
</entry>
<entry>
<id>a6b5f13ce8d4c644d0ea555804aadcb194da667e</id>
<published>2010-04-11T18:15:05Z</published>
<updated>2010-04-11T18:15:05Z</updated>
<title type="text">extend copyright</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/a6b5f13ce8d4c644d0ea555804aadcb194da667e.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit a6b5f13ce8d4c644d0ea555804aadcb194da667e
parent 45ac8c8bd851ba5081939a63dd8a57421abec09a
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sun, 11 Apr 2010 19:15:05 +0100

extend copyright
</content>
</entry>
<entry>
<id>45ac8c8bd851ba5081939a63dd8a57421abec09a</id>
<published>2010-04-11T18:13:01Z</published>
<updated>2010-04-11T18:13:01Z</updated>
<title type="text">removed tac, added tail from p9 instead (tac == tail -r)</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/45ac8c8bd851ba5081939a63dd8a57421abec09a.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 45ac8c8bd851ba5081939a63dd8a57421abec09a
parent 942791ab23de64d2580e3143ba3866ad85fa8ab3
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sun, 11 Apr 2010 19:13:01 +0100

removed tac, added tail from p9 instead (tac == tail -r)
</content>
</entry>
<entry>
<id>942791ab23de64d2580e3143ba3866ad85fa8ab3</id>
<published>2010-04-01T14:03:15Z</published>
<updated>2010-04-01T14:03:15Z</updated>
<title type="text">implemented &#39;tac&#39; in a suckless way remove mtime binary from the repository</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/942791ab23de64d2580e3143ba3866ad85fa8ab3.gph" />
<author>
<name>pancake</name>
<email>nopcode.org</email>
</author>
<content type="text">commit 942791ab23de64d2580e3143ba3866ad85fa8ab3
parent 3bdea00b978d1f91addcee5a8afd01acd7db3ea4
Author: pancake &lt;nopcode.org&gt;
Date:   Thu,  1 Apr 2010 16:03:15 +0200

implemented &#39;tac&#39; in a suckless way
remove mtime binary from the repository
</content>
</entry>
<entry>
<id>3bdea00b978d1f91addcee5a8afd01acd7db3ea4</id>
<published>2010-03-27T23:23:08Z</published>
<updated>2010-03-27T23:23:08Z</updated>
<title type="text">several fixes</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/3bdea00b978d1f91addcee5a8afd01acd7db3ea4.gph" />
<author>
<name>anselm@garbe</name>
<email>unknown</email>
</author>
<content type="text">commit 3bdea00b978d1f91addcee5a8afd01acd7db3ea4
parent 291717bfdcda5bf5c12c037d7c4bbcc79e12bb94
Author: anselm@garbe &lt;unknown&gt;
Date:   Sat, 27 Mar 2010 23:23:08 +0000

several fixes
</content>
</entry>
<entry>
<id>291717bfdcda5bf5c12c037d7c4bbcc79e12bb94</id>
<published>2010-03-22T08:27:23Z</published>
<updated>2010-03-22T08:27:23Z</updated>
<title type="text">disabled two programs</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/291717bfdcda5bf5c12c037d7c4bbcc79e12bb94.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 291717bfdcda5bf5c12c037d7c4bbcc79e12bb94
parent 6d511bc7ba2f3e6ded8e7429776c6df29ed82300
Author: [email protected] &lt;unknown&gt;
Date:   Mon, 22 Mar 2010 08:27:23 +0000

disabled two programs
</content>
</entry>
<entry>
<id>6d511bc7ba2f3e6ded8e7429776c6df29ed82300</id>
<published>2010-03-22T08:13:36Z</published>
<updated>2010-03-22T08:13:36Z</updated>
<title type="text">added freq, factor, fortune and primes as well, now is good</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/6d511bc7ba2f3e6ded8e7429776c6df29ed82300.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 6d511bc7ba2f3e6ded8e7429776c6df29ed82300
parent de8d58acf8db7718da376c928cbde0c3a24869a2
Author: [email protected] &lt;unknown&gt;
Date:   Mon, 22 Mar 2010 08:13:36 +0000

added freq, factor, fortune and primes as well, now is good
</content>
</entry>
<entry>
<id>de8d58acf8db7718da376c928cbde0c3a24869a2</id>
<published>2010-03-22T08:08:16Z</published>
<updated>2010-03-22T08:08:16Z</updated>
<title type="text">missing bit of getflags</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/de8d58acf8db7718da376c928cbde0c3a24869a2.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit de8d58acf8db7718da376c928cbde0c3a24869a2
parent a5e01b5d6c03c220712198ce23f4b7fc25d43dfa
Author: [email protected] &lt;unknown&gt;
Date:   Mon, 22 Mar 2010 08:08:16 +0000

missing bit of getflags
</content>
</entry>
<entry>
<id>a5e01b5d6c03c220712198ce23f4b7fc25d43dfa</id>
<published>2010-03-22T08:08:01Z</published>
<updated>2010-03-22T08:08:01Z</updated>
<title type="text">added getflags</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/a5e01b5d6c03c220712198ce23f4b7fc25d43dfa.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit a5e01b5d6c03c220712198ce23f4b7fc25d43dfa
parent 9659cd5b37e1f0a6539a0ec5cf145d0e649fc973
Author: [email protected] &lt;unknown&gt;
Date:   Mon, 22 Mar 2010 08:08:01 +0000

added getflags
</content>
</entry>
<entry>
<id>9659cd5b37e1f0a6539a0ec5cf145d0e649fc973</id>
<published>2010-03-22T08:07:02Z</published>
<updated>2010-03-22T08:07:02Z</updated>
<title type="text">added mkdir as well</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/9659cd5b37e1f0a6539a0ec5cf145d0e649fc973.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 9659cd5b37e1f0a6539a0ec5cf145d0e649fc973
parent 07cf44e6452f7928fe20cc2849c249b28d19344f
Author: [email protected] &lt;unknown&gt;
Date:   Mon, 22 Mar 2010 08:07:02 +0000

added mkdir as well
</content>
</entry>
<entry>
<id>07cf44e6452f7928fe20cc2849c249b28d19344f</id>
<published>2010-03-22T08:04:31Z</published>
<updated>2010-03-22T08:04:31Z</updated>
<title type="text">added mtime, next version will be 5</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/07cf44e6452f7928fe20cc2849c249b28d19344f.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 07cf44e6452f7928fe20cc2849c249b28d19344f
parent 244b935e44cbdc4d361135bf83c083688b943eb4
Author: [email protected] &lt;unknown&gt;
Date:   Mon, 22 Mar 2010 08:04:31 +0000

added mtime, next version will be 5
</content>
</entry>
<entry>
<id>244b935e44cbdc4d361135bf83c083688b943eb4</id>
<published>2009-10-15T20:35:28Z</published>
<updated>2009-10-15T20:35:28Z</updated>
<title type="text">Don&#39;t allow clobbering of troff&#39;s CFLAGS by config.mk</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/244b935e44cbdc4d361135bf83c083688b943eb4.gph" />
<author>
<name>Kris Maglione</name>
<email>[email protected]</email>
</author>
<content type="text">commit 244b935e44cbdc4d361135bf83c083688b943eb4
parent f71961be90faae365d90c29f96c0c1dd309953d2
Author: Kris Maglione &lt;[email protected]&gt;
Date:   Thu, 15 Oct 2009 16:35:28 -0400

Don&#39;t allow clobbering of troff&#39;s CFLAGS by config.mk
</content>
</entry>
<entry>
<id>f71961be90faae365d90c29f96c0c1dd309953d2</id>
<published>2009-10-15T08:12:19Z</published>
<updated>2009-10-15T08:12:19Z</updated>
<title type="text">Fix possible troff crash with misconfigured build</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/f71961be90faae365d90c29f96c0c1dd309953d2.gph" />
<author>
<name>Kris Maglione</name>
<email>[email protected]</email>
</author>
<content type="text">commit f71961be90faae365d90c29f96c0c1dd309953d2
parent decec5092e45992cd0ae406d7c9ffb4ccd079bdf
Author: Kris Maglione &lt;[email protected]&gt;
Date:   Thu, 15 Oct 2009 04:12:19 -0400

Fix possible troff crash with misconfigured build
</content>
</entry>
<entry>
<id>decec5092e45992cd0ae406d7c9ffb4ccd079bdf</id>
<published>2009-09-13T20:34:44Z</published>
<updated>2009-09-13T20:34:44Z</updated>
<title type="text">better patch</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/decec5092e45992cd0ae406d7c9ffb4ccd079bdf.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit decec5092e45992cd0ae406d7c9ffb4ccd079bdf
parent 025a6f5b514bbcccf6471d6e29d6197f5c2166e8
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sun, 13 Sep 2009 21:34:44 +0100

better patch
</content>
</entry>
<entry>
<id>025a6f5b514bbcccf6471d6e29d6197f5c2166e8</id>
<published>2009-09-13T20:28:18Z</published>
<updated>2009-09-13T20:28:18Z</updated>
<title type="text">prefixing mbwc.c funcs with p9</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/025a6f5b514bbcccf6471d6e29d6197f5c2166e8.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 025a6f5b514bbcccf6471d6e29d6197f5c2166e8
parent 3e61fa6987d4845b253cdd844aa52b32b065c357
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sun, 13 Sep 2009 21:28:18 +0100

prefixing mbwc.c funcs with p9
</content>
</entry>
<entry>
<id>3e61fa6987d4845b253cdd844aa52b32b065c357</id>
<published>2009-08-27T17:54:00Z</published>
<updated>2009-08-27T17:54:00Z</updated>
<title type="text">Added tag 4 for changeset 25d1757fba6b</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/3e61fa6987d4845b253cdd844aa52b32b065c357.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 3e61fa6987d4845b253cdd844aa52b32b065c357
parent 03259d69b6fd02e0fccd2444fb36b8aae998deb1
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Thu, 27 Aug 2009 18:54:00 +0100

Added tag 4 for changeset 25d1757fba6b
</content>
</entry>
<entry>
<id>03259d69b6fd02e0fccd2444fb36b8aae998deb1</id>
<published>2009-08-27T17:51:52Z</published>
<updated>2009-08-27T17:51:52Z</updated>
<title type="text">update</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/03259d69b6fd02e0fccd2444fb36b8aae998deb1.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 03259d69b6fd02e0fccd2444fb36b8aae998deb1
parent 8d32bc598c90490fc0a9243b2c0f723958be604c
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Thu, 27 Aug 2009 18:51:52 +0100

update
</content>
</entry>
<entry>
<id>8d32bc598c90490fc0a9243b2c0f723958be604c</id>
<published>2009-08-27T13:15:56Z</published>
<updated>2009-08-27T13:15:56Z</updated>
<title type="text">final preparation for 9base-4</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/8d32bc598c90490fc0a9243b2c0f723958be604c.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 8d32bc598c90490fc0a9243b2c0f723958be604c
parent 1c45d63ec3ac9a4a0e63129f1c7e587bff757dc3
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Thu, 27 Aug 2009 14:15:56 +0100

final preparation for 9base-4
</content>
</entry>
<entry>
<id>1c45d63ec3ac9a4a0e63129f1c7e587bff757dc3</id>
<published>2009-08-25T19:05:27Z</published>
<updated>2009-08-25T19:05:27Z</updated>
<title type="text">added troff and made it working</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/1c45d63ec3ac9a4a0e63129f1c7e587bff757dc3.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 1c45d63ec3ac9a4a0e63129f1c7e587bff757dc3
parent a08a2a9000cf4cb01ac165f410dbe99a64191edd
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Tue, 25 Aug 2009 20:05:27 +0100

added troff and made it working
</content>
</entry>
<entry>
<id>a08a2a9000cf4cb01ac165f410dbe99a64191edd</id>
<published>2009-08-24T18:23:45Z</published>
<updated>2009-08-24T18:23:45Z</updated>
<title type="text">added mk and troff to 9base (unfinished yet, DO NOT USE)</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/a08a2a9000cf4cb01ac165f410dbe99a64191edd.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit a08a2a9000cf4cb01ac165f410dbe99a64191edd
parent c0a69251c8988bdbabf4f3d3e20f40e363990c6c
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Mon, 24 Aug 2009 19:23:45 +0100

added mk and troff to 9base (unfinished yet, DO NOT USE)
</content>
</entry>
<entry>
<id>c0a69251c8988bdbabf4f3d3e20f40e363990c6c</id>
<published>2009-08-10T14:08:41Z</published>
<updated>2009-08-10T14:08:41Z</updated>
<title type="text">applied another patch from olegfink, thx, re-enabled du in build chain</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/c0a69251c8988bdbabf4f3d3e20f40e363990c6c.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit c0a69251c8988bdbabf4f3d3e20f40e363990c6c
parent 56196e76fd80ff6fdd6365d8fa028d8b4675ff4b
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Mon, 10 Aug 2009 15:08:41 +0100

applied another patch from olegfink, thx, re-enabled du in build chain
</content>
</entry>
<entry>
<id>56196e76fd80ff6fdd6365d8fa028d8b4675ff4b</id>
<published>2009-08-10T14:05:01Z</published>
<updated>2009-08-10T14:05:01Z</updated>
<title type="text">update</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/56196e76fd80ff6fdd6365d8fa028d8b4675ff4b.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 56196e76fd80ff6fdd6365d8fa028d8b4675ff4b
parent f61f650899ccc18561eb21fce96e4770508adb71
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Mon, 10 Aug 2009 15:05:01 +0100

update
</content>
</entry>
<entry>
<id>f61f650899ccc18561eb21fce96e4770508adb71</id>
<published>2009-08-10T14:04:03Z</published>
<updated>2009-08-10T14:04:03Z</updated>
<title type="text">added olegfink&#39;s patches for adding cal and hoc</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/f61f650899ccc18561eb21fce96e4770508adb71.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit f61f650899ccc18561eb21fce96e4770508adb71
parent a34055fb4b74b06c01e0e0f9623eba002bda6ef1
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Mon, 10 Aug 2009 15:04:03 +0100

added olegfink&#39;s patches for adding cal and hoc
</content>
</entry>
<entry>
<id>9b9335d3850d001b8bdd069b8d021f025b0554a4</id>
<published>2009-08-08T08:57:36Z</published>
<updated>2009-08-08T08:57:36Z</updated>
<title type="text">added stub man page for du</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/9b9335d3850d001b8bdd069b8d021f025b0554a4.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 9b9335d3850d001b8bdd069b8d021f025b0554a4
parent 426af479a7d51773b00c96dba01817715f02408c
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sat,  8 Aug 2009 09:57:36 +0100

added stub man page for du
</content>
</entry>
<entry>
<id>426af479a7d51773b00c96dba01817715f02408c</id>
<published>2009-08-08T08:54:20Z</published>
<updated>2009-08-08T08:54:20Z</updated>
<title type="text">merge</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/426af479a7d51773b00c96dba01817715f02408c.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 426af479a7d51773b00c96dba01817715f02408c
parent 37674df46f5c1753ca39e274d8489edb54d90166
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sat,  8 Aug 2009 09:54:20 +0100

merge
</content>
</entry>
<entry>
<id>37674df46f5c1753ca39e274d8489edb54d90166</id>
<published>2009-08-08T08:53:34Z</published>
<updated>2009-08-08T08:53:34Z</updated>
<title type="text">added du from plan9port</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/37674df46f5c1753ca39e274d8489edb54d90166.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 37674df46f5c1753ca39e274d8489edb54d90166
parent 059dcd31c983441d637d17f521ef6dd144215694
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sat,  8 Aug 2009 09:53:34 +0100

added du from plan9port
</content>
</entry>
<entry>
<id>a34055fb4b74b06c01e0e0f9623eba002bda6ef1</id>
<published>2009-08-03T09:15:07Z</published>
<updated>2009-08-03T09:15:07Z</updated>
<title type="text">Added tag 3 for changeset 7c1decda5b50</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/a34055fb4b74b06c01e0e0f9623eba002bda6ef1.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit a34055fb4b74b06c01e0e0f9623eba002bda6ef1
parent 4e0debbdf6662c3b7449b725e9fd1b26c4e0ec60
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Mon,  3 Aug 2009 10:15:07 +0100

Added tag 3 for changeset 7c1decda5b50
</content>
</entry>
<entry>
<id>4e0debbdf6662c3b7449b725e9fd1b26c4e0ec60</id>
<published>2009-08-03T09:14:59Z</published>
<updated>2009-08-03T09:14:59Z</updated>
<title type="text">unused</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/4e0debbdf6662c3b7449b725e9fd1b26c4e0ec60.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 4e0debbdf6662c3b7449b725e9fd1b26c4e0ec60
parent 63069fc74a8ca095331d8b8a4bed51a6bb85edd8
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Mon,  3 Aug 2009 10:14:59 +0100

unused
</content>
</entry>
<entry>
<id>63069fc74a8ca095331d8b8a4bed51a6bb85edd8</id>
<published>2009-08-03T09:13:59Z</published>
<updated>2009-08-03T09:13:59Z</updated>
<title type="text">update</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/63069fc74a8ca095331d8b8a4bed51a6bb85edd8.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 63069fc74a8ca095331d8b8a4bed51a6bb85edd8
parent 059dcd31c983441d637d17f521ef6dd144215694
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Mon,  3 Aug 2009 10:13:59 +0100

update
</content>
</entry>
<entry>
<id>059dcd31c983441d637d17f521ef6dd144215694</id>
<published>2009-08-02T09:31:02Z</published>
<updated>2009-08-02T09:31:02Z</updated>
<title type="text">some sanity fixes</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/059dcd31c983441d637d17f521ef6dd144215694.gph" />
<author>
<name>[email protected]</name>
<email>unknown</email>
</author>
<content type="text">commit 059dcd31c983441d637d17f521ef6dd144215694
parent c5ba8cfeb807114e3cd9fd5ba7c3bc0884e1abad
Author: [email protected] &lt;unknown&gt;
Date:   Sun,  2 Aug 2009 09:31:02 +0000

some sanity fixes
</content>
</entry>
<entry>
<id>c5ba8cfeb807114e3cd9fd5ba7c3bc0884e1abad</id>
<published>2009-08-02T09:24:29Z</published>
<updated>2009-08-02T09:24:29Z</updated>
<title type="text">added some tweaks</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/c5ba8cfeb807114e3cd9fd5ba7c3bc0884e1abad.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit c5ba8cfeb807114e3cd9fd5ba7c3bc0884e1abad
parent 4e6a3f7520886923dc03eb96764fc0b09c52733e
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sun,  2 Aug 2009 10:24:29 +0100

added some tweaks
</content>
</entry>
<entry>
<id>4e6a3f7520886923dc03eb96764fc0b09c52733e</id>
<published>2009-08-02T09:07:10Z</published>
<updated>2009-08-02T09:07:10Z</updated>
<title type="text">some tweaks, install into /usr/local/plan9 to provide better compatibility with p9p and apps written on top of p9p such as werc</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/4e6a3f7520886923dc03eb96764fc0b09c52733e.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 4e6a3f7520886923dc03eb96764fc0b09c52733e
parent abc072187111c9098f80518e9c8d0b81ae1577d0
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Sun,  2 Aug 2009 10:07:10 +0100

some tweaks, install into /usr/local/plan9 to provide better compatibility with p9p and apps written on top of p9p such as werc
</content>
</entry>
<entry>
<id>abc072187111c9098f80518e9c8d0b81ae1577d0</id>
<published>2009-07-31T20:02:58Z</published>
<updated>2009-07-31T20:02:58Z</updated>
<title type="text">upgraded 9base to p9p 20090731</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/abc072187111c9098f80518e9c8d0b81ae1577d0.gph" />
<author>
<name>Anselm R Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit abc072187111c9098f80518e9c8d0b81ae1577d0
parent 89cb321008eab13102fa98bd1b28caadc2c5218e
Author: Anselm R Garbe &lt;[email protected]&gt;
Date:   Fri, 31 Jul 2009 21:02:58 +0100

upgraded 9base to p9p 20090731
</content>
</entry>
<entry>
<id>89cb321008eab13102fa98bd1b28caadc2c5218e</id>
<published>2006-02-09T12:39:50Z</published>
<updated>2006-02-09T12:39:50Z</updated>
<title type="text">Added tag snap for changeset 8ab76db4077c67fe71a34f8f287b69a3adf9de03</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/89cb321008eab13102fa98bd1b28caadc2c5218e.gph" />
<author>
<name>Anselm R. Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 89cb321008eab13102fa98bd1b28caadc2c5218e
parent 662bc6335485c482df0b618cc85fe758197e0c0b
Author: Anselm R. Garbe &lt;[email protected]&gt;
Date:   Thu,  9 Feb 2006 13:39:50 +0100

Added tag snap for changeset 8ab76db4077c67fe71a34f8f287b69a3adf9de03
</content>
</entry>
<entry>
<id>662bc6335485c482df0b618cc85fe758197e0c0b</id>
<published>2006-02-09T12:37:57Z</published>
<updated>2006-02-09T12:37:57Z</updated>
<title type="text">prepared snap</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/662bc6335485c482df0b618cc85fe758197e0c0b.gph" />
<author>
<name>Anselm R. Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 662bc6335485c482df0b618cc85fe758197e0c0b
parent cf77a035ab614eec460ac6ba1c92412bd549569d
Author: Anselm R. Garbe &lt;[email protected]&gt;
Date:   Thu,  9 Feb 2006 13:37:57 +0100

prepared snap

</content>
</entry>
<entry>
<id>cf77a035ab614eec460ac6ba1c92412bd549569d</id>
<published>2006-02-09T12:15:45Z</published>
<updated>2006-02-09T12:15:45Z</updated>
<title type="text">we need getcallerpc crap to prevent several coredumps, though rc is not threaded, oh dear!</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/cf77a035ab614eec460ac6ba1c92412bd549569d.gph" />
<author>
<name>Anselm R. Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit cf77a035ab614eec460ac6ba1c92412bd549569d
parent 6ccdc8cffd953f6dae2692e687d19ac6e58a7e2b
Author: Anselm R. Garbe &lt;[email protected]&gt;
Date:   Thu,  9 Feb 2006 13:15:45 +0100

we need getcallerpc crap to prevent several coredumps, though rc is not threaded, oh dear!

</content>
</entry>
<entry>
<id>6ccdc8cffd953f6dae2692e687d19ac6e58a7e2b</id>
<published>2006-01-31T18:37:59Z</published>
<updated>2006-01-31T18:37:59Z</updated>
<title type="text">added ls</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/6ccdc8cffd953f6dae2692e687d19ac6e58a7e2b.gph" />
<author>
<name>Anselm R. Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 6ccdc8cffd953f6dae2692e687d19ac6e58a7e2b
parent b7abc7dd08640a98b0af92b05bb0a57e614f3160
Author: Anselm R. Garbe &lt;[email protected]&gt;
Date:   Tue, 31 Jan 2006 20:37:59 +0200

added ls

</content>
</entry>
<entry>
<id>b7abc7dd08640a98b0af92b05bb0a57e614f3160</id>
<published>2006-01-29T20:20:00Z</published>
<updated>2006-01-29T20:20:00Z</updated>
<title type="text">Added tag snap for changeset 664144b8c1a4e0aae3535eb49ee0bc2d3679da5a</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/b7abc7dd08640a98b0af92b05bb0a57e614f3160.gph" />
<author>
<name>Anselm R. Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit b7abc7dd08640a98b0af92b05bb0a57e614f3160
parent 08aaa60fa84ea14afed7c7b0ead4307263cc118f
Author: Anselm R. Garbe &lt;[email protected]&gt;
Date:   Sun, 29 Jan 2006 22:20:00 +0200

Added tag snap for changeset 664144b8c1a4e0aae3535eb49ee0bc2d3679da5a
</content>
</entry>
<entry>
<id>08aaa60fa84ea14afed7c7b0ead4307263cc118f</id>
<published>2006-01-29T20:17:04Z</published>
<updated>2006-01-29T20:17:04Z</updated>
<title type="text">added read to 9base</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/08aaa60fa84ea14afed7c7b0ead4307263cc118f.gph" />
<author>
<name>Anselm R. Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 08aaa60fa84ea14afed7c7b0ead4307263cc118f
parent 2b4ad5ac67349aef64970f40d871b16b6f0262f3
Author: Anselm R. Garbe &lt;[email protected]&gt;
Date:   Sun, 29 Jan 2006 22:17:04 +0200

added read to 9base

</content>
</entry>
<entry>
<id>2b4ad5ac67349aef64970f40d871b16b6f0262f3</id>
<published>2006-01-25T14:20:35Z</published>
<updated>2006-01-25T14:20:35Z</updated>
<title type="text">Added tag 2 for changeset 538338114742f2e81f6c52a5a323bdf7ca0d5d86</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/2b4ad5ac67349aef64970f40d871b16b6f0262f3.gph" />
<author>
<name>Anselm R. Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 2b4ad5ac67349aef64970f40d871b16b6f0262f3
parent 47503caffc3e64dc14f358068326c4e1b1e818b8
Author: Anselm R. Garbe &lt;[email protected]&gt;
Date:   Wed, 25 Jan 2006 16:20:35 +0200

Added tag 2 for changeset 538338114742f2e81f6c52a5a323bdf7ca0d5d86
</content>
</entry>
<entry>
<id>47503caffc3e64dc14f358068326c4e1b1e818b8</id>
<published>2006-01-25T14:20:21Z</published>
<updated>2006-01-25T14:20:21Z</updated>
<title type="text">prepared 9base-2</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/47503caffc3e64dc14f358068326c4e1b1e818b8.gph" />
<author>
<name>Anselm R. Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 47503caffc3e64dc14f358068326c4e1b1e818b8
parent fbd05cbd195a12683bcc05dfb6d54955c18fef19
Author: Anselm R. Garbe &lt;[email protected]&gt;
Date:   Wed, 25 Jan 2006 16:20:21 +0200

prepared 9base-2

</content>
</entry>
<entry>
<id>fbd05cbd195a12683bcc05dfb6d54955c18fef19</id>
<published>2006-01-24T14:23:07Z</published>
<updated>2006-01-24T14:23:07Z</updated>
<title type="text">added dc to 9base as requested</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/fbd05cbd195a12683bcc05dfb6d54955c18fef19.gph" />
<author>
<name>Anselm R. Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit fbd05cbd195a12683bcc05dfb6d54955c18fef19
parent 877adeba5fbe1704ba41961099e452eb8e88ebd7
Author: Anselm R. Garbe &lt;[email protected]&gt;
Date:   Tue, 24 Jan 2006 16:23:07 +0200

added dc to 9base as requested

</content>
</entry>
<entry>
<id>877adeba5fbe1704ba41961099e452eb8e88ebd7</id>
<published>2006-01-23T15:39:06Z</published>
<updated>2006-01-23T15:39:06Z</updated>
<title type="text">prepared new snap</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/877adeba5fbe1704ba41961099e452eb8e88ebd7.gph" />
<author>
<name>Anselm R. Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit 877adeba5fbe1704ba41961099e452eb8e88ebd7
parent bebc443496e27d1eebfdbabc7bed4257b23dbcea
Author: Anselm R. Garbe &lt;[email protected]&gt;
Date:   Mon, 23 Jan 2006 17:39:06 +0200

prepared new snap

</content>
</entry>
<entry>
<id>bebc443496e27d1eebfdbabc7bed4257b23dbcea</id>
<published>2006-01-23T15:36:21Z</published>
<updated>2006-01-23T15:36:21Z</updated>
<title type="text">removed getcallerpc dependency, we have no threads, thus no locking needed</title>
<link rel="alternate" href="gopher://suckless.org/1/git/9base/commit/bebc443496e27d1eebfdbabc7bed4257b23dbcea.gph" />
<author>
<name>Anselm R. Garbe</name>
<email>[email protected]</email>
</author>
<content type="text">commit bebc443496e27d1eebfdbabc7bed4257b23dbcea
parent a106699167c3750d8d61f5200b923b62de6906c9
Author: Anselm R. Garbe &lt;[email protected]&gt;
Date:   Mon, 23 Jan 2006 17:36:21 +0200

removed getcallerpc dependency, we have no threads, thus no locking needed

</content>
</entry>
</feed>