mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
5dfb64b547
This can be used to print the modification time, like `stat` with some options. The reason is that `stat` has caused us a number of portability headaches: 1. It's not available everywhere by default 2. The versions are quite different For instance, with GNU stat it's `stat -c '%Y'`, with macOS it's `stat -f %m`. So now checking a cache file can be done just with builtins.
23 lines
679 B
Fish
23 lines
679 B
Fish
function __fish_print_port_packages
|
|
type -q -f port || return 1
|
|
|
|
# port needs caching, as it tends to be slow
|
|
set -l xdg_cache_home (__fish_make_cache_dir)
|
|
or return
|
|
|
|
set -l cache_file $xdg_cache_home/.port-cache.$USER
|
|
if test -f $cache_file
|
|
cat $cache_file
|
|
set -l age (path mtime -R -- $cache_file)
|
|
set -l max_age 250
|
|
if test $age -lt $max_age
|
|
return
|
|
end
|
|
end
|
|
|
|
# Remove trailing whitespace and pipe into cache file
|
|
printf "all\ncurrent\nactive\ninactive\ninstalled\nuninstalled\noutdated" >$cache_file
|
|
port echo all | awk '{$1=$1};1' >>$cache_file &
|
|
cat $cache_file
|
|
return 0
|
|
end
|