diff options
author | 2021-03-05 10:31:54 -0500 | |
---|---|---|
committer | 2021-03-20 05:33:38 +0000 | |
commit | fb791526ce7bc605f666b2e833962fafaaa317fd (patch) | |
tree | d390db80fefd7142650e037c1fa83b37d6f56184 /sys-apps/plocate/metadata.xml | |
parent | dev-go/act: add -x for verbose Go build (diff) | |
download | gentoo-fb791526ce7bc605f666b2e833962fafaaa317fd.tar.gz gentoo-fb791526ce7bc605f666b2e833962fafaaa317fd.tar.bz2 gentoo-fb791526ce7bc605f666b2e833962fafaaa317fd.zip |
sys-apps/plocate: new package
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Jeffrey Lin <jeffrey@icurse.nl>
Closes: https://github.com/gentoo/gentoo/pull/19786
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-apps/plocate/metadata.xml')
-rw-r--r-- | sys-apps/plocate/metadata.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sys-apps/plocate/metadata.xml b/sys-apps/plocate/metadata.xml new file mode 100644 index 000000000000..1920c0fd8497 --- /dev/null +++ b/sys-apps/plocate/metadata.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>sam@gentoo.org</email> + <name>Sam James</name> + </maintainer> + <maintainer type="person"> + <email>arsen@aarsen.me</email> + <name>Arsen Arsenović</name> + </maintainer> + <maintainer type="person"> + <email>jeffrey@icurse.nl</email> + <name>Jeffrey Lin</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <use> + <flag name="io-uring">Enable efficient I/O via <pkg>sys-libs/liburing</pkg>.</flag> + </use> + <longdescription> +plocate works by creating an inverted index over trigrams (combinations of +three bytes) in the search strings, which allows it to rapidly narrow down the +set of candidates to a very small list, instead of linearly scanning through +every entry. It does nearly all I/O asynchronously using io_uring if available +(Linux 5.1+), which reduces the impact of seek latency on systems without SSDs. +Like mlocate and slocate, the returned file set is user-dependent, ie. a user +will only see a file if find(1) would list it (all directories from the root +have +rx permissions). + </longdescription> +</pkgmetadata> |