2016-02-03 23:01:32 +08:00
|
|
|
## The contents of this file are subject to the Mozilla Public License
|
|
|
|
|
## Version 1.1 (the "License"); you may not use this file except in
|
|
|
|
|
## compliance with the License. You may obtain a copy of the License
|
|
|
|
|
## at http://www.mozilla.org/MPL/
|
|
|
|
|
##
|
|
|
|
|
## Software distributed under the License is distributed on an "AS IS"
|
|
|
|
|
## basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
|
|
|
|
|
## the License for the specific language governing rights and
|
|
|
|
|
## limitations under the License.
|
|
|
|
|
##
|
|
|
|
|
## The Original Code is RabbitMQ.
|
|
|
|
|
##
|
|
|
|
|
## The Initial Developer of the Original Code is GoPivotal, Inc.
|
|
|
|
|
## Copyright (c) 2007-2016 Pivotal Software, Inc. All rights reserved.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-06-16 23:29:06 +08:00
|
|
|
defmodule RabbitMQCtl.MixfileBase do
|
2016-02-03 02:54:36 +08:00
|
|
|
use Mix.Project
|
|
|
|
|
|
|
|
|
|
def project do
|
2016-10-26 00:26:23 +08:00
|
|
|
deps_dir = case System.get_env("DEPS_DIR") do
|
|
|
|
|
nil -> "deps"
|
|
|
|
|
dir -> dir
|
|
|
|
|
end
|
2016-03-05 01:42:43 +08:00
|
|
|
[
|
|
|
|
|
app: :rabbitmqctl,
|
|
|
|
|
version: "0.0.1",
|
2016-10-27 21:51:02 +08:00
|
|
|
elixir: "~> 1.3",
|
2016-03-05 01:42:43 +08:00
|
|
|
build_embedded: Mix.env == :prod,
|
|
|
|
|
start_permanent: Mix.env == :prod,
|
2016-10-25 23:14:26 +08:00
|
|
|
escript: [main_module: RabbitMQCtl,
|
|
|
|
|
emu_args: "-hidden",
|
|
|
|
|
path: "escript/rabbitmqctl"],
|
2016-10-26 00:26:23 +08:00
|
|
|
deps_path: deps_dir,
|
2016-10-27 22:28:02 +08:00
|
|
|
deps: deps(deps_dir)
|
2016-03-05 01:42:43 +08:00
|
|
|
]
|
2016-02-03 02:54:36 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Configuration for the OTP application
|
|
|
|
|
#
|
|
|
|
|
# Type "mix help compile.app" for more information
|
|
|
|
|
def application do
|
2016-11-16 00:46:36 +08:00
|
|
|
[applications: [:logger],
|
2016-06-20 23:52:36 +08:00
|
|
|
env: [scopes: ['rabbitmq-plugins': :plugins,
|
2016-10-07 21:36:54 +08:00
|
|
|
rabbitmqctl: :ctl,
|
2016-10-28 20:29:30 +08:00
|
|
|
'rabbitmq-diagnostics': :diagnostics]]
|
2016-06-17 17:49:38 +08:00
|
|
|
]
|
2016-06-23 19:33:39 +08:00
|
|
|
|> add_modules(Mix.env)
|
|
|
|
|
end
|
|
|
|
|
|
2016-08-23 21:28:07 +08:00
|
|
|
|
2016-06-23 19:33:39 +08:00
|
|
|
defp add_modules(app, :test) do
|
2016-11-03 20:02:04 +08:00
|
|
|
# There are issue with building a package without this line ¯\_(ツ)_/¯
|
|
|
|
|
Mix.Project.get
|
2016-06-23 19:33:39 +08:00
|
|
|
path = Mix.Project.compile_path
|
|
|
|
|
mods = modules_from(Path.wildcard("#{path}/*.beam"))
|
|
|
|
|
test_modules = [RabbitMQ.CLI.Ctl.Commands.DuckCommand,
|
|
|
|
|
RabbitMQ.CLI.Ctl.Commands.GrayGooseCommand,
|
|
|
|
|
RabbitMQ.CLI.Ctl.Commands.UglyDucklingCommand,
|
|
|
|
|
RabbitMQ.CLI.Plugins.Commands.StorkCommand,
|
|
|
|
|
RabbitMQ.CLI.Plugins.Commands.HeronCommand,
|
|
|
|
|
RabbitMQ.CLI.Custom.Commands.CrowCommand,
|
|
|
|
|
RabbitMQ.CLI.Custom.Commands.RavenCommand,
|
2016-11-23 01:40:45 +08:00
|
|
|
RabbitMQ.CLI.Seagull.Commands.SeagullCommand,
|
|
|
|
|
RabbitMQ.CLI.Seagull.Commands.PacificGullCommand,
|
2016-12-06 20:19:25 +08:00
|
|
|
RabbitMQ.CLI.Seagull.Commands.HerringGullCommand,
|
|
|
|
|
RabbitMQ.CLI.Seagull.Commands.HermannGullCommand]
|
2016-06-23 19:33:39 +08:00
|
|
|
[{:modules, mods ++ test_modules |> Enum.sort} | app]
|
|
|
|
|
end
|
|
|
|
|
defp add_modules(app, _) do
|
|
|
|
|
app
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
defp modules_from(beams) do
|
|
|
|
|
Enum.map beams, &(&1 |> Path.basename |> Path.rootname(".beam") |> String.to_atom)
|
2016-02-03 02:54:36 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Dependencies can be Hex packages:
|
|
|
|
|
#
|
|
|
|
|
# {:mydep, "~> 0.3.0"}
|
|
|
|
|
#
|
|
|
|
|
# Or git/path repositories:
|
|
|
|
|
#
|
|
|
|
|
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
|
|
|
|
|
#
|
|
|
|
|
# Type "mix help deps" for more examples and options
|
2016-10-27 22:28:02 +08:00
|
|
|
defp deps(deps_dir) do
|
2016-08-14 13:37:04 +08:00
|
|
|
# RabbitMQ components (rabbit_common and amqp_client) require GNU
|
|
|
|
|
# Make. This ensures that GNU Make is available before we attempt
|
|
|
|
|
# to use it.
|
2016-06-06 18:06:46 +08:00
|
|
|
make = find_gnu_make()
|
|
|
|
|
|
2016-03-03 23:08:47 +08:00
|
|
|
[
|
2016-06-27 16:34:39 +08:00
|
|
|
# {
|
|
|
|
|
# :rabbit,
|
2016-11-16 00:46:36 +08:00
|
|
|
# path: Path.join(deps_dir, "rabbit"),
|
2016-06-27 16:34:39 +08:00
|
|
|
# compile: make,
|
2016-11-16 00:46:36 +08:00
|
|
|
# override: true
|
2016-06-27 16:34:39 +08:00
|
|
|
# },
|
2016-03-03 23:08:47 +08:00
|
|
|
{
|
|
|
|
|
:rabbit_common,
|
2016-10-27 22:28:02 +08:00
|
|
|
path: Path.join(deps_dir, "rabbit_common"),
|
|
|
|
|
compile: make,
|
|
|
|
|
override: true
|
2016-05-05 22:29:45 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
:amqp_client,
|
2016-11-17 20:30:06 +08:00
|
|
|
only: :test,
|
2016-10-27 22:28:02 +08:00
|
|
|
path: Path.join(deps_dir, "amqp_client"),
|
2016-06-06 18:06:46 +08:00
|
|
|
compile: make,
|
2016-05-05 22:29:45 +08:00
|
|
|
override: true
|
|
|
|
|
},
|
2016-12-06 02:59:58 +08:00
|
|
|
{:amqp, "~> 0.1.5", only: :test},
|
|
|
|
|
{:json, "~> 1.0.0"},
|
|
|
|
|
{:csv, "~> 1.4.2"},
|
|
|
|
|
{:simetric, "~> 0.1.0"}
|
2016-03-03 23:08:47 +08:00
|
|
|
]
|
2016-02-03 02:54:36 +08:00
|
|
|
end
|
2016-03-04 00:34:13 +08:00
|
|
|
|
2016-06-06 18:06:46 +08:00
|
|
|
defp find_gnu_make do
|
|
|
|
|
possible_makes = [
|
|
|
|
|
System.get_env("MAKE"),
|
|
|
|
|
"make",
|
|
|
|
|
"gmake"
|
|
|
|
|
]
|
|
|
|
|
test_gnu_make(possible_makes)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
defp test_gnu_make([nil | rest]) do
|
|
|
|
|
test_gnu_make(rest)
|
|
|
|
|
end
|
|
|
|
|
defp test_gnu_make([make | rest]) do
|
|
|
|
|
{output, _} = System.cmd(make, ["--version"], stderr_to_stdout: true)
|
|
|
|
|
case String.contains?(output, "GNU Make") do
|
|
|
|
|
true -> make
|
|
|
|
|
false -> test_gnu_make(rest)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
defp test_gnu_make([]) do
|
|
|
|
|
nil
|
|
|
|
|
end
|
|
|
|
|
|
2016-02-03 02:54:36 +08:00
|
|
|
end
|