<feed xmlns='http://www.w3.org/2005/Atom'>
<title>Kconfiglib.git/menuconfig.py, branch v12.14.1</title>
<subtitle>Fork of https://github.com/zephyrproject-rtos/Kconfiglib.git</subtitle>
<id>https://git.mcdonnell.dev/Kconfiglib.git/atom?h=v12.14.1</id>
<link rel='self' href='https://git.mcdonnell.dev/Kconfiglib.git/atom?h=v12.14.1'/>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/'/>
<updated>2019-08-03T14:19:24Z</updated>
<entry>
<title>menuconfig/guiconfig: Print 'default:' with no 's' if there's just one</title>
<updated>2019-08-03T14:19:24Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-08-03T14:13:28Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=a4b57753443fcb65f3c4042c551e083975d9537b'/>
<id>urn:sha1:a4b57753443fcb65f3c4042c551e083975d9537b</id>
<content type='text'>
Most common case, and makes the symbol info read better.
</content>
</entry>
<entry>
<title>Catch EnvironmentError instead of OSError/IOError</title>
<updated>2019-07-01T22:03:02Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-07-01T20:52:17Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=e5e2fe5a6f084fb98c2c9b4adec0383fec4a5256'/>
<id>urn:sha1:e5e2fe5a6f084fb98c2c9b4adec0383fec4a5256</id>
<content type='text'>
menuconfig.py tended to crash on I/O errors on Python 2, due to
forgetting to update some 'except OSError's. Catch EnvironmentError
instead.

EnvironmentError is a common base class of IOError and OSError on Python
2, and an alias for OSError on Python 3. Use it elsewhere too, as it
might help catch obscure I/O errors on Python 2.
</content>
</entry>
<entry>
<title>menuconfig/guiconfig: Use orig_defaults in symbol info</title>
<updated>2019-06-24T07:29:10Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-06-24T07:29:10Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=a7302a6a03096e1c5839c2a582dd70ddbae2962a'/>
<id>urn:sha1:a7302a6a03096e1c5839c2a582dd70ddbae2962a</id>
<content type='text'>
Forgot that they show defaults separately. Use orig_defaults instead of
'defaults' to de-spam it a bit. The direct dependencies are shown above
the defaults.
</content>
</entry>
<entry>
<title>Use 'change' instead of 'convert' re. changing LC_CTYPE</title>
<updated>2019-06-15T20:13:34Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-06-15T20:13:34Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=f1e6f328bf30a7a88c5a48a863bdd55aed896b1e'/>
<id>urn:sha1:f1e6f328bf30a7a88c5a48a863bdd55aed896b1e</id>
<content type='text'>
Might be less confusing in the context of locales.
</content>
</entry>
<entry>
<title>menuconfig: Be silent when changing LC_CTYPE to a UTF-8 locale</title>
<updated>2019-06-15T19:36:43Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-06-15T19:36:43Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=0c79d2332c85123b5f83be8fa06d5ce5cb261f4e'/>
<id>urn:sha1:0c79d2332c85123b5f83be8fa06d5ce5cb261f4e</id>
<content type='text'>
Having LC_ALL=C and the like in Makefiles is probably pretty common, to
get consistent collation and messages from commands and stuff. It
currently makes menuconfig.py spit out a warning about changing the
locale to a UTF-8 locale though.

Just remove the message, and silently change the locale. The Python 3.7
PEP 538 code is silent as well.
</content>
</entry>
<entry>
<title>menuconfig/guiconfig: Clean up 'range' checking a bit</title>
<updated>2019-06-09T12:00:25Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-06-07T15:49:05Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=c295c312dd76be6b61bdaccda5b70be9cb79cf5f'/>
<id>urn:sha1:c295c312dd76be6b61bdaccda5b70be9cb79cf5f</id>
<content type='text'>
Just cosmetic.
</content>
</entry>
<entry>
<title>menuconfig: Fix help display on Python 2</title>
<updated>2019-06-06T07:24:51Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-06-06T07:24:51Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=443e6bb8efd41f1e4bb42e1efdb37e9c3e22dc67'/>
<id>urn:sha1:443e6bb8efd41f1e4bb42e1efdb37e9c3e22dc67</id>
<content type='text'>
textwrap.indent() was added in Python 3.3.
</content>
</entry>
<entry>
<title>Update various comments now that menuconfig is Python 2-compatible</title>
<updated>2019-06-06T02:57:22Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-06-05T11:45:38Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=319f7f0f09a620e7cd9987d4834660598bfb7109'/>
<id>urn:sha1:319f7f0f09a620e7cd9987d4834660598bfb7109</id>
<content type='text'>
</content>
</entry>
<entry>
<title>menuconfig: Have hashbang point to 'python' instead of 'python3'</title>
<updated>2019-06-06T02:33:56Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-06-05T11:48:32Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=c209188bc4912e0fb55d818d8157cbdcde067d3c'/>
<id>urn:sha1:c209188bc4912e0fb55d818d8157cbdcde067d3c</id>
<content type='text'>
Consistent with the other utilities, and now works even when 'python' is
Python 2.
</content>
</entry>
<entry>
<title>menuconfig: Import print_function for Python 2 compatibility</title>
<updated>2019-06-06T02:21:19Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-06-05T10:55:23Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=fe6ed995ea1f7491d6935710b71c052eeb34b821'/>
<id>urn:sha1:fe6ed995ea1f7491d6935710b71c052eeb34b821</id>
<content type='text'>
</content>
</entry>
</feed>
