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
78
79
80
81
82
83
84
85
86
87
|
#!/usr/bin/env bash
# vim: set et sw=4 sts=4 :
# Copyright (c) 2006, 2007, 2008, 2009 Ciaran McCreesh
#
# This file is part of the Paludis package manager. Paludis is free software;
# you can redistribute it and/or modify it under the terms of the GNU General
# Public License, version 2, as published by the Free Software Foundation.
#
# Paludis is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
# Place, Suite 330, Boston, MA 02111-1307 USA
export PATH="$(${PALUDIS_EBUILD_DIR}/utils/canonicalise ${PALUDIS_EBUILD_DIR}/utils/ ):${PATH}"
source ${PALUDIS_ECHO_FUNCTIONS_DIR:-${PALUDIS_EBUILD_DIR}}/echo_functions.bash
if [[ -n "${PALUDIS_NO_LIVE_DESTINATION}" ]] ; then
einfo_unhooked "No need to update the GNU info directory"
exit 0
fi
echo
einfo_unhooked "Checking whether the GNU info directory needs updating..."
regen_info_dirs=
vdb_loc=$(${PALUDIS_COMMAND} --configuration-variable installed location )
for info_path in ${INFOPATH//:/ } ; do
info_path="${ROOT%/}/${info_path}"
[[ -d "${info_path}" ]] || continue
info_time=$(wrapped_getmtime "${info_path}" )
if [[ -f "${vdb_loc}/.cache/info_time_cache" ]] ; then
info_time_cache=$(wrapped_getmtime "${vdb_loc}"/.cache/info_time_cache )
[[ "${info_time}" -le "${info_time_cache}" ]] && continue
fi
regen_info_dirs="${regen_info_dirs} ${info_path}"
done
if [[ -z "${regen_info_dirs}" ]] ; then
einfo_unhooked "No updates needed"
exit 0
fi
good_count=0
bad_count=0
for info_path in ${regen_info_dirs} ; do
einfo_unhooked "Updating directory ${info_path}..."
[[ -e "${info_path}"/dir ]] && mv -f "${info_path}/"dir{,.old}
for d in ${regen_info_dirs}/* ; do
[[ -f "${d}" ]] || continue
[[ "${d}" != "${d%dir}" ]] && continue
[[ "${d}" != "${d%dir.old}" ]] && continue
is_bad=
/usr/bin/install-info --quiet --dir-file="${info_path}/dir" "${d}" 2>&1 | \
while read line ; do
[[ "${line/already exists, for file/}" != "${line}" ]] && continue
[[ "${line/warning: no info dir entry in /}" != "${line}" ]] && continue
is_bad=probably
done
if [[ -n "${is_bad}" ]] ; then
bad_count=$(( bad_count + 1 ))
else
good_count=$(( good_count + 1 ))
fi
done
done
touch "${vdb_loc}/.cache/info_time_cache"
if [[ ${bad_count} -gt 0 ]] ; then
ewarn "Processed $(( good_count + bad_count )) info files, with ${bad_count} errors"
else
einfo_unhooked "Processed ${good_count} info files"
fi
exit 0
|