Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

opensaml 2.6.1 & shibboleth-sp 2.6.1 #20723

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Formula/opensaml.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
class Opensaml < Formula
desc "Library for Security Assertion Markup Language"
homepage "https://wiki.shibboleth.net/confluence/display/OpenSAML/Home"
url "https://shibboleth.net/downloads/c++-opensaml/2.6.0/opensaml-2.6.0.tar.gz"
sha256 "8c8e7d1d7b045cda330dd49ea1972a3306ebefbf42cc65b8f612d66828352179"
revision 1
url "https://shibboleth.net/downloads/c++-opensaml/2.6.1/opensaml-2.6.1.tar.bz2"
sha256 "69516b165858d381fcf1d8ce809c101246824d383aa635a3676648c88b242a83"

bottle do
cellar :any
Expand Down
10 changes: 5 additions & 5 deletions Formula/shibboleth-sp.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class ShibbolethSp < Formula
desc "Shibboleth 2 Service Provider daemon"
homepage "https://wiki.shibboleth.net/confluence/display/SHIB2"
url "https://shibboleth.net/downloads/service-provider/2.6.0/shibboleth-sp-2.6.0.tar.gz"
sha256 "7f23b8a28e66ae1b0fe525ca1f8b84c4566a071367f5d9a1bd71bd6b29e4d985"
url "https://shibboleth.net/downloads/service-provider/2.6.1/shibboleth-sp-2.6.1.tar.bz2"
sha256 "1121e3b726b844d829ad86f2047be62da4284ce965ac184de2f81903f16b98e4"

bottle do
rebuild 2
Expand Down Expand Up @@ -55,7 +55,7 @@ def caveats
mod = build.with?("apache-22") ? "mod_shib_22.so" : "mod_shib_24.so"
<<~EOS
You must manually edit httpd.conf to include
LoadModule mod_shib #{lib}/shibboleth/#{mod}
LoadModule mod_shib #{opt_lib}/shibboleth/#{mod}
You must also manually configure
#{etc}/shibboleth/shibboleth2.xml
as per your own requirements. For more information please see
Expand All @@ -78,7 +78,7 @@ def plist; <<~EOS
<string>-F</string>
<string>-f</string>
<string>-p</string>
<string>#{prefix}/var/run/shibboleth/shibd.pid</string>
<string>#{var}/run/shibboleth/shibd.pid</string>
</array>
<key>RunAtLoad</key>
<true/>
Expand All @@ -95,6 +95,6 @@ def post_install
end

test do
system "#{opt_sbin}/shibd", "-t"
system sbin/"shibd", "-t"
end
end