xmpp.chapril.org-ejabberd/mix.exs

176 lines
5.9 KiB
Elixir
Raw Normal View History

defmodule Ejabberd.Mixfile do
use Mix.Project
def project do
[app: :ejabberd,
2017-12-27 11:42:37 +01:00
version: "17.12.0",
2017-06-04 03:00:57 +02:00
description: description(),
2017-06-13 11:02:30 +02:00
elixir: "~> 1.4",
elixirc_paths: ["lib"],
compile_path: ".",
compilers: [:asn1] ++ Mix.compilers,
2017-06-04 03:00:57 +02:00
erlc_options: erlc_options(),
erlc_paths: ["asn1", "src"],
# Elixir tests are starting the part of ejabberd they need
aliases: [test: "test --no-start"],
2017-06-04 03:00:57 +02:00
package: package(),
deps: deps()]
end
def description do
2016-01-24 10:19:28 +01:00
"""
Robust, ubiquitous and massively scalable Jabber / XMPP Instant Messaging platform.
"""
end
def application do
[mod: {:ejabberd_app, []},
applications: [:ssl, :os_mon],
included_applications: [:lager, :mnesia, :inets, :p1_utils, :cache_tab,
:fast_tls, :stringprep, :fast_xml, :xmpp,
:stun, :fast_yaml, :esip, :jiffy, :p1_oauth2, :fs]
2017-06-04 03:00:57 +02:00
++ cond_apps()]
end
2015-09-29 20:19:35 +02:00
defp if_function_exported(mod, fun, arity, okResult) do
:code.ensure_loaded(mod)
if :erlang.function_exported(mod, fun, arity) do
okResult
else
[]
end
end
defp erlc_options do
# Use our own includes + includes from all dependencies
2017-03-28 16:08:10 +02:00
includes = ["include"] ++ deps_include(["fast_xml", "xmpp", "p1_utils"])
[:debug_info, {:d, :ELIXIR_ENABLED}] ++ cond_options() ++ Enum.map(includes, fn(path) -> {:i, path} end) ++
if_function_exported(:crypto, :strong_rand_bytes, 1, [{:d, :STRONG_RAND_BYTES}]) ++
if_function_exported(:rand, :uniform, 1, [{:d, :RAND_UNIFORM}]) ++
if_function_exported(:gb_sets, :iterator_from, 2, [{:d, :GB_SETS_ITERATOR_FROM}]) ++
if_function_exported(:public_key, :short_name_hash, 1, [{:d, :SHORT_NAME_HASH}])
end
defp cond_options do
for {:true, option} <- [{config(:graphics), {:d, :GRAPHICS}}], do:
option
end
2015-09-29 20:19:35 +02:00
defp deps do
2017-06-13 11:02:30 +02:00
[{:lager, "~> 3.4.0"},
2017-03-22 11:59:39 +01:00
{:p1_utils, "~> 1.0"},
2017-12-26 11:13:18 +01:00
{:fast_xml, github: "processone/fast_xml", tag: "1.1.26", override: true, manager: :rebar},
{:xmpp, github: "processone/xmpp", tag: "1.1.17", override: true, manager: :rebar},
{:cache_tab, github: "processone/cache_tab", tag: "1.0.12", override: true, manager: :rebar},
{:stringprep, "~> 1.0"},
{:fast_yaml, github: "processone/fast_yaml", tag: "1.0.12", override: true, manager: :rebar},
2017-12-26 11:13:18 +01:00
{:fast_tls, github: "processone/fast_tls", tag: "1.0.18", override: true, manager: :rebar},
{:stun, "~> 1.0"},
{:esip, "~> 1.0"},
2016-02-03 10:55:40 +01:00
{:jiffy, "~> 0.14.7"},
{:p1_oauth2, "~> 0.6.1"},
{:distillery, "~> 1.0"},
2017-11-09 09:59:40 +01:00
{:ex_doc, ">= 0.0.0", only: :dev},
{:fs, "~> 2.12.0"}]
2017-06-04 03:00:57 +02:00
++ cond_deps()
2015-09-29 20:19:35 +02:00
end
defp deps_include(deps) do
base = case Mix.Project.deps_paths()[:ejabberd] do
nil -> "deps"
_ -> ".."
end
Enum.map(deps, fn dep -> base<>"/#{dep}/include" end)
end
defp cond_deps do
for {:true, dep} <- [{config(:mysql), {:p1_mysql, "~> 1.0"}},
{config(:pgsql), {:p1_pgsql, "~> 1.1"}},
{config(:sqlite), {:sqlite3, "~> 1.1"}},
{config(:riak), {:riakc, "~> 2.4"}},
{config(:redis), {:eredis, "~> 1.0"}},
{config(:zlib), {:ezlib, github: "processone/ezlib", tag: "1.0.3", override: true, manager: :rebar}},
{config(:iconv), {:iconv, "~> 1.0"}},
{config(:pam), {:epam, "~> 1.0"}},
{config(:tools), {:luerl, github: "rvirding/luerl", tag: "v0.2"}},
{config(:tools), {:meck, "~> 0.8.4"}},
{config(:tools), {:moka, github: "processone/moka", tag: "1.0.5c"}},
{config(:graphics), {:eimp, github: "processone/eimp", tag: "1.0.1"}}], do:
dep
end
defp cond_apps do
for {:true, app} <- [{config(:redis), :eredis},
{config(:mysql), :p1_mysql},
{config(:pgsql), :p1_pgsql},
{config(:sqlite), :sqlite3},
{config(:zlib), :ezlib},
{config(:iconv), :iconv},
{config(:graphics), :eimp}], do:
app
end
2017-06-13 11:02:30 +02:00
defp package do
2016-01-24 10:07:12 +01:00
[# These are the default files included in the package
files: ["lib", "src", "priv", "mix.exs", "include", "README.md", "COPYING"],
maintainers: ["ProcessOne"],
licenses: ["GPLv2"],
links: %{"Site" => "https://www.ejabberd.im",
"Documentation" => "http://docs.ejabberd.im",
2016-02-08 11:50:04 +01:00
"Source" => "https://github.com/processone/ejabberd",
"ProcessOne" => "http://www.process-one.net/"}]
end
2017-06-13 11:02:30 +02:00
defp vars do
case :file.consult("vars.config") do
{:ok,config} -> config
_ -> [zlib: true, iconv: true]
end
end
defp config(key) do
2017-06-04 03:00:57 +02:00
case vars()[key] do
nil -> false
value -> value
end
end
end
defmodule Mix.Tasks.Compile.Asn1 do
use Mix.Task
alias Mix.Compilers.Erlang
@recursive true
@manifest ".compile.asn1"
def run(args) do
{opts, _, _} = OptionParser.parse(args, switches: [force: :boolean])
project = Mix.Project.config
source_paths = project[:asn1_paths] || ["asn1"]
dest_paths = project[:asn1_target] || ["src"]
mappings = Enum.zip(source_paths, dest_paths)
options = project[:asn1_options] || []
force = case opts[:force] do
:true -> [force: true]
_ -> [force: false]
end
Erlang.compile(manifest(), mappings, :asn1, :erl, force, fn
input, output ->
options = options ++ [:noobj, outdir: Erlang.to_erl_file(Path.dirname(output))]
2015-04-06 12:39:21 +02:00
case :asn1ct.compile(Erlang.to_erl_file(input), options) do
:ok -> {:ok, :done}
error -> error
2015-04-06 12:39:21 +02:00
end
end)
end
2017-06-04 03:00:57 +02:00
def manifests, do: [manifest()]
defp manifest, do: Path.join(Mix.Project.manifest_path, @manifest)
def clean, do: Erlang.clean(manifest())
end