homebrew-core/Formula/offlineimap.rb

110 lines
4.1 KiB
Ruby

class Offlineimap < Formula
desc "Synchronizes emails between two repositories"
homepage "https://www.offlineimap.org/"
url "https://files.pythonhosted.org/packages/40/41/5c9fae40b32ced68ad09e12f967be6e41309d63359948c6518d4c42de4a4/offlineimap-7.3.3.tar.gz"
sha256 "ce7642e30e00a93d81d1990ec68debc7548b575b66424b79977bc685657c1862"
license "GPL-2.0"
head "https://github.com/OfflineIMAP/offlineimap.git"
bottle do
sha256 cellar: :any_skip_relocation, arm64_big_sur: "af9077e9c6a1a2530d512d313a67a804cec500d88751ca2ab3525659a50a0c33"
sha256 cellar: :any_skip_relocation, big_sur: "d93a65acab0ec67ba0a7cec1788aaea55f345a328720d521c87e7eb2cc18121e"
sha256 cellar: :any_skip_relocation, catalina: "2d21d8216b9d9ad3197181632dd8583d8bd15f46851365e906d9581ae67ff30e"
sha256 cellar: :any_skip_relocation, mojave: "ff922fc76e1e5571628d7ecb4bd436180895352768979c2cd9bcfee048b5d0f4"
sha256 cellar: :any_skip_relocation, high_sierra: "ff922fc76e1e5571628d7ecb4bd436180895352768979c2cd9bcfee048b5d0f4"
end
depends_on :macos # Due to Python 2 (Will never support Python 3)
# https://github.com/OfflineIMAP/offlineimap/issues/616#issuecomment-491003691
uses_from_macos "libxml2"
uses_from_macos "libxslt"
resource "rfc6555" do
url "https://files.pythonhosted.org/packages/58/a8/1dfba2db1f744657065562386069e547eefea9432d3f520d4af5b5fabd28/rfc6555-0.0.0.tar.gz"
sha256 "191cbba0315b53654155321e56a93466f42cd0a474b4f341df4d03264dcb5217"
end
resource "selectors2" do
url "https://files.pythonhosted.org/packages/a4/54/d690d931777ca7310562997fab09019582e6e557984c02d7647f3654f7f5/selectors2-2.0.1.tar.gz"
sha256 "81b77c4c6f607248b1d6bbdb5935403fef294b224b842a830bbfabb400c81884"
end
resource "six" do
url "https://files.pythonhosted.org/packages/21/9f/b251f7f8a76dec1d6651be194dfba8fb8d7781d10ab3987190de8391d08e/six-1.14.0.tar.gz"
sha256 "236bdbdce46e6e6a3d61a337c0f8b763ca1e8717c03b369e87a7ec7ce1319c0a"
end
def install
ENV.delete("PYTHONPATH")
ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python2.7/site-packages"
resources.each do |r|
r.stage do
system "python", *Language::Python.setup_install_args(libexec/"vendor")
end
end
# Remove hardcoded python2 that does not exist on high-sierra or mojave
inreplace "Makefile", "python2", "python"
inreplace "bin/offlineimap", "python2", "python"
etc.install "offlineimap.conf", "offlineimap.conf.minimal"
libexec.install "bin/offlineimap" => "offlineimap.py"
libexec.install "offlineimap"
(bin/"offlineimap").write_env_script(libexec/"offlineimap.py",
PYTHONPATH: ENV["PYTHONPATH"])
end
def caveats
<<~EOS
To get started, copy one of these configurations to ~/.offlineimaprc:
* minimal configuration:
cp -n #{etc}/offlineimap.conf.minimal ~/.offlineimaprc
* advanced configuration:
cp -n #{etc}/offlineimap.conf ~/.offlineimaprc
EOS
end
plist_options manual: "offlineimap"
def plist
<<~EOS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/usr/bin:/bin:/usr/sbin:/sbin:#{HOMEBREW_PREFIX}/bin</string>
</dict>
<key>KeepAlive</key>
<false/>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/offlineimap</string>
<string>-q</string>
<string>-u</string>
<string>basic</string>
</array>
<key>StartInterval</key>
<integer>300</integer>
<key>RunAtLoad</key>
<true />
<key>StandardErrorPath</key>
<string>/dev/null</string>
<key>StandardOutPath</key>
<string>/dev/null</string>
</dict>
</plist>
EOS
end
test do
system bin/"offlineimap", "--version"
end
end