aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2013-08-09 09:32:51 -0700
committerAdam Vandenberg2013-08-09 09:32:51 -0700
commit2a89cc64da84a103cd9cee9b6ef5cf78ce188a5f (patch)
tree778ce03428e3b1c55e70443c1bbac7d8271bd5e9
parent10105dfe1447de1209910fdb29ff4352c23275d2 (diff)
downloadhomebrew-2a89cc64da84a103cd9cee9b6ef5cf78ce188a5f.tar.bz2
Add fedora to brew search
-rw-r--r--Library/Contributions/manpages/brew.1.md2
-rw-r--r--Library/Homebrew/cmd/search.rb2
-rw-r--r--share/man/man1/brew.12
3 files changed, 4 insertions, 2 deletions
diff --git a/Library/Contributions/manpages/brew.1.md b/Library/Contributions/manpages/brew.1.md
index a16859b07..ac641368b 100644
--- a/Library/Contributions/manpages/brew.1.md
+++ b/Library/Contributions/manpages/brew.1.md
@@ -269,7 +269,7 @@ Note that these flags should only appear after a command.
surrounded with slashes, then it is interpreted as a regular expression.
If no search term is given, all available formula are displayed.
- * `search --macports`|`--fink`|`--debian`|`--opensuse` <text>:
+ * `search --debian`|`--fedora`|`--fink`|`--macports`|`--opensuse` <text>:
Search for <text> in the given package manager's list.
* `sh [--env=std]`:
diff --git a/Library/Homebrew/cmd/search.rb b/Library/Homebrew/cmd/search.rb
index 82d6bebe3..651534595 100644
--- a/Library/Homebrew/cmd/search.rb
+++ b/Library/Homebrew/cmd/search.rb
@@ -13,6 +13,8 @@ module Homebrew extend self
exec_browser "http://packages.debian.org/search?keywords=#{ARGV.next}&searchon=names&suite=all&section=all"
elsif ARGV.include? '--opensuse'
exec_browser "http://software.opensuse.org/search?q=#{ARGV.next}"
+ elsif ARGV.include? '--fedora'
+ exec_browser "https://admin.fedoraproject.org/pkgdb/acls/list/*#{ARGV.next}*"
elsif (query = ARGV.first).nil?
puts_columns Formula.names
else
diff --git a/share/man/man1/brew.1 b/share/man/man1/brew.1
index f0cef3a52..2b634a993 100644
--- a/share/man/man1/brew.1
+++ b/share/man/man1/brew.1
@@ -296,7 +296,7 @@ If \fB\-\-force\fR is passed, and there are multiple versions of \fIformula\fR i
Perform a substring search of formula names for \fItext\fR\. If \fItext\fR is surrounded with slashes, then it is interpreted as a regular expression\. If no search term is given, all available formula are displayed\.
.
.TP
-\fBsearch \-\-macports\fR|\fB\-\-fink\fR|\fB\-\-debian\fR|\fB\-\-opensuse\fR \fItext\fR
+\fBsearch \-\-debian\fR|\fB\-\-fedora\fR|\fB\-\-fink\fR|\fB\-\-macports\fR|\fB\-\-opensuse\fR \fItext\fR
Search for \fItext\fR in the given package manager\'s list\.
.
.TP