1283ca33f16df3f18775fc666b4825ad7d103215
[akkoma] / mix.exs
1 defmodule Pleroma.Mixfile do
2 use Mix.Project
3
4 def project do
5 [
6 app: :pleroma,
7 version: version("0.9.0"),
8 elixir: "~> 1.4",
9 elixirc_paths: elixirc_paths(Mix.env()),
10 compilers: [:phoenix, :gettext] ++ Mix.compilers(),
11 elixirc_options: if Mix.env() == :test do
12 []
13 else
14 [warnings_as_errors: true]
15 end,
16 start_permanent: Mix.env() == :prod,
17 aliases: aliases(),
18 deps: deps(),
19
20 # Docs
21 name: "Pleroma",
22 source_url: "https://git.pleroma.social/pleroma/pleroma",
23 source_url_pattern:
24 "https://git.pleroma.social/pleroma/pleroma/blob/develop/%{path}#L%{line}",
25 homepage_url: "https://pleroma.social/",
26 docs: [
27 logo: "priv/static/static/logo.png",
28 extras: ["README.md", "config/config.md"],
29 main: "readme"
30 ]
31 ]
32 end
33
34 # Configuration for the OTP application.
35 #
36 # Type `mix help compile.app` for more information.
37 def application do
38 [mod: {Pleroma.Application, []}, extra_applications: [:logger, :runtime_tools, :comeonin]]
39 end
40
41 # Specifies which paths to compile per environment.
42 defp elixirc_paths(:test), do: ["lib", "test/support"]
43 defp elixirc_paths(_), do: ["lib"]
44
45 # Specifies your project dependencies.
46 #
47 # Type `mix help deps` for examples and options.
48 defp deps do
49 [
50 {:phoenix, "~> 1.3.3"},
51 {:phoenix_pubsub, "~> 1.0.2"},
52 {:phoenix_ecto, "~> 3.3"},
53 {:postgrex, ">= 0.13.5"},
54 {:gettext, "~> 0.15"},
55 {:cowboy, "~> 1.1.2", override: true},
56 {:comeonin, "~> 4.1.1"},
57 {:pbkdf2_elixir, "~> 0.12.3"},
58 {:trailing_format_plug, "~> 0.0.7"},
59 {:html_sanitize_ex, "~> 1.3.0"},
60 {:phoenix_html, "~> 2.10"},
61 {:calendar, "~> 0.17.4"},
62 {:cachex, "~> 3.0.2"},
63 {:httpoison, "~> 1.2.0"},
64 {:tesla, "~> 1.2"},
65 {:jason, "~> 1.0"},
66 {:mogrify, "~> 0.6.1"},
67 {:ex_aws, "~> 2.0"},
68 {:ex_aws_s3, "~> 2.0"},
69 {:earmark, "~> 1.2"},
70 {:ex_machina, "~> 2.2", only: :test},
71 {:credo, "~> 0.9.3", only: [:dev, :test]},
72 {:mock, "~> 0.3.1", only: :test},
73 {:crypt,
74 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
75 {:cors_plug, "~> 1.5"},
76 {:ex_doc, "> 0.18.3 and < 0.20.0", only: :dev, runtime: false},
77 {:web_push_encryption, "~> 0.2.1"}
78 ]
79 end
80
81 # Aliases are shortcuts or tasks specific to the current project.
82 # For example, to create, migrate and run the seeds file at once:
83 #
84 # $ mix ecto.setup
85 #
86 # See the documentation for `Mix` for more info on aliases.
87 defp aliases do
88 [
89 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
90 "ecto.reset": ["ecto.drop", "ecto.setup"],
91 test: ["ecto.create --quiet", "ecto.migrate", "test"]
92 ]
93 end
94
95 # Builds a version string made of:
96 # * the application version
97 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
98 # * build info:
99 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
100 # * the mix environment if different than prod
101 defp version(version) do
102 {git_tag, git_pre_release} =
103 with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
104 tag = String.trim(tag),
105 {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
106 describe = String.trim(describe),
107 ahead <- String.replace(describe, tag, "") do
108 {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
109 else
110 _ -> {nil, nil}
111 end
112
113 if git_tag && version != git_tag do
114 Mix.shell().error(
115 "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
116 )
117 end
118
119 build_name =
120 cond do
121 name = Application.get_env(:pleroma, :build_name) -> name
122 name = System.get_env("PLEROMA_BUILD_NAME") -> name
123 true -> nil
124 end
125
126 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
127
128 build =
129 [build_name, env_name]
130 |> Enum.filter(fn string -> string && string != "" end)
131 |> Enum.join("-")
132 |> (fn
133 "" -> nil
134 string -> "+" <> string
135 end).()
136
137 [version, git_pre_release, build]
138 |> Enum.filter(fn string -> string && string != "" end)
139 |> Enum.join()
140 end
141 end