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