2020-09-23 01:24:04 +08:00
|
|
|
function __fish_print_eopkg_packages
|
|
|
|
type -q -f eopkg || return 1
|
|
|
|
|
|
|
|
argparse i/installed -- $argv
|
|
|
|
or return 1
|
|
|
|
|
|
|
|
set -l xdg_cache_home (__fish_make_cache_dir)
|
|
|
|
or return
|
|
|
|
|
|
|
|
# If the cache is less than max_age, we do not recalculate it
|
|
|
|
# Determine whether to print installed/available packages
|
|
|
|
|
|
|
|
if set -q _flag_installed
|
2024-01-19 04:22:27 +08:00
|
|
|
set -l cache_file $xdg_cache_home/eopkg-installed
|
2020-09-23 01:24:04 +08:00
|
|
|
if test -f $cache_file
|
|
|
|
cat $cache_file
|
2022-07-19 02:39:01 +08:00
|
|
|
set -l age (path mtime -R -- $cache_file)
|
2020-09-23 01:24:04 +08:00
|
|
|
set -l max_age 500
|
|
|
|
if test $age -lt $max_age
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Remove package version information from output and pipe into cache file
|
|
|
|
eopkg list-installed -N | cut -d ' ' -f 1 >$cache_file &
|
|
|
|
return 0
|
|
|
|
else
|
2024-01-19 04:22:27 +08:00
|
|
|
set -l cache_file $xdg_cache_home/eopkg-available
|
2020-09-23 01:24:04 +08:00
|
|
|
if test -f $cache_file
|
|
|
|
cat $cache_file
|
2022-07-19 02:39:01 +08:00
|
|
|
set -l age (path mtime -R -- $cache_file)
|
2020-09-23 01:24:04 +08:00
|
|
|
set -l max_age 500
|
|
|
|
if test $age -lt $max_age
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Remove package version information from output and pipe into cache file
|
|
|
|
eopkg list-available -N | cut -d ' ' -f 1 >$cache_file &
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
return 1
|
|
|
|
end
|