vdirsyncer 0.7.0

Closes Homebrew/homebrew#45433.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
master
Benjamin Frank 2015-10-28 22:26:47 +01:00 committed by Mike McQuaid
parent 58fcbd9390
commit 36337ab4bb
1 changed files with 13 additions and 3 deletions

View File

@ -1,8 +1,8 @@
class Vdirsyncer < Formula
desc "Synchronize calendars and contacts"
homepage "https://github.com/untitaker/vdirsyncer"
url "https://pypi.python.org/packages/source/v/vdirsyncer/vdirsyncer-0.6.0.tar.gz"
sha256 "0d2a9677b086cfbe5fe5e7cb5e55db4c1afab62cb5dc56aeaff6e95d34bf60d5"
url "https://pypi.python.org/packages/source/v/vdirsyncer/vdirsyncer-0.7.0.tar.gz"
sha256 "ddf9e20b085f97c7bae97ed4cd5e8a78f472ee0b1cae3be537809ae98589172a"
head "https://github.com/untitaker/vdirsyncer.git"
bottle do
@ -26,6 +26,16 @@ class Vdirsyncer < Formula
sha256 "678c98275431fad324275dec63791e4a17558b40e5a110e20a82866139a85a5a"
end
resource "click_threading" do
url "https://pypi.python.org/packages/source/c/click-threading/click-threading-0.1.2.tar.gz"
sha256 "85045457e02f16fba3110dc6b16e980bf3e65433808da2b550dd513206d9b94a"
end
resource "click_log" do
url "https://pypi.python.org/packages/source/c/click-log/click-log-0.1.1.tar.gz"
sha256 "0bc7e69311007adc4b5304d47933761999a43a18a87b9b7f2aa12b5e256f72fc"
end
resource "requests" do
url "https://pypi.python.org/packages/source/r/requests/requests-2.7.0.tar.gz"
sha256 "398a3db6d61899d25fd4a06c6ca12051b0ce171d705decd7ed5511517b4bb93d"
@ -49,7 +59,7 @@ class Vdirsyncer < Formula
def install
version = Language::Python.major_minor_version "python3"
ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python#{version}/site-packages"
rs = %w[click requests lxml requests-toolbelt atomicwrites]
rs = %w[click click_threading click_log requests lxml requests-toolbelt atomicwrites]
rs << "keyring" if build.with? "keyring"
rs.each do |r|
resource(r).stage do