aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorSebastian Wyder2014-02-10 15:10:15 +0100
committerMike McQuaid2014-02-10 14:42:27 +0000
commitd2017489d95f6f7d4d2d7d4c2d6505b6c865d461 (patch)
treef66c2c5aceedbf02a8c24e855f027f7763d348fb /Library/Formula
parent3be94f506a0bea6d69aa442757280b683bf798f5 (diff)
downloadhomebrew-d2017489d95f6f7d4d2d7d4c2d6505b6c865d461.tar.bz2
wrk 3.1.0
Added dependency to OpenSSL because wrk now supports benchmarking SSL/TLS endpoints up to TLSv1.2 and the standard OS X OpenSSL is too old to support TLSv1.2. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> Closes #26569. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/wrk.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/wrk.rb b/Library/Formula/wrk.rb
index c00c870ca..bf24915cc 100644
--- a/Library/Formula/wrk.rb
+++ b/Library/Formula/wrk.rb
@@ -2,10 +2,12 @@ require 'formula'
class Wrk < Formula
homepage 'https://github.com/wg/wrk'
- url 'https://github.com/wg/wrk/archive/3.0.4.tar.gz'
- sha1 '55ac8311878f81a6cc9d649da930792e2efb6fe7'
+ url 'https://github.com/wg/wrk/archive/3.1.0.tar.gz'
+ sha1 '3ddc1e591a846b92899a534abf4bc49d2c6cd98e'
head 'https://github.com/wg/wrk.git'
+ depends_on 'openssl'
+
conflicts_with 'wrk-trello', :because => 'both install `wrk` binaries'
def install
@@ -15,6 +17,6 @@ class Wrk < Formula
end
test do
- system *%W{#{bin}/wrk -c 1 -t 1 http://www.github.com/}
+ system *%W{#{bin}/wrk -c 1 -t 1 https://github.com/}
end
end