<feed xmlns='http://www.w3.org/2005/Atom'>
<title>erlang.mk.git/plugins, branch 2016.10.21</title>
<subtitle>A build tool for Erlang that just works.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/erlang.mk.git/'/>
<entry>
<title>Update Copyright notices</title>
<updated>2016-10-21T12:38:41+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2016-10-21T12:38:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/erlang.mk.git/commit/?id=f2be0f9f04b7f923ac325e2c21aa1edb25cf0a64'/>
<id>f2be0f9f04b7f923ac325e2c21aa1edb25cf0a64</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix several problems with the erlydtl plugin:</title>
<updated>2016-10-20T11:41:50+00:00</updated>
<author>
<name>Jared Flatow</name>
<email>jflatow@gmail.com</email>
</author>
<published>2016-06-09T01:43:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/erlang.mk.git/commit/?id=38454657fc33d90333c4d5447fb25bffceb6e80e'/>
<id>38454657fc33d90333c4d5447fb25bffceb6e80e</id>
<content type='text'>
DTL_SUFFIX:
 - make sure it is actually used
 - add a test for it (and one combined with other options)

DTL_PATH:
 - handle correctly with or without trailing /
 - don't hard-code the `doc_root` opt - the erlydtl default is better
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DTL_SUFFIX:
 - make sure it is actually used
 - add a test for it (and one combined with other options)

DTL_PATH:
 - handle correctly with or without trailing /
 - don't hard-code the `doc_root` opt - the erlydtl default is better
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix path issues when running triq tests on Windows</title>
<updated>2016-10-04T20:49:05+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2016-10-04T20:49:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/erlang.mk.git/commit/?id=833fc7b75116322757b0f2c30d25c65124fee7a5'/>
<id>833fc7b75116322757b0f2c30d25c65124fee7a5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix a small inconsistency when building for CI</title>
<updated>2016-10-03T22:57:00+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2016-10-03T22:57:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/erlang.mk.git/commit/?id=8fc7cf4729ce123e9a9eef6c0406470e0203982f'/>
<id>8fc7cf4729ce123e9a9eef6c0406470e0203982f</id>
<content type='text'>
We need to clean before attempting to wildcard ebin/test.
To do that, we need to invoke "make clean" separately.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We need to clean before attempting to wildcard ebin/test.
To do that, we need to invoke "make clean" separately.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'fix-dialyzer-ERLC_OPTS-filtering' of https://github.com/rabbitmq/erlang.mk</title>
<updated>2016-09-13T12:04:15+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2016-09-13T12:04:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/erlang.mk.git/commit/?id=c313f4dfb03b4105eed289141a0e7feef42f8612'/>
<id>c313f4dfb03b4105eed289141a0e7feef42f8612</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>dialyzer.mk: Use the shell to parse command line args</title>
<updated>2016-09-08T11:46:15+00:00</updated>
<author>
<name>Jean-Sébastien Pédron</name>
<email>jean-sebastien@rabbitmq.com</email>
</author>
<published>2016-08-29T13:28:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/erlang.mk.git/commit/?id=6c546accfcb2ad6264c16f62e74d35367dabb72c'/>
<id>6c546accfcb2ad6264c16f62e74d35367dabb72c</id>
<content type='text'>
Splitting arguments on `-` was dangerous: if a path contained such a
character, it would be split and the second half thrown away by the
filtering.

Now, `$(ERLC_OPTS)` is passed to erl(1) after `-extra`. Thus
arguments parsing is done by the shell and we only have to call
init:get_plain_arguments/0 to get them as a list.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Splitting arguments on `-` was dangerous: if a path contained such a
character, it would be split and the second half thrown away by the
filtering.

Now, `$(ERLC_OPTS)` is passed to erl(1) after `-extra`. Thus
arguments parsing is done by the shell and we only have to call
init:get_plain_arguments/0 to get them as a list.
</pre>
</div>
</content>
</entry>
<entry>
<title>plugins/xref.mk: Fix typo in variable `XREFR_ARGS`</title>
<updated>2016-09-08T11:44:04+00:00</updated>
<author>
<name>Jean-Sébastien Pédron</name>
<email>jean-sebastien@rabbitmq.com</email>
</author>
<published>2016-09-08T11:44:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/erlang.mk.git/commit/?id=e1cb5eb1a4cefc087b05277cde4fa86f51cdced4'/>
<id>e1cb5eb1a4cefc087b05277cde4fa86f51cdced4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump relx version to 3.19.0</title>
<updated>2016-04-21T18:47:35+00:00</updated>
<author>
<name>Hakan Nilsson</name>
<email>hakan.nilsson@kivra.com</email>
</author>
<published>2016-04-21T18:47:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/erlang.mk.git/commit/?id=7f382fb996b910429ae1c6a076b8baa575e5dcf6'/>
<id>7f382fb996b910429ae1c6a076b8baa575e5dcf6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>	Add fullpath to ebin/</title>
<updated>2016-04-04T22:05:55+00:00</updated>
<author>
<name>crownedgrouse</name>
<email>eric.pailleau@wanadoo.fr</email>
</author>
<published>2016-04-04T22:05:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/erlang.mk.git/commit/?id=9ac33437613ee23d555df92ffb5b27dc72e8d641'/>
<id>9ac33437613ee23d555df92ffb5b27dc72e8d641</id>
<content type='text'>
	Allow eunit test to access to project's priv_dir.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	Allow eunit test to access to project's priv_dir.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add possibility to specify custom ErlyDTL options</title>
<updated>2016-04-03T15:17:38+00:00</updated>
<author>
<name>Krzysztof Jurewicz</name>
<email>krzysztof.jurewicz@gmail.com</email>
</author>
<published>2016-03-31T15:23:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/erlang.mk.git/commit/?id=6c4a17ee75a4bef75863b2a65842fa55f1ab43aa'/>
<id>6c4a17ee75a4bef75863b2a65842fa55f1ab43aa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
