Zompify and migrate #1

Merged
zxq9 merged 1 commits from zomp into master 2025-01-23 14:17:39 +09:00
5 changed files with 31 additions and 4 deletions
Showing only changes of commit bbba77167e - Show all commits

1
Emakefile Normal file
View File

@ -0,0 +1 @@
{"src/*", [debug_info, {i, "include/"}, {outdir, "ebin/"}]}.

View File

@ -4,9 +4,17 @@
{plugins, [rebar3_hex]}. {plugins, [rebar3_hex]}.
{profiles, [{test, [{deps, [{jsx, {git, "https://github.com/talentdeficit/jsx.git", {tag, "2.8.0"}}}, {profiles,
{enacl, {git, "https://github.com/aeternity/enacl.git", {ref, "a3d010b"}}}]}]} [{test,
]}. [{deps,
[{jsx,
{git,
"https://github.com/talentdeficit/jsx.git",
{tag, "2.8.0"}}},
{enacl,
{git,
"https://git.qpq.swiss/QPQ-AG/enacl.git",
{ref, "4eb7ec70084ba7c87b1af8797c4c4e90c84f95a2"}}}]}]}]}.
{xref_checks, [undefined_function_calls, undefined_functions, {xref_checks, [undefined_function_calls, undefined_functions,
locals_not_used, deprecated_function_calls, deprecated_functions]}. locals_not_used, deprecated_function_calls, deprecated_functions]}.

View File

@ -1,6 +1,6 @@
{application, eblake2, {application, eblake2,
[{description, "A pure Erlang Blake2 implementation"}, [{description, "A pure Erlang Blake2 implementation"},
{vsn, "1.0.0"}, {vsn, "1.0.1"},
{registered, []}, {registered, []},
{applications, {applications,
[kernel, [kernel,

View File

@ -5,6 +5,7 @@
%%% @end %%% @end
%%%============================================================================= %%%=============================================================================
-module(eblake2). -module(eblake2).
-vsn("1.0.1").
%% API exports %% API exports
-export([ blake2b/2 -export([ blake2b/2

17
zomp.meta Normal file
View File

@ -0,0 +1,17 @@
{name,"eBlake2"}.
{type,lib}.
{modules,[]}.
{prefix,none}.
{author,"Hans Svensson"}.
{desc,"A pure Erlang Blake2 implementation"}.
{package_id,{"otpr","eblake2",{1,0,1}}}.
{deps,[]}.
{key_name,none}.
{a_email,[]}.
{c_email,[]}.
{copyright,"Hans Svensson"}.
{file_exts,[]}.
{license,skip}.
{repo_url,"https://git.qpq.swiss/QPQ-AG/eblake2"}.
{tags,["gajumaru","hash","btc","blockchain","crypto","eth","gaju"]}.
{ws_url,[]}.