<feed xmlns='http://www.w3.org/2005/Atom'>
<title>user/sven/openrc.git/src/libeinfo, branch github/runit</title>
<subtitle>[no description]</subtitle>
<id>https://git.stealer.net/cgit.cgi/user/sven/openrc.git/atom?h=github%2Frunit</id>
<link rel='self' href='https://git.stealer.net/cgit.cgi/user/sven/openrc.git/atom?h=github%2Frunit'/>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/openrc.git/'/>
<updated>2015-01-24T19:48:53Z</updated>
<entry>
<title>Prioritize local includes and libraries</title>
<updated>2015-01-24T19:48:53Z</updated>
<author>
<name>Will Miles</name>
<email>wmiles@sgl.com</email>
</author>
<published>2015-01-22T14:43:28Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/openrc.git/commit/?id=3f80f22e22ec16ed517397fd303c3df99f9340fc'/>
<id>urn:sha1:3f80f22e22ec16ed517397fd303c3df99f9340fc</id>
<content type='text'>
This fixes #35.
</content>
</entry>
<entry>
<title>einfo.h, rc.h.in: simplify __BEGIN_DECLS logic</title>
<updated>2014-10-22T11:46:49Z</updated>
<author>
<name>Anthony G. Basile</name>
<email>blueness@gentoo.org</email>
</author>
<published>2014-10-22T11:46:49Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/openrc.git/commit/?id=86e9aa0d36813e2630c6613cd71c3ce8db642f71'/>
<id>urn:sha1:86e9aa0d36813e2630c6613cd71c3ce8db642f71</id>
<content type='text'>
There is no need to redefine __BEGIN_DECLS and __END_DECLS.
We simplify the logic here and avoid undefining these macros.
</content>
</entry>
<entry>
<title>einfo.h, rc.h.in: ensure __BEGIN_DECLS is defined</title>
<updated>2014-10-21T13:39:34Z</updated>
<author>
<name>Anthony G. Basile</name>
<email>blueness@gentoo.org</email>
</author>
<published>2014-10-21T13:31:07Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/openrc.git/commit/?id=4a08517cac3c68c232694db7288654b58b68b8ba'/>
<id>urn:sha1:4a08517cac3c68c232694db7288654b58b68b8ba</id>
<content type='text'>
Some Standard C Libraries, like musl, don't define __BEGIN_DECLS
or __END_DECLS.  We add some ifdef magic to ensure these are
available.
</content>
</entry>
<entry>
<title>Revert "Make einfo routines private"</title>
<updated>2013-10-21T18:49:41Z</updated>
<author>
<name>William Hubbs</name>
<email>w.d.hubbs@gmail.com</email>
</author>
<published>2013-10-16T17:55:37Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/openrc.git/commit/?id=48981be8a872c7a0191d2519793205276fdc423a'/>
<id>urn:sha1:48981be8a872c7a0191d2519793205276fdc423a</id>
<content type='text'>
This reverts commit de88aff0a839844526ae262f8961ec4372fed238.
I was advised that splashutils links to libeinfo, so we do have a
consumer for this library.
</content>
</entry>
<entry>
<title>Make einfo routines private</title>
<updated>2013-09-27T03:18:21Z</updated>
<author>
<name>William Hubbs</name>
<email>w.d.hubbs@gmail.com</email>
</author>
<published>2013-09-23T01:23:56Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/openrc.git/commit/?id=de88aff0a839844526ae262f8961ec4372fed238'/>
<id>urn:sha1:de88aff0a839844526ae262f8961ec4372fed238</id>
<content type='text'>
The libeinfo library has no consumers other than OpenRC, so there is no
reason for it to be maintained as a library. The einfo routines are now
an object that links with the rc binary.
</content>
</entry>
<entry>
<title>libeinfo: add separate variable to suppress eerror messages</title>
<updated>2013-09-03T18:03:55Z</updated>
<author>
<name>William Hubbs</name>
<email>w.d.hubbs@gmail.com</email>
</author>
<published>2013-09-01T20:06:15Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/openrc.git/commit/?id=2590bf7a2bc40e2fcd5cbe1f4f063d820c2c5438'/>
<id>urn:sha1:2590bf7a2bc40e2fcd5cbe1f4f063d820c2c5438</id>
<content type='text'>
Add an EERROR_QUIET environment variable which works like EINFO_QUIET
but for the eerror functions. This will allow library consumers to
choose whether to suppress eerror messages separately from einfo and
ewarn messages.

X-Gentoo-Bug: 482396
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=482396
</content>
</entry>
<entry>
<title>libeinfo: suppress output for eerror* functions</title>
<updated>2013-08-28T19:23:46Z</updated>
<author>
<name>William Hubbs</name>
<email>w.d.hubbs@gmail.com</email>
</author>
<published>2013-08-28T19:23:46Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/openrc.git/commit/?id=a78b18e291bd7f55b176958074f41327f2d0e196'/>
<id>urn:sha1:a78b18e291bd7f55b176958074f41327f2d0e196</id>
<content type='text'>
This makes the eerror* functions honor the EINFO_QUIET environment
variable like the einfo* and ewarn* functions.

X-Gentoo-Bug: 482396
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=482396
</content>
</entry>
<entry>
<title>Revert "Libeinfo: do not suppress ewarn() messages"</title>
<updated>2013-08-27T15:26:48Z</updated>
<author>
<name>William Hubbs</name>
<email>w.d.hubbs@gmail.com</email>
</author>
<published>2013-08-26T19:31:34Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/openrc.git/commit/?id=72b58b9e6b7271bd4b20933b2992d55f8b4d31b4'/>
<id>urn:sha1:72b58b9e6b7271bd4b20933b2992d55f8b4d31b4</id>
<content type='text'>
This reverts commit 4ee62c7903c65557c493f51d6703264a816156cd.

The previously referenced commit broke consistency because ewarnx() was
respecting the EINFO_QUIET environment setting, but after this commit,
ewarn() was not.
Also, due to discussion on the below referenced bugs, I think we do
want to suppress warnings when EINFO_QUIET=yes.

X-Gentoo-Bug: 482396
X-Gentoo-Bug: 439174
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=482396
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=439174
</content>
</entry>
<entry>
<title>libeinfo: check for "color" in the terminal name</title>
<updated>2013-01-04T14:48:08Z</updated>
<author>
<name>Andrew Gregory</name>
<email>andrew.gregory.8@gmail.com</email>
</author>
<published>2012-10-31T15:49:20Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/openrc.git/commit/?id=3896b9d55ce76e41233eadb6d0ede2f8115736d3'/>
<id>urn:sha1:3896b9d55ce76e41233eadb6d0ede2f8115736d3</id>
<content type='text'>
Signed-off-by: Andrew Gregory &lt;andrew.gregory.8@gmail.com&gt;
</content>
</entry>
<entry>
<title>add a new ARRAY_SIZE macro and use it</title>
<updated>2012-05-06T05:17:30Z</updated>
<author>
<name>Mike Frysinger</name>
<email>vapier@gentoo.org</email>
</author>
<published>2012-05-06T00:26:54Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/openrc.git/commit/?id=0813a80223e40a5d122dfa86ea41e7b1c986f093'/>
<id>urn:sha1:0813a80223e40a5d122dfa86ea41e7b1c986f093</id>
<content type='text'>
Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</content>
</entry>
</feed>
