Commit Graph

35 Commits

Author SHA1 Message Date
naddy
8c80a751f8 drop RCS Ids 2022-03-11 20:02:12 +00:00
semarie
9eabb86da0 textproc/the_silver_searcher: backport upstream patch to compile with -fno-common
21eaa1c416

Same diff from bket@
ok bket@
2021-01-29 16:38:00 +00:00
sthen
77f7cc9c61 replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes 2019-07-12 20:49:33 +00:00
danj
fa87138478 Remove maintainer per their request
Done with portbump -z, thanks sthen!
2019-05-07 16:52:34 +00:00
bcallah
43b3bf4538 Update to the_silver_search-2.2.0 -- predominantly recognizing more
languages.
Original diff from Edward Lopez-Acosta, with tweaks from me to switch the
HOMEPAGE and MASTER_SITES to their correct locations and https.
ok sthen@, works fine for MAINTAINER
2018-11-23 16:00:16 +00:00
naddy
11e3dd67b3 switch COMPILER from the old, confusing shortcuts to the more explicit format 2017-11-16 23:20:37 +00:00
fcambus
8aa6b3cd42 Update the_silver_searcher to 2.1.0.
From maintainer Florian Stinglmayr, thanks!
2017-09-07 13:31:21 +00:00
bcallah
6c14bc791e Update to 2.0.0 -- Please note that this breaks backwards compatibility as
.agignore was renamed to .ignore!
ok Florian Stinglmayr (MAINTAINER)
2017-07-02 22:20:22 +00:00
espie
cc5bc426ed switch everything to new COMPILER idiom, even stuff that won't build with clang
yet, but at least that part is done.
2017-05-31 08:08:15 +00:00
espie
7fff611f3d WANT_CXX 2017-05-28 18:56:30 +00:00
fcambus
557d591dd9 Update the_silver_searcher to 1.0.3.
From maintainer Florian Stinglmayr, thanks!

OK tb@
2017-05-06 13:24:46 +00:00
tb
c5c8e787e5 Fix a buffer overrun and subsequent crash that may occur when ag is given
an absolute path as root of the tree to search: it's looking for a trailing
slash that isn't always there.

Fix by Allen Wild, https://github.com/ggreer/the_silver_searcher/pull/1040/

ok awolk, sthen, jca
2017-01-05 13:50:49 +00:00
fcambus
3ed640fed3 Update the_silver_searcher to 1.0.2, from maintainer Florian Stinglmayr. 2016-12-15 14:16:38 +00:00
sthen
25f33245a5 update to the_silver_searcher-1.0.1, from maintainer Florian Stinglmayr,
tweak by me and ok with Florian.
2016-12-02 14:51:52 +00:00
juanfra
2389b58575 Update to the_silver_searcher 0.33.0. From Florian Stinglmayr (MAINTAINER). 2016-09-30 02:08:52 +00:00
sthen
37582affe0 update to the_silver_searcher-0.32.0, which adds pledge support (upstream).
use more of upstream's build infrastructure to simplify the ports Makefile.
ok Florian Stinglmayr (maintainer), tb@
2016-05-17 10:57:07 +00:00
jasper
e32922a8b1 sed -i 2015-10-09 12:48:21 +00:00
benoit
3ee3e51079 Update to the_silver_searcher-0.31.0.
from Florian Stinglmayr (maintainer)
2015-09-18 14:54:15 +00:00
bcallah
3eeb0f8307 Update to 0.30.0
From Florian Stinglmayr (MAINTAINER)
2015-05-17 13:58:42 +00:00
bcallah
109951a400 Update to 0.29.1
From Florian Stinglmayr (MAINTAINER)
2015-02-09 20:56:44 +00:00
bcallah
c099a94cac Update to 0.28.0
From Florian Stinglmayr (MAINTAINER)
2014-12-26 16:06:02 +00:00
bcallah
7a939f6371 Update to 0.27.0, also remove a hardcoded -O2 while here.
ok Florian Stinglmayr (MAINTAINER)
2014-12-06 18:01:00 +00:00
bcallah
06c74f1bfa Update to 0.26.0
From Florian Stinglmayr (MAINTAINER)
2014-10-27 18:53:27 +00:00
bcallah
4eda2f6acd Update to 0.25.0
ok Florian Stinglmayr (MAINTAINER)
2014-10-13 15:04:11 +00:00
bcallah
3bab3774b0 Update to 0.24.1
From maintainer Florian Stinglmayr - thanks!
2014-09-10 19:14:30 +00:00
sthen
b223650d85 update the the_silver_searcher-0.23.0, from maintainer Florian Stinglmayr
add a comment next to NO_TEST while there (tests are referenced in the
Makefile but don't appear in the distfile).
2014-07-06 21:00:41 +00:00
bcallah
a10da1f62e Update to 0.22.0. Contains an updated file detection mechanism and a few
simple updates.
From MAINTAINER Florian Stinglmayr
2014-05-30 13:08:47 +00:00
bcallah
a21ec3713d Bugfix update to 0.21.1
From Florian Stinglmayr (MAINTAINER)
2014-03-25 18:57:31 +00:00
bcallah
5cf0e35e47 Bugfix update to 0.19.2
From MAINTAINER Florian Stinglmayr <florian AT n0la DOT org>
2014-02-06 17:17:53 +00:00
bcallah
4434f132c0 Bugfix update to 0.19.1
From Florian Stinglmayr (MAINTAINER).
2014-01-23 18:14:35 +00:00
sthen
36c316f56f update to the_silver_searcher-0.18.1, from maintainer Florian Stinglmayr
also update DESCR to add some information from upstream about why it's fast,
ok with Florian.

* Searching for literals (no regex) uses Boyer-Moore-Horspool strstr.
* Files are mmap()ed instead of read into a buffer.
* Regex searches use PCRE 8.21+'s 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.
2013-11-06 21:56:49 +00:00
bcallah
c1b50db4c5 Fix configure so it finds pthread.h
Bump REVISION
ok sthen@
2013-09-30 17:17:36 +00:00
sthen
61e1a539e3 update to the_silver_searcher-0.17, from maintainer Florian Stinglmayr,
and thanks to upstream for generating proper tar.gz releases when I requested :)
2013-09-30 16:08:27 +00:00
bcallah
75473b926f Use the Github tarball instead of MAINTAINER-generated tarball.
Use an autoconf/automake pre-configure routine (lifted from games/manaplus)
Use a do-install routine to eliminate install-rerunning-autoconf weirdness.
Also, the do-install routine installs the bash-completions script under the
correct name.
Bump REVISION.
ok aja@, with tweak from sthen@
2013-09-20 14:40:09 +00:00
bcallah
80bae743d2 Import textproc/the_silver_searcher.
The silver searcher, also known as ag, is a fast text searching tool
similar to grep or ack.
ok sthen@
2013-09-20 12:46:59 +00:00