aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sphinx.rb
AgeCommit message (Collapse)Author
2012-09-03Batch convert MD5 formula to SHA1.Mike McQuaid
Closes #14653.
2012-08-26sphinx: use new dslAdam Vandenberg
2012-08-20sphinx 2.0.5jbastos
Closes #14310. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-12sphinx: remove unused patchJack Nagel
2012-08-10sphinx: Add option for 64-bit document ID supportOwen Smith
Closes #14024. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-07-26sphinx: Updating failing clang build to 421Ryan Schlesinger
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-05-08sphinx: style nitsJack Nagel
- use buildpath instead of Pathname.pwd - remove unrecognized '--disable-debug' Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-14Sphix: add options to force database selectionAdam Vandenberg
2012-04-14Sphix: check for mysql_configAdam Vandenberg
Check for mysql_config instead of mysql so that mysql-connector-c will be picked up too.
2012-04-01sphinx: fails with clangJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-01Use new fails_with DSL syntaxJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-01Sphinx 2.0.4Steven G. Harms
Also adds a workaround for clang/llvm Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-11Remove redundant versions and update version testsJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-03-06use which methodAdam Vandenberg
2011-12-24Sphinx: update to 2.0.3Pete Deffendol
Closes #9263. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-12-01Sphinx: Use --without-mysql unless MySQL installedMike Mayo
When installing the latest sphinx script, it defaults to mysql support unless --without-mysql is passed. Closes #8921. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-11-29Sphinx: Remove md5 in libstemmer dependancyClint Shryock
No md5 should be given due to the rapid evolution of the dependancy. Closes #8877. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-11-29Sphinx: Upgrade to 2.0.2-betaClint Shryock
The Sphinx search server is currently at verstion 2.0.2 **beta**, which is the recommened release according to their [downloads page][1] [1]: http://sphinxsearch.com/downloads/ Changes included: - Update MD5 for Sphinx package - Chnage install args to use `--with-mysql` if `which mysql` finds it, similar to how the `--with-pgsl` works` - Add MD5 for included Libstemmer formula Closes #8840. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-10-14sphinx: builds with LLVM >= 2335Jack Nagel
Closes #8077. Closes #7876. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-05sphinx: enable libstemmer supportJack Nagel
The upstream libstemmer project constantly changes the contents of the tarball, so doing checksum verification isn't feasible unless we want to be updating the formula constantly. Thus, use a head-only sub-formula without a checksum. Rather than make it an option, I've just set it to always build with libstemmer per #5730. We can always add the option later if it's necessary. Includes an unrelated fix to put the var directory in HOMEBREW_PREFIX/var. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-06-04Revert "sphinx 2.0.1-beta"Konstantin Shabanov
Revert because of this version is broken on OS X This reverts commit 502e3312d08ddb12070c675d28cb0a23c3bf3c4c. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-06-03sphinx 2.0.1-betaRyan Schlesinger
Though labelled beta, this is considered as stable as the previous 0.9.9 release. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-25Update fails_with_llvm in formulaeAdam Vandenberg
2011-03-12Use ruby style for inheritance.Adam Vandenberg
2010-12-28Sphinx - update download urlAdam Vandenberg
2010-10-21sphinx - check for mysql client libs. Fixes #2262Adam Vandenberg
2010-09-20Add HEAD location to Sphinx formulaPiotr Usewicz
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-16Add "fails_with_llvm" to formula to document LLVM build breaks.Adam Vandenberg
Replaced ENV.gcc_4_2 + comments with calls to "fails_with_llvm", to specifically message to the user when a formula is known or suspected to not build with LLVM. If the user specifies "--use-llvm", the message will be displayed, but compilation will be tried anyway. Since using LLVM is now an advanced/hidden feature instead of the default on 10.6, we'll let the user try anyway (and submit patches if things are now working.)
2010-04-15Fix Sphinx formula to pass --without-mysql if which fails to find mysqldKunal Shah
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-03-29fix sphinx formula (non-verbose mode it was failing with postgres installed)Angel
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-03-18Enable postgresql support in sphinx when pg_config is presentSteve Purcell
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-03-17Remove deps from Sphinx.Adam Vandenberg
Sphinx can use MySQL or PostgreSQL, and can use the mysql-connector libraries instead of a full on MySQL install. Since we don't know what datasource is intended, replace the hard dependency with explanations in the caveats.
2010-01-13Fixes #391David Höppner
2009-12-12Updated Sphinx Search to v0.9.9raja
2009-10-15s/require 'brewkit'/require 'formula'/gMax Howell
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
2009-09-21Use new depends_on syntax in all formulaMax Howell
Many formula were imported during the development of the dependency branch.
2009-09-11Sphinx formulaJamie van Dyke
How do you implement full-text search for that 10+ million row table, keep up with the load, and stay relevant? Sphinx is good at those kinds of riddles. Signed-off-by: Max Howell <max@methylblue.com> I added the mysql dependency.