<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/meson.git/packaging, branch xcodeobjc</title>
<subtitle>github.com: mesonbuild/meson.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/'/>
<entry>
<title>mass rewrite of string formatting to use f-strings everywhere</title>
<updated>2021-03-04T22:16:11+00:00</updated>
<author>
<name>Eli Schwartz</name>
<email>eschwartz@archlinux.org</email>
</author>
<published>2021-03-04T22:16:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=6a0fabc6472f49621260de215f128a31ae70219b'/>
<id>6a0fabc6472f49621260de215f128a31ae70219b</id>
<content type='text'>
performed by running "pyupgrade --py36-plus" and committing the results
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
performed by running "pyupgrade --py36-plus" and committing the results
</pre>
</div>
</content>
</entry>
<entry>
<title>various python neatness cleanups</title>
<updated>2021-03-04T22:11:26+00:00</updated>
<author>
<name>Eli Schwartz</name>
<email>eschwartz@archlinux.org</email>
</author>
<published>2021-03-04T22:02:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=4340bf34faca7eed8076ba4c388fbe15355f2183'/>
<id>4340bf34faca7eed8076ba4c388fbe15355f2183</id>
<content type='text'>
All changes were created by running

"pyupgrade --py3-only --keep-percent-format"

and committing the results. I have not touched string formatting for
now.

- use set literals
- simplify .format() parameter naming
- remove __future__
- remove default "r" mode for open()
- use OSError rather than compatibility aliases
- remove stray parentheses in function(generator) scopes
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All changes were created by running

"pyupgrade --py3-only --keep-percent-format"

and committing the results. I have not touched string formatting for
now.

- use set literals
- simplify .format() parameter naming
- remove __future__
- remove default "r" mode for open()
- use OSError rather than compatibility aliases
- remove stray parentheses in function(generator) scopes
</pre>
</div>
</content>
</entry>
<entry>
<title>Require Windows 10 or newer for the MSI package. [skip ci]</title>
<updated>2021-02-28T20:41:41+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2021-02-28T11:28:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=62b744b2c4458bce30f187bca1e817ffb3a78aeb'/>
<id>62b744b2c4458bce30f187bca1e817ffb3a78aeb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add filecmp to list of bundled modules. Closes #8431. [skip ci]</title>
<updated>2021-02-28T20:41:41+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2021-02-28T11:04:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=eacd43d5b515af928ef839427900c79b90fc8fb0'/>
<id>eacd43d5b515af928ef839427900c79b90fc8fb0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove remnants of 32 bit support. [skip ci]</title>
<updated>2021-02-28T20:41:41+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2021-02-28T11:02:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=5e95f137376088d42b5a8a5df01438049749774c'/>
<id>5e95f137376088d42b5a8a5df01438049749774c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add script to create a zipapp.</title>
<updated>2020-11-27T16:12:08+00:00</updated>
<author>
<name>Eli Schwartz</name>
<email>eschwartz@archlinux.org</email>
</author>
<published>2020-11-24T20:41:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=0fa808f7066d20047c0576da064bcc105053c401'/>
<id>0fa808f7066d20047c0576da064bcc105053c401</id>
<content type='text'>
Invoke create_zipapp.py from the root of the repository and it will
create a minimal zipapp with only the mesonbuild module code and a
__main__.py directly copied from meson.py

The meson.py launcher already tracks the desired entry point, and its
only other effect is to add the mesonbuild directory to the path if it
exists, which it won't in the zipapp. So there's no need to duplicate
this into another __main__.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Invoke create_zipapp.py from the root of the repository and it will
create a minimal zipapp with only the mesonbuild module code and a
__main__.py directly copied from meson.py

The meson.py launcher already tracks the desired entry point, and its
only other effect is to add the mesonbuild directory to the path if it
exists, which it won't in the zipapp. So there's no need to duplicate
this into another __main__.py
</pre>
</div>
</content>
</entry>
<entry>
<title>createmsi: move to generic packaging directory</title>
<updated>2020-11-27T16:12:08+00:00</updated>
<author>
<name>Eli Schwartz</name>
<email>eschwartz@archlinux.org</email>
</author>
<published>2020-11-24T20:40:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=df50123c058bd1e76c1b3230b4f27531f0adfe07'/>
<id>df50123c058bd1e76c1b3230b4f27531f0adfe07</id>
<content type='text'>
We might want to create other dedicated packaging scripts, and put them
all in one directory.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We might want to create other dedicated packaging scripts, and put them
all in one directory.
</pre>
</div>
</content>
</entry>
</feed>
