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.

165 lines
5.1KB

  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.7",
  8. elixirc_paths: elixirc_paths(Mix.env()),
  9. compilers: [:phoenix, :gettext] ++ Mix.compilers(),
  10. elixirc_options: [warnings_as_errors: true],
  11. xref: [exclude: [:eldap]],
  12. start_permanent: Mix.env() == :prod,
  13. aliases: aliases(),
  14. deps: deps(),
  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: [
  24. "README.md",
  25. "docs/Admin-API.md",
  26. "docs/Clients.md",
  27. "docs/config.md",
  28. "docs/Custom-Emoji.md",
  29. "docs/Differences-in-MastodonAPI-Responses.md",
  30. "docs/Message-Rewrite-Facility-configuration.md",
  31. "docs/Pleroma-API.md",
  32. "docs/static_dir.md"
  33. ],
  34. main: "readme",
  35. output: "priv/static/doc"
  36. ]
  37. ]
  38. end
  39. # Configuration for the OTP application.
  40. #
  41. # Type `mix help compile.app` for more information.
  42. def application do
  43. [
  44. mod: {Pleroma.Application, []},
  45. extra_applications: [:logger, :runtime_tools, :comeonin],
  46. included_applications: [:ex_syslogger]
  47. ]
  48. end
  49. # Specifies which paths to compile per environment.
  50. defp elixirc_paths(:test), do: ["lib", "test/support"]
  51. defp elixirc_paths(_), do: ["lib"]
  52. # Specifies your project dependencies.
  53. #
  54. # Type `mix help deps` for examples and options.
  55. defp deps do
  56. [
  57. {:phoenix, "~> 1.4.1"},
  58. {:plug_cowboy, "~> 2.0"},
  59. {:phoenix_pubsub, "~> 1.1"},
  60. {:phoenix_ecto, "~> 4.0"},
  61. {:ecto_sql, "~>3.0.5"},
  62. {:postgrex, ">= 0.13.5"},
  63. {:gettext, "~> 0.15"},
  64. {:comeonin, "~> 4.1.1"},
  65. {:pbkdf2_elixir, "~> 0.12.3"},
  66. {:trailing_format_plug, "~> 0.0.7"},
  67. {:html_sanitize_ex, "~> 1.3.0"},
  68. {:html_entities, "~> 0.4"},
  69. {:phoenix_html, "~> 2.10"},
  70. {:calendar, "~> 0.17.4"},
  71. {:cachex, "~> 3.0.2"},
  72. {:httpoison, "~> 1.2.0"},
  73. {:tesla, "~> 1.2"},
  74. {:jason, "~> 1.0"},
  75. {:mogrify, "~> 0.6.1"},
  76. {:ex_aws, "~> 2.0"},
  77. {:ex_aws_s3, "~> 2.0"},
  78. {:earmark, "~> 1.3"},
  79. {:ex_machina, "~> 2.3", only: :test},
  80. {:credo, "~> 0.9.3", only: [:dev, :test]},
  81. {:mock, "~> 0.3.1", only: :test},
  82. {:crypt,
  83. git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
  84. {:cors_plug, "~> 1.5"},
  85. {:ex_doc, "~> 0.19", only: :dev, runtime: false},
  86. {:web_push_encryption, "~> 0.2.1"},
  87. {:swoosh, "~> 0.20"},
  88. {:gen_smtp, "~> 0.13"},
  89. {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
  90. {:floki, "~> 0.20.0"},
  91. {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"},
  92. {:timex, "~> 3.5"},
  93. {:auto_linker,
  94. git: "https://git.pleroma.social/pleroma/auto_linker.git",
  95. ref: "94193ca5f97c1f9fdf3d1469653e2d46fac34bcd"}
  96. ]
  97. end
  98. # Aliases are shortcuts or tasks specific to the current project.
  99. # For example, to create, migrate and run the seeds file at once:
  100. #
  101. # $ mix ecto.setup
  102. #
  103. # See the documentation for `Mix` for more info on aliases.
  104. defp aliases do
  105. [
  106. "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
  107. "ecto.reset": ["ecto.drop", "ecto.setup"],
  108. test: ["ecto.create --quiet", "ecto.migrate", "test"]
  109. ]
  110. end
  111. # Builds a version string made of:
  112. # * the application version
  113. # * a pre-release if ahead of the tag: the describe string (-count-commithash)
  114. # * build info:
  115. # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
  116. # * the mix environment if different than prod
  117. defp version(version) do
  118. {git_tag, git_pre_release} =
  119. with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
  120. tag = String.trim(tag),
  121. {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
  122. describe = String.trim(describe),
  123. ahead <- String.replace(describe, tag, "") do
  124. {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
  125. else
  126. _ -> {nil, nil}
  127. end
  128. if git_tag && version != git_tag do
  129. Mix.shell().error(
  130. "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
  131. )
  132. end
  133. build_name =
  134. cond do
  135. name = Application.get_env(:pleroma, :build_name) -> name
  136. name = System.get_env("PLEROMA_BUILD_NAME") -> name
  137. true -> nil
  138. end
  139. env_name = if Mix.env() != :prod, do: to_string(Mix.env())
  140. build =
  141. [build_name, env_name]
  142. |> Enum.filter(fn string -> string && string != "" end)
  143. |> Enum.join("-")
  144. |> (fn
  145. "" -> nil
  146. string -> "+" <> string
  147. end).()
  148. [version, git_pre_release, build]
  149. |> Enum.filter(fn string -> string && string != "" end)
  150. |> Enum.join()
  151. end
  152. end