summaryrefslogtreecommitdiffstats
path: root/_build/static/archives/extend/2013-August/000217.html
blob: 3ab448ae8624cdc492ca488c3791f9a218e0446d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
 <HEAD>
   <TITLE> [99s-extend] [erlang-questions] [ANN] erlang.mk build tool
   </TITLE>
   <LINK REL="Index" HREF="index.html" >
   <LINK REL="made" HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20%5Berlang-questions%5D%20%5BANN%5D%20erlang.mk%20build%20tool&In-Reply-To=%3C520E3AEA.2070402%40ninenines.eu%3E">
   <META NAME="robots" CONTENT="index,nofollow">
   <style type="text/css">
       pre {
           white-space: pre-wrap;       /* css-2.1, curent FF, Opera, Safari */
           }
   </style>
   <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
   <LINK REL="Previous"  HREF="000215.html">
   <LINK REL="Next"  HREF="000219.html">
 </HEAD>
 <BODY BGCOLOR="#ffffff">
   <H1>[99s-extend] [erlang-questions] [ANN] erlang.mk build tool</H1>
    <B>Lo&#239;c Hoguin</B> 
    <A HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20%5Berlang-questions%5D%20%5BANN%5D%20erlang.mk%20build%20tool&In-Reply-To=%3C520E3AEA.2070402%40ninenines.eu%3E"
       TITLE="[99s-extend] [erlang-questions] [ANN] erlang.mk build tool">essen at ninenines.eu
       </A><BR>
    <I>Fri Aug 16 16:44:58 CEST 2013</I>
    <P><UL>
        <LI>Previous message: <A HREF="000215.html">[99s-extend] [erlang-questions] [ANN] erlang.mk build tool
</A></li>
        <LI>Next message: <A HREF="000219.html">[99s-extend] [erlang-questions] [ANN] erlang.mk build tool
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#217">[ date ]</a>
              <a href="thread.html#217">[ thread ]</a>
              <a href="subject.html#217">[ subject ]</a>
              <a href="author.html#217">[ author ]</a>
         </LI>
       </UL>
    <HR>  
<!--beginarticle-->
<PRE>Starting Erlang takes too long. That's a big reason why erlang.mk was 
created. :)

I recall NetBSD being able to download things with a shell script only 
(as it comes with nothing installed), this would be a more interesting 
solution especially since we can bundle it in the erlang.mk file too.

On 08/16/2013 04:42 PM, Grzegorz Junka wrote:
&gt;<i> Why not use Erlang for downloading? Surely if erlang.mk is a tool for
</I>&gt;<i> Erlang then it will be very likely installed. For example this target
</I>&gt;<i> downloads Rebar:
</I>&gt;<i>
</I>&gt;<i> # Erlang Rebar downloading, see:
</I>&gt;<i> #
</I>&gt;<i> <A HREF="https://groups.google.com/forum/?fromgroups=#!topic/erlang-programming/U0JJ3SeUv5Y">https://groups.google.com/forum/?fromgroups=#!topic/erlang-programming/U0JJ3SeUv5Y</A>
</I>&gt;<i> rb_rebar_url=<A HREF="http://cloud.github.com/downloads/basho/rebar/rebar">http://cloud.github.com/downloads/basho/rebar/rebar</A>
</I>&gt;<i> ./rebar:
</I>&gt;<i> $(ERL) -noshell -s inets -s ssl \
</I>&gt;<i> -eval 'httpc:request(get, {&quot;$(rb_rebar_url)&quot;, []}, [], [{stream,
</I>&gt;<i> &quot;./rebar&quot;}])' \
</I>&gt;<i> -s init stop
</I>&gt;<i> chmod +x ./rebar
</I>&gt;<i> REBAR=$(shell (type rebar 2&gt;/dev/null || echo ./rebar) | tail -1 | awk
</I>&gt;<i> '{ print $$NF }')
</I>&gt;<i>
</I>&gt;<i>
</I>&gt;<i> It could be used to download anything, not just REBAR.
</I>&gt;<i>
</I>&gt;<i> - Greg
</I>&gt;<i>
</I>&gt;<i>
</I>&gt;<i> On 16/08/2013 15:34, Lo&#239;c Hoguin wrote:
</I>&gt;&gt;<i> On 08/16/2013 10:39 AM, Benoit Chesneau wrote:
</I>&gt;&gt;&gt;<i> The big problem with erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; is requiring to have
</I>&gt;&gt;&gt;<i> gmake and more importantly wget installed imo.
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> wget is only used for fetching the package index file. I'm sure if it
</I>&gt;&gt;<i> doesn't work somewhere it'll be patched eventually.
</I>&gt;&gt;<i>
</I>&gt;&gt;&gt;<i> Which makes it quite annoying to distribute on systems that have none of
</I>&gt;&gt;&gt;<i> them. It would be interrestin to have the support for curl for example.
</I>&gt;&gt;&gt;<i> Also what are the makefile extensions that you really need to require
</I>&gt;&gt;&gt;<i> gmake?
</I>&gt;&gt;<i>
</I>&gt;&gt;<i> No idea. Patches are welcome for compatibility with different OS/build
</I>&gt;&gt;<i> tools (as long as it's not &quot;rewrite the whole file&quot; of course, then
</I>&gt;&gt;<i> you're better off just using gmake).
</I>&gt;&gt;<i>
</I>&gt;&gt;&gt;<i> - benoit
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i> On Thu, Aug 15, 2013 at 4:19 PM, Lo&#239;c Hoguin &lt;<A HREF="https://lists.ninenines.eu/listinfo/extend">essen at ninenines.eu</A>
</I>&gt;&gt;&gt;<i> &lt;mailto:<A HREF="https://lists.ninenines.eu/listinfo/extend">essen at ninenines.eu</A>&gt;&gt; wrote:
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>     Hello friendly people,
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>     I would like to make an official announcement of erlang.mk
</I>&gt;&gt;&gt;<i> &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; now that all the features I wanted are in.
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>     erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; is a rebar replacement. It was
</I>&gt;&gt;&gt;<i>     initially created for allowing a faster development process than
</I>&gt;&gt;&gt;<i>     rebar and for better compatibility with Linux build tools. It should
</I>&gt;&gt;&gt;<i>     work on Linux and OSX with GNU Make installed.
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>     Projects using erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; are still compatible
</I>&gt;&gt;&gt;<i>     with rebar. Dependencies fetched by rebar are stored in the same
</I>&gt;&gt;&gt;<i>     deps/ directory, and projects using erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; can
</I>&gt;&gt;&gt;<i>     still be used as rebar dependencies, with or without a rebar.config
</I>&gt;&gt;&gt;<i>     file.
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>     erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; also features a simple package index.
</I>&gt;&gt;&gt;<i>     Try `make pkg-list` to list all packages currently available. All
</I>&gt;&gt;&gt;<i>     the packages listed are compatible with erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt;
</I>&gt;&gt;&gt;<i>     with no tweaking required.
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>     Makefiles written with erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; are *VERY*
</I>&gt;&gt;&gt;<i>     simple, here are two examples:
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>       * <A HREF="https://github.com/extend/__farwest/blob/master/Makefile">https://github.com/extend/__farwest/blob/master/Makefile</A>
</I>&gt;&gt;&gt;<i> &lt;<A HREF="https://github.com/extend/farwest/blob/master/Makefile">https://github.com/extend/farwest/blob/master/Makefile</A>&gt;
</I>&gt;&gt;&gt;<i>       * <A HREF="https://github.com/extend/__cowboy/blob/master/Makefile">https://github.com/extend/__cowboy/blob/master/Makefile</A>
</I>&gt;&gt;&gt;<i> &lt;<A HREF="https://github.com/extend/cowboy/blob/master/Makefile">https://github.com/extend/cowboy/blob/master/Makefile</A>&gt;
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>     I wrote about erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; and relx recently on the
</I>&gt;&gt;&gt;<i>     Nine Nines blog. erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; is the perfect
</I>&gt;&gt;&gt;<i>     companion to relx.
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>       * <A HREF="http://ninenines.eu/articles/__erlang.mk-and-relx">http://ninenines.eu/articles/__erlang.mk-and-relx</A>
</I>&gt;&gt;&gt;<i> &lt;<A HREF="http://ninenines.eu/articles/erlang.mk-and-relx">http://ninenines.eu/articles/erlang.mk-and-relx</A>&gt;
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>     Here are examples of projects that are using and compatible with
</I>&gt;&gt;&gt;<i>     erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt;:
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>       * <A HREF="https://github.com/jlouis/__etorrent">https://github.com/jlouis/__etorrent</A>
</I>&gt;&gt;&gt;<i> &lt;<A HREF="https://github.com/jlouis/etorrent">https://github.com/jlouis/etorrent</A>&gt;
</I>&gt;&gt;&gt;<i>       * <A HREF="https://github.com/extend/__cowboy">https://github.com/extend/__cowboy</A>
</I>&gt;&gt;&gt;<i> &lt;<A HREF="https://github.com/extend/cowboy">https://github.com/extend/cowboy</A>&gt;
</I>&gt;&gt;&gt;<i>       * <A HREF="https://github.com/extend/__farwest">https://github.com/extend/__farwest</A>
</I>&gt;&gt;&gt;<i> &lt;<A HREF="https://github.com/extend/farwest">https://github.com/extend/farwest</A>&gt;
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>     You can find erlang.mk &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; at the following URL:
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>       * <A HREF="https://github.com/extend/__erlang.mk">https://github.com/extend/__erlang.mk</A>
</I>&gt;&gt;&gt;<i> &lt;<A HREF="https://github.com/extend/erlang.mk">https://github.com/extend/erlang.mk</A>&gt;
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>     Contributions to the package index are of course welcome! The only
</I>&gt;&gt;&gt;<i>     requirement is that the package is to be compatible with erlang.mk
</I>&gt;&gt;&gt;<i> &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; itself. Just send a PR to the erlang.mk
</I>&gt;&gt;&gt;<i> &lt;<A HREF="http://erlang.mk">http://erlang.mk</A>&gt; project updating the packages.v1.txt!
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>     Enjoy!
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>     --
</I>&gt;&gt;&gt;<i>     Lo&#239;c Hoguin
</I>&gt;&gt;&gt;<i>     Erlang Cowboy
</I>&gt;&gt;&gt;<i>     Nine Nines
</I>&gt;&gt;&gt;<i> <A HREF="http://ninenines.eu">http://ninenines.eu</A>
</I>&gt;&gt;&gt;<i>     _________________________________________________
</I>&gt;&gt;&gt;<i>     erlang-questions mailing list
</I>&gt;&gt;&gt;<i> <A HREF="https://lists.ninenines.eu/listinfo/extend">erlang-questions at erlang.org</A> &lt;mailto:<A HREF="https://lists.ninenines.eu/listinfo/extend">erlang-questions at erlang.org</A>&gt;
</I>&gt;&gt;&gt;<i> <A HREF="http://erlang.org/mailman/__listinfo/erlang-questions">http://erlang.org/mailman/__listinfo/erlang-questions</A>
</I>&gt;&gt;&gt;<i> &lt;<A HREF="http://erlang.org/mailman/listinfo/erlang-questions">http://erlang.org/mailman/listinfo/erlang-questions</A>&gt;
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;&gt;<i>
</I>&gt;&gt;<i>
</I>&gt;&gt;<i>
</I>&gt;<i>
</I>&gt;<i>
</I>&gt;<i>
</I>&gt;<i> _______________________________________________
</I>&gt;<i> Extend mailing list
</I>&gt;<i> <A HREF="https://lists.ninenines.eu/listinfo/extend">Extend at lists.ninenines.eu</A>
</I>&gt;<i> <A HREF="http://lists.ninenines.eu:81/listinfo/extend">http://lists.ninenines.eu:81/listinfo/extend</A>
</I>&gt;<i>
</I>

-- 
Lo&#239;c Hoguin
Erlang Cowboy
Nine Nines
<A HREF="http://ninenines.eu">http://ninenines.eu</A>

</PRE>

<!--endarticle-->
    <HR>
    <P><UL>
        <!--threads-->
	<LI>Previous message: <A HREF="000215.html">[99s-extend] [erlang-questions] [ANN] erlang.mk build tool
</A></li>
	<LI>Next message: <A HREF="000219.html">[99s-extend] [erlang-questions] [ANN] erlang.mk build tool
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#217">[ date ]</a>
              <a href="thread.html#217">[ thread ]</a>
              <a href="subject.html#217">[ subject ]</a>
              <a href="author.html#217">[ author ]</a>
         </LI>
       </UL>

<hr>
<a href="https://lists.ninenines.eu/listinfo/extend">More information about the Extend
mailing list</a><br>
</body></html>