From 49110cec34d65b2d8cf3433aa3b881111197dd3c Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Fri, 10 Oct 2014 16:40:30 +0200 Subject: xlocate: use locatedb ~/.cache/xlocate.db if it exists --- xlocate | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) (limited to 'xlocate') diff --git a/xlocate b/xlocate index 705cd34..0b34fe0 100755 --- a/xlocate +++ b/xlocate @@ -1,4 +1,24 @@ #!/bin/sh # xlocate PATTERN - locate files in all XBPS packages -xbps-query --regex -Ro "$@" | sed 's/ *([^)]*)$//; s/^\([^ ]*\)-[^-]*: /\1\t/' +: ${XLOCATE_DB:=~/.cache/xlocate.db} + +if [ -e "$XLOCATE_DB" ]; then + if [ "$XLOCATE_DB" -ot /var/db/xbps/http___repo_voidlinux_eu_current/*-repodata ] || [ ! -s "$XLOCATE_DB" ]; then + echo "xlocate: reindexing database..." 1>&2 + xbps-query --regex -Ro '' | + sed 's/ *([^)]*)$//; s|: ||;' | + /usr/libexec/frcode >"$XLOCATE_DB" + fi + rx= + case "$1" in + # Just . is unlikely to be a regex here... + *[*+\\\[\]]*) rx=-r;; + esac + # XXX also matches template in package name. + locate $rx -d "$XLOCATE_DB" "$1" | + sed 's|^\([^/]*\)-[^-/]*/|\1\t/|' +else + xbps-query --regex -Ro "$@" | + sed 's/ *([^)]*)$//; s/^\([^ ]*\)-[^-]*: /\1\t/' +fi -- cgit 1.4.1