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

Linkages #664

Closed
wants to merge 3 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
11 changes: 6 additions & 5 deletions Formula/gnu-smalltalk.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ class GnuSmalltalk < Formula
url "http://ftpmirror.gnu.org/smalltalk/smalltalk-3.2.5.tar.xz"
mirror "https://ftp.gnu.org/gnu/smalltalk/smalltalk-3.2.5.tar.xz"
sha256 "819a15f7ba8a1b55f5f60b9c9a58badd6f6153b3f987b70e7b167e7755d65acc"
revision 2
revision 3

head "https://github.com/bonzini/smalltalk.git"

Expand All @@ -15,9 +15,9 @@ class GnuSmalltalk < Formula
end

devel do
url "http://alpha.gnu.org/gnu/smalltalk/smalltalk-3.2.90.tar.gz"
mirror "https://www.mirrorservice.org/sites/alpha.gnu.org/gnu/smalltalk/smalltalk-3.2.90.tar.gz"
sha256 "aa6cab17841f999c9217cdccd185a74e42fc6a7fc17139120dad8815bdff137c"
url "http://alpha.gnu.org/gnu/smalltalk/smalltalk-3.2.91.tar.gz"
mirror "https://www.mirrorservice.org/sites/alpha.gnu.org/gnu/smalltalk/smalltalk-3.2.91.tar.gz"
sha256 "13a7480553c182dbb8092bd4f215781b9ec871758d1db7045c2d8587e4d1bef9"
end

option "with-test", "Verify the build with make check (this may hang)"
Expand All @@ -34,6 +34,7 @@ class GnuSmalltalk < Formula
depends_on "gawk" => :build
depends_on "readline"
depends_on "gnutls"
depends_on "gdbm"
depends_on "libffi" => :recommended
depends_on "libsigsegv" => :recommended
depends_on "glew" => :optional
Expand Down Expand Up @@ -76,6 +77,6 @@ def install
path = testpath/"test.gst"
path.write "0 to: 9 do: [ :n | n display ]\n"

assert_match /0123456789/, shell_output("#{bin}/gst #{path}")
assert_match "0123456789", shell_output("#{bin}/gst #{path}")
end
end
3 changes: 2 additions & 1 deletion Formula/mailutils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ class Mailutils < Formula
desc "Swiss Army knife of email handling"
homepage "http://mailutils.org/"
url "http://ftpmirror.gnu.org/mailutils/mailutils-2.2.tar.gz"
mirror "https://ftp.gnu.org/gnu/mailutils/mailutils-2.2.tar.gz"
sha256 "97591debcd32ac1f4c4d16eaa8f21690d9dfefcb79e29bd293871d57c4a5e05d"
revision 1
revision 2

bottle do
sha256 "fccedf57a8a126a59070d2038ff46b5fc12ef98a2e5d4a670d43360258904471" => :el_capitan
Expand Down