From bcaa8235386b29bc1953333a4eb430df686d78f1 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Fri, 9 Aug 2013 09:32:51 -0700 Subject: Add fedora to brew search --- Library/Contributions/manpages/brew.1.md | 2 +- Library/Homebrew/cmd/search.rb | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'Library') 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` : + * `search --debian`|`--fedora`|`--fink`|`--macports`|`--opensuse` : Search for 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§ion=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 -- cgit v1.2.3