Compare commits
No commits in common. "8a68244c90ef33cd6945d30b304c7f62e72ba200" and "6939ae2fd1ffffb205dace7b68afed6a486fa8c6" have entirely different histories.
8a68244c90
...
6939ae2fd1
@ -1,6 +1,6 @@
|
|||||||
{application,gmhive_client,
|
{application,gmhive_client,
|
||||||
[{description,"Gajumaru Hive Client"},
|
[{description,"Gajumaru Hive Client"},
|
||||||
{vsn,"0.5.1"},
|
{vsn,"0.4.8"},
|
||||||
{registered,[]},
|
{registered,[]},
|
||||||
{applications,[kernel,stdlib,sasl,gproc,inets,ssl,enoise,
|
{applications,[kernel,stdlib,sasl,gproc,inets,ssl,enoise,
|
||||||
gmconfig,gmhive_protocol,gmhive_worker]},
|
gmconfig,gmhive_protocol,gmhive_worker]},
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
{gmhive_protocol,
|
{gmhive_protocol,
|
||||||
{git, "https://git.qpq.swiss/QPQ-AG/gmhive_protocol.git",
|
{git, "https://git.qpq.swiss/QPQ-AG/gmhive_protocol.git",
|
||||||
{ref, "818ce33"}}},
|
{ref, "818ce33"}}},
|
||||||
{gmhive_worker, {git, "https://git.qpq.swiss/QPQ-AG/gmhive_worker", {ref, "cabd104114"}}},
|
{gmhive_worker, {git, "https://git.qpq.swiss/QPQ-AG/gmhive_worker", {ref, "fac460714f"}}},
|
||||||
{gmconfig, {git, "https://git.qpq.swiss/QPQ-AG/gmconfig.git",
|
{gmconfig, {git, "https://git.qpq.swiss/QPQ-AG/gmconfig.git",
|
||||||
{ref, "38620ff9e2"}}},
|
{ref, "38620ff9e2"}}},
|
||||||
{gproc, "1.0.0"},
|
{gproc, "1.0.0"},
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
0},
|
0},
|
||||||
{<<"gmcuckoo">>,
|
{<<"gmcuckoo">>,
|
||||||
{git,"https://git.qpq.swiss/QPQ-AG/gmcuckoo.git",
|
{git,"https://git.qpq.swiss/QPQ-AG/gmcuckoo.git",
|
||||||
{ref,"256e14e7c88043132245be902ff9756070d285b4"}},
|
{ref,"106e1cd2e4ff81286f6bc7d7c85f83bc20e14b82"}},
|
||||||
1},
|
1},
|
||||||
{<<"gmhive_protocol">>,
|
{<<"gmhive_protocol">>,
|
||||||
{git,"https://git.qpq.swiss/QPQ-AG/gmhive_protocol.git",
|
{git,"https://git.qpq.swiss/QPQ-AG/gmhive_protocol.git",
|
||||||
@ -29,7 +29,7 @@
|
|||||||
0},
|
0},
|
||||||
{<<"gmhive_worker">>,
|
{<<"gmhive_worker">>,
|
||||||
{git,"https://git.qpq.swiss/QPQ-AG/gmhive_worker",
|
{git,"https://git.qpq.swiss/QPQ-AG/gmhive_worker",
|
||||||
{ref,"cabd104114691edb925aacd7e04d431d47bac420"}},
|
{ref,"fac460714fc228eb0b723a3f292a44aec77f094a"}},
|
||||||
0},
|
0},
|
||||||
{<<"gmserialization">>,
|
{<<"gmserialization">>,
|
||||||
{git,"https://git.qpq.swiss/QPQ-AG/gmserialization.git",
|
{git,"https://git.qpq.swiss/QPQ-AG/gmserialization.git",
|
||||||
|
|||||||
@ -68,7 +68,6 @@ debug() ->
|
|||||||
subscribe(result),
|
subscribe(result),
|
||||||
subscribe(error),
|
subscribe(error),
|
||||||
subscribe(disconnected),
|
subscribe(disconnected),
|
||||||
gmhive_worker:subscribe_returns(),
|
|
||||||
loop()
|
loop()
|
||||||
end).
|
end).
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
%% -*- mode: erlang; erlang-indent-level: 4; indent-tabs-mode: nil -*-
|
%% -*- mode: erlang; erlang-indent-level: 4; indent-tabs-mode: nil -*-
|
||||||
{application, gmhive_client,
|
{application, gmhive_client,
|
||||||
[{description, "Gajumaru Hive Client"},
|
[{description, "Gajumaru Hive Client"},
|
||||||
{vsn, "zomp"},
|
{vsn, "0.1.0"},
|
||||||
{registered, []},
|
{registered, []},
|
||||||
{applications,
|
{applications,
|
||||||
[
|
[
|
||||||
|
|||||||
@ -1,14 +0,0 @@
|
|||||||
%% -*- erlang-mode; erlang-indent-level: 4; indent-tabs-mode: nil -*-
|
|
||||||
|
|
||||||
[{application, Name, Opts}] = CONFIG.
|
|
||||||
case lists:keyfind(vsn, 1, Opts) of
|
|
||||||
{vsn, "zomp"} ->
|
|
||||||
ZompMetaF = filename:join(filename:dirname(filename:dirname(SCRIPT)), "zomp.meta"),
|
|
||||||
{ok, ZMeta} = file:consult(ZompMetaF),
|
|
||||||
{_, {_, _, {Vmaj,Vmin,Vpatch}}} = lists:keyfind(package_id, 1, ZMeta),
|
|
||||||
VsnStr = unicode:characters_to_list(io_lib:fwrite("~w.~w.~w", [Vmaj, Vmin, Vpatch])),
|
|
||||||
Opts1 = lists:keyreplace(vsn, 1, Opts, {vsn, VsnStr}),
|
|
||||||
[{application, Name, Opts1}];
|
|
||||||
_ ->
|
|
||||||
CONFIG
|
|
||||||
end.
|
|
||||||
@ -2,11 +2,11 @@
|
|||||||
{type,app}.
|
{type,app}.
|
||||||
{modules,[]}.
|
{modules,[]}.
|
||||||
{prefix,"gmhc"}.
|
{prefix,"gmhc"}.
|
||||||
{desc,"Gajumaru Hive Client"}.
|
|
||||||
{author,"Ulf Wiger, QPQ AG"}.
|
{author,"Ulf Wiger, QPQ AG"}.
|
||||||
{package_id,{"uwiger","gmhive_client",{0,5,1}}}.
|
{desc,"Gajumaru Hive Client"}.
|
||||||
{deps,[{"uwiger","gmhive_worker",{0,5,1}},
|
{package_id,{"uwiger","gmhive_client",{0,4,8}}}.
|
||||||
{"uwiger","gmcuckoo",{1,2,4}},
|
{deps,[{"uwiger","gmhive_worker",{0,4,0}},
|
||||||
|
{"uwiger","gmcuckoo",{1,2,3}},
|
||||||
{"otpr","eblake2",{1,0,1}},
|
{"otpr","eblake2",{1,0,1}},
|
||||||
{"otpr","base58",{0,1,1}},
|
{"otpr","base58",{0,1,1}},
|
||||||
{"otpr","gmserialization",{0,1,3}},
|
{"otpr","gmserialization",{0,1,3}},
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user