Tue, 06 Jun 2023 15:04:32 EDT

Information for build the_silver_searcher-0.18.1-1.ru6

ID3109
Package Namethe_silver_searcher
Version0.18.1
Release1.ru6
Epoch
SummaryA code-searching tool similar to ack, but faster
DescriptionThe 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 byrm934
State complete
StartedFri, 10 Jan 2014 11:19:52 EST
CompletedFri, 10 Jan 2014 11:22:27 EST
Taskbuild (centos6-rutgers-staging, the_silver_searcher-0.18.1-1.ru6.src.rpm)
Tags
centos6-rutgers-staging
centos6-rutgers-testing
RPMs
src
the_silver_searcher-0.18.1-1.ru6.src.rpm (info) (download)
i386 (build logs)
the_silver_searcher-0.18.1-1.ru6.i386.rpm (info) (download)
the_silver_searcher-debuginfo-0.18.1-1.ru6.i386.rpm (info) (download)
x86_64 (build logs)
the_silver_searcher-0.18.1-1.ru6.x86_64.rpm (info) (download)
the_silver_searcher-debuginfo-0.18.1-1.ru6.x86_64.rpm (info) (download)
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