aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2013-07-01 23:16:38 +0100
committerMike McQuaid2013-07-01 23:16:38 +0100
commit9cff299789ccdc59555cd8513d75b3c378f18073 (patch)
tree89b2c59527e9cf41307a83d52f9bdf1536cd6669 /Library
parent1521ea9cf1a7de3fabe339d8aa1ac7a27ac80b2e (diff)
downloadhomebrew-9cff299789ccdc59555cd8513d75b3c378f18073.tar.bz2
Remove message from default_formula'd requirements
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mplayershell.rb11
-rw-r--r--Library/Formula/mu.rb11
-rw-r--r--Library/Formula/shocco.rb11
-rw-r--r--Library/Formula/signing-party.rb12
-rw-r--r--Library/Homebrew/requirements.rb35
-rw-r--r--Library/Homebrew/requirements/fortran_dependency.rb11
-rw-r--r--Library/Homebrew/requirements/mpi_dependency.rb24
7 files changed, 0 insertions, 115 deletions
diff --git a/Library/Formula/mplayershell.rb b/Library/Formula/mplayershell.rb
index 479dc018c..b80ba6859 100644
--- a/Library/Formula/mplayershell.rb
+++ b/Library/Formula/mplayershell.rb
@@ -5,17 +5,6 @@ class MPlayerPresented < Requirement
default_formula 'mplayer'
satisfy { which('mplayer') || which('mplayer2') }
-
- def message; <<-EOS.undent
- MPlayerShell requires mplayer or mplayer2 to be installed.
-
- You can use either
- brew install mplayer
- or
- brew tap pigoz/mplayer2
- brew install mplayer2
- EOS
- end
end
class Mplayershell < Formula
diff --git a/Library/Formula/mu.rb b/Library/Formula/mu.rb
index 2d9d18f9a..c06db86d3 100644
--- a/Library/Formula/mu.rb
+++ b/Library/Formula/mu.rb
@@ -9,17 +9,6 @@ class Emacs23Installed < Requirement
`emacs --version 2>/dev/null` =~ /^GNU Emacs (\d{2})/
$1.to_i >= 23
end
-
- def message; <<-EOS.undent
- Emacs 23 or greater is required to build this software.
-
- You can install this with Homebrew:
- brew install emacs
-
- Or you can use any other Emacs distribution
- that provides version 23 or greater.
- EOS
- end
end
class Mu < Formula
diff --git a/Library/Formula/shocco.rb b/Library/Formula/shocco.rb
index 15dac128d..139d6b566 100644
--- a/Library/Formula/shocco.rb
+++ b/Library/Formula/shocco.rb
@@ -13,17 +13,6 @@ class MarkdownProvider < Requirement
default_formula 'markdown'
satisfy { which 'markdown' }
-
- def message; <<-EOS.undent
- shocco requires a `markdown` command.
-
- You can satisfy this requirement with either of two formulae:
- brew install markdown
- brew install discount
-
- Please install one and try again.
- EOS
- end
end
class Shocco < Formula
diff --git a/Library/Formula/signing-party.rb b/Library/Formula/signing-party.rb
index ecbb8c6b7..7622fe52b 100644
--- a/Library/Formula/signing-party.rb
+++ b/Library/Formula/signing-party.rb
@@ -5,18 +5,6 @@ class GnupgInstalled < Requirement
default_formula 'gnupg2'
satisfy { which('gpg') || which('gpg2') }
-
- def message; <<-EOS.undent
- Gnupg is required to use these tools.
-
- You can install Gnupg or Gnupg2 with Homebrew:
- brew install gnupg
- brew install gnupg2
-
- Or you can use one of several different
- prepackaged installers that are available.
- EOS
- end
end
class SigningParty < Formula
diff --git a/Library/Homebrew/requirements.rb b/Library/Homebrew/requirements.rb
index cfec02200..5ffa660ab 100644
--- a/Library/Homebrew/requirements.rb
+++ b/Library/Homebrew/requirements.rb
@@ -24,21 +24,6 @@ class MysqlDependency < Requirement
default_formula 'mysql'
satisfy { which 'mysql_config' }
-
- def message; <<-EOS.undent
- MySQL is required to install.
-
- You can install this with Homebrew using:
- brew install mysql-connector-c
- For MySQL client libraries only.
-
- brew install mysql
- For MySQL server.
-
- Or you can use an official installer from:
- http://dev.mysql.com/downloads/mysql/
- EOS
- end
end
class PostgresqlDependency < Requirement
@@ -46,18 +31,6 @@ class PostgresqlDependency < Requirement
default_formula 'postgresql'
satisfy { which 'pg_config' }
-
- def message
- <<-EOS.undent
- Postgres is required to install.
-
- You can install this with Homebrew using:
- brew install postgres
-
- Or you can use an official installer from:
- http://www.postgresql.org/download/macosx/
- EOS
- end
end
class TeXDependency < Requirement
@@ -117,12 +90,4 @@ class MercurialDependency < Requirement
default_formula 'mercurial'
satisfy { which('hg') }
-
- def message; <<-EOS.undent
- Mercurial is needed to install this software.
-
- You can install this with Homebrew using:
- brew install mercurial
- EOS
- end
end
diff --git a/Library/Homebrew/requirements/fortran_dependency.rb b/Library/Homebrew/requirements/fortran_dependency.rb
index c65fba160..9e21bc0f1 100644
--- a/Library/Homebrew/requirements/fortran_dependency.rb
+++ b/Library/Homebrew/requirements/fortran_dependency.rb
@@ -10,15 +10,4 @@ class FortranDependency < Requirement
satisfy :build_env => false do
(ENV['FC'] || which('gfortran')) ? true : false
end
-
- def message; <<-EOS.undent
- Fortran is required to install.
-
- You can install this with Homebrew using:
- brew install gfortran
-
- Or you can use an external compiler by setting:
- FC=<path-to-fortran-compiler>
- EOS
- end
end
diff --git a/Library/Homebrew/requirements/mpi_dependency.rb b/Library/Homebrew/requirements/mpi_dependency.rb
index 2baf9a904..44fc23495 100644
--- a/Library/Homebrew/requirements/mpi_dependency.rb
+++ b/Library/Homebrew/requirements/mpi_dependency.rb
@@ -60,28 +60,4 @@ class MPIDependency < Requirement
ENV[compiler.upcase] = mpi_path
end
end
-
- def message
- if not @unknown_langs.empty?
- <<-EOS.undent
- There is no MPI compiler wrapper for:
- #{@unknown_langs.join ', '}
-
- The following values are valid arguments to `MPIDependency.new`:
- :cc, :cxx, :f90, :f77
- EOS
- else
- <<-EOS.undent
- Homebrew could not locate working copies of the following MPI compiler
- wrappers:
- #{@non_functional.join ', '}
-
- If you have a MPI installation, please ensure the bin directory is on your
- PATH and that all the wrappers are functional. Otherwise, a MPI
- installation can be obtained from homebrew by *picking one* of the
- following formulae:
- open-mpi, mpich2
- EOS
- end
- end
end