Information for build the_silver_searcher-0.18.1-1.ru6
ID | 3109 | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Package Name | the_silver_searcher | ||||||||||||||||
Version | 0.18.1 | ||||||||||||||||
Release | 1.ru6 | ||||||||||||||||
Epoch | |||||||||||||||||
Summary | A code-searching tool similar to ack, but faster | ||||||||||||||||
Description | The Silver Searcher An attempt to make something better than ack (which itself is better than grep). Why use Ag? * It searches code about 3–5× faster than ack. * It ignores file patterns from your .gitignore and .hgignore. * If there are files in your source repo you don't want to search, just add their patterns to a .agignore file. *cough* extern *cough* * The command name is 33% shorter than ack! How is it so fast? * Searching for literals (no regex) uses Boyer-Moore-Horspool strstr. * Files are mmap()ed instead of read into a buffer. * If you're building with PCRE 8.21 or greater, regex searches use the JIT compiler. * Ag calls pcre_study() before executing the regex on a jillion files. * Instead of calling fnmatch() on every pattern in your ignore files, non-regex patterns are loaded into an array and binary searched. * Ag uses Pthreads to take advantage of multiple CPU cores and search files in parallel. | ||||||||||||||||
Built by | rm934 | ||||||||||||||||
State | complete | ||||||||||||||||
Started | Fri, 10 Jan 2014 11:19:52 EST | ||||||||||||||||
Completed | Fri, 10 Jan 2014 11:22:27 EST | ||||||||||||||||
Task | build (centos6-rutgers-staging, the_silver_searcher-0.18.1-1.ru6.src.rpm) | ||||||||||||||||
Tags |
|
||||||||||||||||
RPMs |
|
||||||||||||||||
Changelog | * Fri Jan 10 2014 Renish Matta <rm934@nbcs.rutgers.edu> - 0.18.1-1.ru6 - Initial build for Rutgers CentOS 6 * Thu Dec 05 2013 Emily Strickland <code@emily.st> - 0.18.1-1 - More accurate build and install requirements * Fri Aug 16 2013 Andrew Seidl <git@aas.io> - 0.15.0-1 - Install bash completion file * Wed Dec 05 2012 Daniel Nelson <packetcollision@gmail.com> - 0.13.1-1 - Initial Build |