homebrew-core/Formula/khal.rb
2018-03-01 21:38:56 -08:00

60 lines
1.8 KiB
Ruby

class Khal < Formula
include Language::Python::Virtualenv
desc "CLI calendar application"
homepage "https://lostpackets.de/khal/"
url "https://github.com/pimutils/khal.git",
:tag => "v0.9.8",
:revision => "b03df58c129f99a35ba74cda0fbc253eb47cfeac"
revision 2
head "https://github.com/pimutils/khal.git"
bottle do
cellar :any_skip_relocation
sha256 "591caaf82d88564d712cedbee4a65f856c106a835f6b0fc0901d43b8d8d65e30" => :high_sierra
sha256 "67a01a6e9f7b6c929c07297042241d801487809c3e70046876cb589e74feee26" => :sierra
sha256 "387106ceb72628802c9756fb37310d25d8b97410e80cec2fd6a8df0c3de1b253" => :el_capitan
end
depends_on "python"
def install
venv = virtualenv_create(libexec, "python3")
system libexec/"bin/pip", "install", "-v", "--no-binary", ":all:",
"--ignore-installed", buildpath
system libexec/"bin/pip", "uninstall", "-y", name
venv.pip_install_and_link buildpath
end
test do
ENV["LC_ALL"] = "en_US.UTF-8"
ENV["LANG"] = "en_US.UTF-8"
(testpath/".calendar/test/01ef8547.ics").write <<~EOS
BEGIN:VCALENDAR
VERSION:2.0
BEGIN:VEVENT
DTSTART;VALUE=DATE:20130726
SUMMARY:testevent
DTEND;VALUE=DATE:20130727
LAST-MODIFIED:20130725T142824Z
DTSTAMP:20130725T142824Z
CREATED:20130725T142824Z
UID:01ef8547
END:VEVENT
END:VCALENDAR
EOS
(testpath/".config/khal/config").write <<~EOS
[calendars]
[[test]]
path = #{testpath}/.calendar/test/
color = light gray
[sqlite]
path = #{testpath}/.calendar/khal.db
[locale]
firstweekday = 0
[default]
default_calendar = test
EOS
system "#{bin}/khal", "--no-color", "search", "testevent"
end
end