forked from zeromq/zproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zproject_known_projects.xml
237 lines (199 loc) · 8.17 KB
/
zproject_known_projects.xml
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<known_projects>
<!-- ZeroMQ Projects -->
<!--
Problem: naming style is inconsistent
we sometimes use libxxx and sometimes xxx; the git repo name
is unpredictable; sometimes we override with the prefix and
sometimes with libname.
Proposed solution: project name should always be git repo
name; prefix and libname should always be specified. For
compatibility, we can define aliases. E.g.:
Also, 'cmake name' is target specific and must go.
Suggested model:
<use
project = "libzmq" required
master = "https://github.com/zeromq"
required
libname = "libzmq" default = lib<prefix>
prefix = "zmq" default = project
test = "zmq_init" required same as AC_CHECK_LIB in autoconf
release = "<tagname>" default = "master"
abi = "version" default = "0:0:0"
header = "<filename>" default = <prefix>.h
language = "C|C++" default = "C"
optional = "1" default = "0"
debian_name = "libzmq5-dev" default = lib<name>-dev
redhat_name = "zeromq-devel" default = <name>-devel
<add_config_opts>--with-dep1=nuance</add_config_opts>
<add_config_opts>--enable-feature2</add_config_opts>
</use>
-->
<use project = "libzmq" prefix = "zmq" debian_name = "libzmq3-dev" redhat_name = "zeromq-devel" brew_name = "zeromq"
repository = "https://github.com/zeromq/libzmq.git"
test = "zmq_init" />
<!-- Note: if your project requires an older CZMQ (e.g. if you need
`release = "v3.0.2"`), you may need to `test = "zctx_test"`.
Also note that you can instead require particular package
version (as reported by pkg-config records). -->
<use project = "czmq" libname = "libczmq"
repository = "https://github.com/zeromq/czmq.git"
test = "zhashx_test">
<use project = "libzmq" />
</use>
<use project = "zyre" libname = "libzyre"
repository = "https://github.com/zeromq/zyre.git"
test = "zyre_test">
<use project = "czmq" />
</use>
<use project = "malamute" libname = "libmlm"
repository = "https://github.com/zeromq/malamute.git"
header = "malamute.h"
prefix = "mlm"
test = "mlm_server_test">
<use project = "libzmq" />
<use project = "czmq" />
</use>
<use project = "gsl" libname = ""
repository = "https://github.com/zeromq/gsl.git"
debian_name = "generator-scripting-language"
redhat_name = "generator-scripting-language">
</use>
<!-- Edgenet Projects -->
<use project = "drops" libname = "libdrops"
repository = "https://github.com/edgenet/drops.git"
test = "drops_test">
<use project = "czmq" />
<use project = "zyre" />
</use>
<use project = "hydra" libname = "libhydra"
repository = "https://github.com/edgenet/hydra.git"
test = "hydra_server_test">
<use project = "czmq" />
</use>
<!-- Various known third-party projects
(If you're unsure of where a project belongs, add it here) -->
<use project = "cucumber"
header = "cucumber_c.h"
test = "cucumber_new"
repository = "https://github.com/sappo/cucumber-c">
<use project = "gherkin" private = "1" />
<use project = "cJSON" private = "1" />
</use>
<use project = "gherkin"
header = "compiler.h"
repository = "https://github.com/cucumber/gherkin-c"
test = "Compiler_new" />
<use project = "cJSON"
debian_name = "libcjson-dev"
header = "cjson/cJSON.h"
repository = "https://github.com/DaveGamble/cJSON"
test = "cJSON_Parse" />
<use project = "libsodium" prefix = "sodium"
repository = "https://github.com/jedisct1/libsodium.git"
release = "stable"
test = "sodium_init" />
<use project = "libcurl"
prefix = "curl"
repository = "https://github.com/curl/curl.git"
debian_name = "libcurl4-nss-dev"
brew_name = "curl"
test = "curl_easy_init"
header = "curl/curl.h" />
<use project = "libmicrohttpd"
brew_name = "libmicrohttpd"
prefix = "microhttpd"
repository = "https://git.gnunet.org/libmicrohttpd.git"
tarball = "http://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.44.tar.gz"
test = "MHD_start_daemon" />
<use project = "editline"
repository = "https://github.com/troglobit/editline.git"
test = "readline" />
<use project = "fuse"
repository = "http://git.code.sf.net/p/fuse/fuse.git"
test = "fuse_main" />
<use project = "jansson"
repository = "https://github.com/akheron/jansson.git"
test = "json_object" />
<use project = "jemalloc"
repository = "https://github.com/jemalloc/jemalloc.git"
test = "malloc"
header = "jemalloc/jemalloc.h" />
<use project = "msgpack"
repository = "https://github.com/msgpack/msgpack-c.git"
test = "msgpack_version" />
<use project = "uuid"
test = "uuid_generate"
header = "uuid/uuid.h"
brew_name = "ossp-uuid"
redhat_name = "libuuid-devel"
debian_name = "uuid-dev" />
<use project = "asound"
test = "snd_asoundlib_version"
header = "alsa/asoundlib.h" />
<use project = "zdb"
repository = "https://bitbucket.org/tildeslash/libzdb.git"
test = "ConnectionPool_start" />
<use project = "json-c"
header = "json-c/json.h"
test = "json_object_to_json_string" />
<use project = "libfastjson"
repository = "https://github.com/rsyslog/libfastjson/"
header = "libfastjson/json.h"
test = "json_object_to_json_string" />
<use project = "lognorm"
repository = "https://github.com/rsyslog/liblognorm/"
test = "ln_initCtx">
<use project = "libfastjson" />
</use>
<use project = "zdiscgo"
repository = "https://github.com/zeromq/zdiscgo.git"
test = "zdiscgoplugin_new" />
<use project = "systemd"
libname = "libsystemd"
prefix = "libsystemd"
linkname = "systemd"
header = "systemd/sd-daemon.h"
test = "sd_listen_fds" />
<use project = "protobuf-c"
repository = "https://github.com/protobuf-c/protobuf-c/"
test = "protobuf_c_version"
header = "protobuf-c/protobuf-c.h"/>
<!-- 42ITY project https://github.com/42ity https://42ity.org -->
<use project = "fty-proto" libname = "libfty_proto" header="ftyproto.h"
repository = "https://github.com/42ity/fty-proto"
test = "fty_proto_test">
<use project = "libzmq"/>
<use project = "czmq"/>
<use project = "malamute"/>
</use>
<!-- OS packagers make life hard by renaming the package, binaries and
even library SONAMEs - so we have to guess a bit; note that for
practical purposes, lua-5.2 suffices as lua-5.1 (if fixes happen
to be needed, they are trivial and googlable) -->
<use project = "lua-5.1" libname = "lua" prefix="lua"
optional = "0" am_lib_macro = "LUA_5_1"
min_major = "5" min_minor = "1" min_patch = "0"
debian_name="liblua5.1-0-dev" redhat_name="lua-devel"
test = "lua_close">
<linkname>lua5.2</linkname>
<linkname>lua52</linkname>
<linkname>lua5.1</linkname>
<linkname>lua51</linkname>
<linkname>lua</linkname>
<pkgconfig>lua5.2</pkgconfig>
<pkgconfig>lua52</pkgconfig>
<pkgconfig>lua5.1</pkgconfig>
<pkgconfig>lua51</pkgconfig>
<pkgconfig>lua</pkgconfig>
</use>
<use project = "lz4"
libname = "liblz4"
redhat_name = "liblz4-devel"
header = "lz4.h"
test = "LZ4_decompress_safe" />
<use project = "nss"
debian_name = "libnss3-dev"
redhat_name = "nss-devel"
header = "sechash.h"
test = "HASH_Create" />
</known_projects>