ngircd: system openssl fix
Fix for linking into the system OpenSSL, strict audit fixes, and the plist. Closes Homebrew/homebrew#36386. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
40447c239d
commit
8a707ebb2b
@ -41,6 +41,10 @@ class BottleVersion < Version
|
|||||||
m = /-(\d+[a-z])/.match(stem)
|
m = /-(\d+[a-z])/.match(stem)
|
||||||
return m.captures.first unless m.nil?
|
return m.captures.first unless m.nil?
|
||||||
|
|
||||||
|
# e.g. 22 from ngircd-22.mavericks.bottle.tar.gz
|
||||||
|
m = /-(\d{2})/.match(stem)
|
||||||
|
return m.captures.first unless m.nil?
|
||||||
|
|
||||||
super
|
super
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@ -65,4 +65,9 @@ class BottleVersionParsingTests < Homebrew::TestCase
|
|||||||
assert_version_detected '2007f',
|
assert_version_detected '2007f',
|
||||||
'imap-uw-2007f.yosemite.bottle.tar.gz'
|
'imap-uw-2007f.yosemite.bottle.tar.gz'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_ngircd_style
|
||||||
|
assert_version_detected '22',
|
||||||
|
'ngircd-22.mavericks.bottle.tar.gz'
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user