summaryrefslogtreecommitdiff
path: root/sysutils/frand (follow)
Commit message (Collapse)AuthorAgeFilesLines
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* devel/boost-*: update to 1.72.0Jan Beich2019-12-111-1/+1
| | | | | | | Changes: http://www.boost.org/users/history/version_1_72_0.html PR: 241449 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D22136
* sysutils/frand: fix build on GCC architecturesPiotr Kubaj2019-09-191-1/+1
| | | | | | | Use C++11 compiler: /wrkdirs/usr/ports/sysutils/frand/work/frand-0.1/main.cpp:7: error: ISO C++ forbids declaration of 'sample_sets_count' with no type Approved by: mentors (implicit approval)
* sysutils/frand: Canonicalize USE_GITHUB usageTobias Kortkamp2019-08-311-4/+1
| | | | | Make use of GH_TUPLE, avoid implementation details, and turn this into a form that everybody understands.
* devel/boost-*: update to 1.71.0Jan Beich2019-08-191-0/+1
| | | | | | | Changes: http://www.boost.org/users/history/version_1_71_0.html PR: 238827 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D20774
* Some @comment $FreeBSD$ always creep back, for some reason.Mathieu Arnold2019-08-191-1/+0
| | | | Pointy hat: pi rodrigo
* Add new port sysutils/frandRodrigo Osorio2019-08-184-0/+37
frand is a command line tool who returns a random file from a given directory using the reservoir sampling algorithm. With reservoir sampling algorithm, directory contents doesn't need to be read in memory then sorted and so will perform much better than find+sort for directories with a large amount of files. PR: 239467 Submitted by: serpent7776@gmail.com