blob: ba72565cf3aea0e85ccd9e757a208404a0435854 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
declare -A refcache=()
__remote_refcache_update() {
local remote=$1 cachefile=$ASPCACHE/remote-$remote
trap "rm -f '$cachefile~'" RETURN
git ls-remote "$remote" 'refs/heads/packages/*' |
awk '{ sub(/refs\/heads\//, "", $2); print $2 }' >"$cachefile~" &&
mv "$cachefile"{~,}
}
__remote_refcache_get() {
local remote=$1 ttl=3600 now= cachetime= cachefile=$ASPCACHE/remote-$remote
printf -v now '%(%s)T' -1
if ! cachetime=$(stat -c %Y "$cachefile" 2>/dev/null) ||
(( now > (cachetime + ttl) )); then
__remote_refcache_update "$remote"
fi
mapfile -t "$2" <"$cachefile"
}
remote_get_all_refs() {
local remote=$1
__remote_refcache_get "$remote" "$2"
}
remote_has_package() {
local remote=$1 pkgname=$2 refs
remote_get_all_refs "$remote" refs
in_array "packages/$pkgname" "${refs[@]}"
}
remote_is_tracking() {
local repo=$1 pkgname=$2
git show-ref -q "$repo/packages/$pkgname"
}
remote_get_tracked_refs() {
local remote=$1
mapfile -t "$2" < <(git branch --remote 2>/dev/null |
awk -F'( +|/)' -v "remote=$1" \
'$2 == remote && $3 == "packages" { print "packages/" $4 }')
}
remote_update_refs() {
local remote=$1 refspecs=("${@:2}")
git fetch "$remote" "${refspecs[@]}"
}
remote_update() {
local remote=$1 refspecs
remote_get_tracked_refs "$remote" refspecs
# refuse to update everything
[[ -z $refspecs ]] && return 0
remote_update_refs "$remote" "${refspecs[@]}"
}
remote_untrack() {
local remote=$1 pkgname=$2
if git show-ref -q "refs/remotes/$remote/packages/$pkgname"; then
git branch -dr "$remote/packages/$pkgname"
fi
}
|