2015-04-04 17:42:12 +02:00
|
|
|
defmodule Ejabberd.Mixfile do
|
|
|
|
use Mix.Project
|
|
|
|
|
|
|
|
def project do
|
|
|
|
[app: :ejabberd,
|
2017-08-03 16:55:56 +02:00
|
|
|
version: "17.8.0",
|
2017-06-04 03:00:57 +02:00
|
|
|
description: description(),
|
2017-06-13 11:02:30 +02:00
|
|
|
elixir: "~> 1.4",
|
2015-04-04 17:42:12 +02:00
|
|
|
elixirc_paths: ["lib"],
|
|
|
|
compile_path: ".",
|
2015-04-06 12:29:11 +02:00
|
|
|
compilers: [:asn1] ++ Mix.compilers,
|
2017-06-04 03:00:57 +02:00
|
|
|
erlc_options: erlc_options(),
|
2015-04-06 12:29:11 +02:00
|
|
|
erlc_paths: ["asn1", "src"],
|
2016-07-26 12:17:37 +02:00
|
|
|
# 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()]
|
2015-04-04 17:42:12 +02:00
|
|
|
end
|
|
|
|
|
2016-10-19 13:57:19 +02:00
|
|
|
def description do
|
2016-01-24 10:19:28 +01:00
|
|
|
"""
|
|
|
|
Robust, ubiquitous and massively scalable Jabber / XMPP Instant Messaging platform.
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
2015-04-04 17:42:12 +02:00
|
|
|
def application do
|
|
|
|
[mod: {:ejabberd_app, []},
|
2016-01-23 19:00:22 +01:00
|
|
|
applications: [:ssl],
|
2017-03-23 12:20:02 +01:00
|
|
|
included_applications: [:lager, :mnesia, :inets, :p1_utils, :cache_tab,
|
2016-11-22 14:43:10 +01:00
|
|
|
:fast_tls, :stringprep, :fast_xml, :xmpp,
|
2016-10-19 13:57:19 +02:00
|
|
|
:stun, :fast_yaml, :esip, :jiffy, :p1_oauth2]
|
2017-06-04 03:00:57 +02:00
|
|
|
++ cond_apps()]
|
2015-04-04 17:42:12 +02:00
|
|
|
end
|
2015-09-29 20:19:35 +02:00
|
|
|
|
2015-04-04 17:42:12 +02:00
|
|
|
defp erlc_options do
|
2015-09-07 17:35:58 +02:00
|
|
|
# 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"])
|
2016-10-07 11:47:20 +02:00
|
|
|
[:debug_info, {:d, :ELIXIR_ENABLED}] ++ Enum.map(includes, fn(path) -> {:i, path} end)
|
2015-04-04 17:42:12 +02:00
|
|
|
end
|
2015-09-29 20:19:35 +02:00
|
|
|
|
2015-04-04 17:42:12 +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"},
|
|
|
|
{:fast_xml, "~> 1.1"},
|
|
|
|
{:xmpp, "~> 1.1"},
|
2016-02-03 10:55:40 +01:00
|
|
|
{:cache_tab, "~> 1.0"},
|
2016-12-01 15:10:00 +01:00
|
|
|
{:stringprep, "~> 1.0"},
|
2016-02-03 10:55:40 +01:00
|
|
|
{:fast_yaml, "~> 1.0"},
|
2016-02-03 16:13:16 +01:00
|
|
|
{:fast_tls, "~> 1.0"},
|
2016-02-03 11:26:14 +01:00
|
|
|
{:stun, "~> 1.0"},
|
|
|
|
{:esip, "~> 1.0"},
|
2016-02-03 10:55:40 +01:00
|
|
|
{:jiffy, "~> 0.14.7"},
|
|
|
|
{:p1_oauth2, "~> 0.6.1"},
|
2016-12-06 17:54:21 +01:00
|
|
|
{:distillery, "~> 1.0"},
|
2016-10-19 13:57:19 +02:00
|
|
|
{:ex_doc, ">= 0.0.0", only: :dev}]
|
2017-06-04 03:00:57 +02:00
|
|
|
++ cond_deps()
|
2015-09-29 20:19:35 +02:00
|
|
|
end
|
2015-09-29 20:18:49 +02:00
|
|
|
|
2016-12-06 17:54:21 +01:00
|
|
|
defp deps_include(deps) do
|
2017-02-17 16:26:39 +01:00
|
|
|
base = case Mix.Project.deps_paths()[:ejabberd] do
|
|
|
|
nil -> "deps"
|
|
|
|
_ -> ".."
|
|
|
|
end
|
|
|
|
Enum.map(deps, fn dep -> base<>"/#{dep}/include" end)
|
2016-12-06 17:54:21 +01:00
|
|
|
end
|
|
|
|
|
2016-10-19 13:57:19 +02:00
|
|
|
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, "~> 1.0"}},
|
|
|
|
{config(:iconv), {:iconv, "~> 1.0"}},
|
2017-01-29 14:35:22 +01:00
|
|
|
{config(:pam), {:epam, "~> 1.0"}},
|
2016-10-19 13:57:19 +02:00
|
|
|
{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"}}], 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}], 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/"}]
|
2015-04-04 17:42:12 +02:00
|
|
|
end
|
2016-10-19 13:57:19 +02:00
|
|
|
|
2017-06-13 11:02:30 +02:00
|
|
|
defp vars do
|
2016-10-19 13:57:19 +02:00
|
|
|
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
|
2016-10-19 13:57:19 +02:00
|
|
|
nil -> false
|
|
|
|
value -> value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-04 17:42:12 +02:00
|
|
|
end
|
2015-04-06 12:29:11 +02:00
|
|
|
|
|
|
|
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] || []
|
|
|
|
|
|
|
|
Erlang.compile(manifest(), mappings, :asn1, :erl, opts[: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}
|
2015-05-29 09:30:16 +02:00
|
|
|
error -> error
|
2015-04-06 12:39:21 +02:00
|
|
|
end
|
2015-04-06 12:29:11 +02:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2017-06-04 03:00:57 +02:00
|
|
|
def manifests, do: [manifest()]
|
2015-04-06 12:29:11 +02:00
|
|
|
defp manifest, do: Path.join(Mix.Project.manifest_path, @manifest)
|
|
|
|
|
|
|
|
def clean, do: Erlang.clean(manifest())
|
|
|
|
end
|