Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

145 lines
4.4KB

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