<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/meson.git/docs/markdown/Fs-module.md, 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>add FeatureNew</title>
<updated>2020-02-06T17:54:38+00:00</updated>
<author>
<name>Michael Hirsch, Ph.D</name>
<email>scivision@users.noreply.github.com</email>
</author>
<published>2020-02-05T19:45:43+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=2bbd57092fe5ad3fb9006aa762688fcbea6dfbaa'/>
<id>2bbd57092fe5ad3fb9006aa762688fcbea6dfbaa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add fs.stem()</title>
<updated>2020-02-06T17:54:38+00:00</updated>
<author>
<name>Michael Hirsch, Ph.D</name>
<email>scivision@users.noreply.github.com</email>
</author>
<published>2019-12-20T11:10:25+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=5bbeab8ed461bc2464d9b590b2faf758aa854362'/>
<id>5bbeab8ed461bc2464d9b590b2faf758aa854362</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>doc: filesystem module</title>
<updated>2020-02-06T17:54:38+00:00</updated>
<author>
<name>Michael Hirsch, Ph.D</name>
<email>scivision@users.noreply.github.com</email>
</author>
<published>2019-12-19T03:53:47+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=92534855cc11e0939f769e19d995be0605be2fb2'/>
<id>92534855cc11e0939f769e19d995be0605be2fb2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fs: add expanduser method</title>
<updated>2020-02-06T17:54:38+00:00</updated>
<author>
<name>Michael Hirsch, Ph.D</name>
<email>scivision@users.noreply.github.com</email>
</author>
<published>2019-11-18T05:04:33+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=dcb7043403b227a8351b5864d5b856a2c81b69b9'/>
<id>dcb7043403b227a8351b5864d5b856a2c81b69b9</id>
<content type='text'>
this should help users specify leading `~` in various Meson options and variables
without refactoring lots of places inside Meson itself.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this should help users specify leading `~` in various Meson options and variables
without refactoring lots of places inside Meson itself.
</pre>
</div>
</content>
</entry>
<entry>
<title>fs: add methods as_posix, is_absolute</title>
<updated>2020-02-06T17:54:38+00:00</updated>
<author>
<name>Michael Hirsch, Ph.D</name>
<email>scivision@users.noreply.github.com</email>
</author>
<published>2019-11-17T18:04:18+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=4556343d95d8d64c7ab9bbbf1564b53940579f7f'/>
<id>4556343d95d8d64c7ab9bbbf1564b53940579f7f</id>
<content type='text'>
fs: make exception specify method name

fs: actually raise exceptions

fs: resolve path e.g.  /opt/foo/.. =&gt; /opt/foo

fs: correct behavior of is_symlink
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fs: make exception specify method name

fs: actually raise exceptions

fs: resolve path e.g.  /opt/foo/.. =&gt; /opt/foo

fs: correct behavior of is_symlink
</pre>
</div>
</content>
</entry>
<entry>
<title>fs: rename samefile =&gt; is_samepath</title>
<updated>2019-12-19T13:51:31+00:00</updated>
<author>
<name>Michael Hirsch, Ph.D</name>
<email>scivision@users.noreply.github.com</email>
</author>
<published>2019-12-19T04:17:06+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=fb121f62548bf6d18778d26dd917ae00e1d2c6ef'/>
<id>fb121f62548bf6d18778d26dd917ae00e1d2c6ef</id>
<content type='text'>
is_samepath better reflects the nature of this function--that files
and directories can be compared.

Also, instead of raising exceptions, simply return False when one
or both .is_samepath(path1, path1) don't exist. This is more
intuitive behavior and avoids having an extra if fs.exist() to go
with every fs.is_samepath()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
is_samepath better reflects the nature of this function--that files
and directories can be compared.

Also, instead of raising exceptions, simply return False when one
or both .is_samepath(path1, path1) don't exist. This is more
intuitive behavior and avoids having an extra if fs.exist() to go
with every fs.is_samepath()
</pre>
</div>
</content>
</entry>
<entry>
<title>fs: Add parent() and name() methods</title>
<updated>2019-11-25T19:55:19+00:00</updated>
<author>
<name>Xavier Claessens</name>
<email>xavier.claessens@collabora.com</email>
</author>
<published>2019-11-25T00:39:13+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=a6f7a1d8c43b26a2607022e41ee3f1b8fe98e8d6'/>
<id>a6f7a1d8c43b26a2607022e41ee3f1b8fe98e8d6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fs: make replace_suffix not expand file to absolute path, just manipulate the string</title>
<updated>2019-11-17T05:22:53+00:00</updated>
<author>
<name>Michael Hirsch, Ph.D</name>
<email>scivision@users.noreply.github.com</email>
</author>
<published>2019-11-17T05:22:53+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=0cb48cdc793dfce8c5eeb17e447cbe169e1836d7'/>
<id>0cb48cdc793dfce8c5eeb17e447cbe169e1836d7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fs: replace_suffix</title>
<updated>2019-11-17T05:17:06+00:00</updated>
<author>
<name>Michael Hirsch, Ph.D</name>
<email>scivision@users.noreply.github.com</email>
</author>
<published>2019-11-13T05:00:15+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=2ae96f859583ed1aa1e78df73ba2895a2604fa8b'/>
<id>2ae96f859583ed1aa1e78df73ba2895a2604fa8b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fs: add docs for fs.size()</title>
<updated>2019-11-17T05:17:05+00:00</updated>
<author>
<name>Michael Hirsch, Ph.D</name>
<email>scivision@users.noreply.github.com</email>
</author>
<published>2019-11-12T01:39:37+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=4997d93b498094248bdc0669d9515f28f7a156ef'/>
<id>4997d93b498094248bdc0669d9515f28f7a156ef</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
