<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/meson.git/mesonbuild/modules/modtest.py, branch thinlto</title>
<subtitle>github.com: mesonbuild/meson.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/'/>
<entry>
<title>Updated all modules to work with the new API.</title>
<updated>2018-04-15T08:02:38+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2018-03-17T19:09:48+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=998892ed2962fdabcb3ef882375501fd849d56f8'/>
<id>998892ed2962fdabcb3ef882375501fd849d56f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>flake8: Clean up complained-about unused imports</title>
<updated>2017-09-21T17:41:03+00:00</updated>
<author>
<name>Luke Shumaker</name>
<email>lukeshu@lukeshu.com</email>
</author>
<published>2017-09-21T15:49:00+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=4dbbb4884c205a1b82ac0deb9c751161a44534fd'/>
<id>4dbbb4884c205a1b82ac0deb9c751161a44534fd</id>
<content type='text'>
This also adds a "# noqa: F401" comment on an unused "import lzma",
which we are using it in a try/except block that is being used to
check if the lzma module is importable; of course it is unused.

v2: This turned out to be a little tricky.

    mesonbuild/modules/__init__.py had the "unused" import:

        from ..interpreterbase import permittedKwargs, noKwargs

    However, that meant that the various modules could do things like:

        from . import noKwargs # "." is "mesonbuild.modules"

    Which breaks when you remove __init__.py's "unused" import.  I
    could have tagged that import with "# noqa: F401", but instead I
    chose to have each of the module import directly from
    "..interpreterbase" instead of ".".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This also adds a "# noqa: F401" comment on an unused "import lzma",
which we are using it in a try/except block that is being used to
check if the lzma module is importable; of course it is unused.

v2: This turned out to be a little tricky.

    mesonbuild/modules/__init__.py had the "unused" import:

        from ..interpreterbase import permittedKwargs, noKwargs

    However, that meant that the various modules could do things like:

        from . import noKwargs # "." is "mesonbuild.modules"

    Which breaks when you remove __init__.py's "unused" import.  I
    could have tagged that import with "# noqa: F401", but instead I
    chose to have each of the module import directly from
    "..interpreterbase" instead of ".".
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed issues raised in review.</title>
<updated>2017-06-26T20:29:42+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2017-06-26T17:39:00+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=3262be23dc3f01923a1d162a5914ba29f05416b7'/>
<id>3262be23dc3f01923a1d162a5914ba29f05416b7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Converted some modules.</title>
<updated>2017-06-26T18:10:27+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2017-06-25T17:24:14+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=80d665e8decd644d737930d450f0bc66d6b5b02c'/>
<id>80d665e8decd644d737930d450f0bc66d6b5b02c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add kwarg checker in module code.</title>
<updated>2017-06-26T18:10:27+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2017-06-25T16:06:39+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=7f482824bbd1d21ade16969f0fb0ad23a7065471'/>
<id>7f482824bbd1d21ade16969f0fb0ad23a7065471</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>There are two different kinds of extensions: modules that create new</title>
<updated>2017-01-09T19:11:48+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2017-01-08T20:47:57+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=fbabe8ad85725762e46b7c4c2f2c680c3351ec80'/>
<id>fbabe8ad85725762e46b7c4c2f2c680c3351ec80</id>
<content type='text'>
objects directly and snippets that just call into interpreter methods.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
objects directly and snippets that just call into interpreter methods.
</pre>
</div>
</content>
</entry>
<entry>
<title>Create a module return value object.</title>
<updated>2017-01-04T19:01:06+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2017-01-04T19:01:06+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=de24fddbd149d465dc737d707fed204bdf8d06cc'/>
<id>de24fddbd149d465dc737d707fed204bdf8d06cc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Renamed meson package to mesonbuild so that we can have a script named meson in the same toplevel dir.</title>
<updated>2016-01-16T15:35:29+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2016-01-16T15:35:29+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=23b98cd6e66c6ae0f070e28e0f8b1566c0b5e585'/>
<id>23b98cd6e66c6ae0f070e28e0f8b1566c0b5e585</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
