Zompify and migrate (#1)

Reviewed-on: #1
Co-authored-by: Craig Everett <zxq9@zxq9.com>
Co-committed-by: Craig Everett <zxq9@zxq9.com>
This commit is contained in:
Craig Everett 2025-01-23 14:17:38 +09:00 committed by Craig Everett
parent 60a079f00d
commit 6d5378a7ec
5 changed files with 31 additions and 4 deletions

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]}.
{profiles, [{test, [{deps, [{jsx, {git, "https://github.com/talentdeficit/jsx.git", {tag, "2.8.0"}}},
{enacl, {git, "https://github.com/aeternity/enacl.git", {ref, "a3d010b"}}}]}]}
]}.
{profiles,
[{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,
locals_not_used, deprecated_function_calls, deprecated_functions]}.

View File

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

View File

@ -5,6 +5,7 @@
%%% @end
%%%=============================================================================
-module(eblake2).
-vsn("1.0.1").
%% API exports
-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,[]}.