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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
#!/bin/sh
# Script to check and update debian packaging to match current ABIs
set -e
if [ ! -d debian ];
then
echo "Failed to find debian/ directory. Make sure you run the script from the source tree root." >&2
exit 1
fi
packages="\
libmiroil:MIROIL_ABI \
libmiral:MIRAL_ABI \
libmircore:MIRCORE_ABI \
libmircommon:MIRCOMMON_ABI \
libmirplatform:MIRPLATFORM_ABI \
libmirserver:MIRSERVER_ABI \
mir-platform-graphics-x:MIR_SERVER_GRAPHICS_PLATFORM_ABI \
mir-platform-graphics-atomic-kms:MIR_SERVER_GRAPHICS_PLATFORM_ABI \
mir-platform-graphics-gbm-kms:MIR_SERVER_GRAPHICS_PLATFORM_ABI \
mir-platform-graphics-eglstream-kms:MIR_SERVER_GRAPHICS_PLATFORM_ABI \
mir-platform-input-evdev:MIR_SERVER_INPUT_PLATFORM_ABI\
libmirwayland:MIRWAYLAND_ABI\
mir-platform-graphics-wayland:MIR_SERVER_GRAPHICS_PLATFORM_ABI\
mir-platform-rendering-egl-generic:MIR_SERVER_GRAPHICS_PLATFORM_ABI\
mir-platform-graphics-virtual:MIR_SERVER_GRAPHICS_PLATFORM_ABI\
mir-platform-graphics-stub:MIR_SERVER_GRAPHICS_PLATFORM_ABI\
mir-platform-input-stub:MIR_SERVER_INPUT_PLATFORM_ABI"
package_name()
{
echo "${1%%:*}"
}
package_abi_var()
{
echo "${1##*:}"
}
print_help_and_exit()
{
local prog=$(basename $0)
echo "Usage: $prog [OPTION]..."
echo "Update debian packaging to match current ABIs"
echo ""
echo " --no-vcs do not register file changes (e.g., moves) with the detected VCS"
echo " --check check for ABI mismatches without updating debian packaging"
echo " exit status = 0: no mismatches, 1: mismatches detected"
echo " use --verbose to get more information about the mismatches"
echo " -v, --verbose enable verbore output"
echo " -h, --help display this help and exit"
exit 0
}
log()
{
if [ "$option_verbose" = "yes" ];
then
echo $@
fi
}
get_vcs()
{
if [ "$option_vcs" = "yes" ];
then
if [ -d .bzr ];
then
echo "bzr"
elif [ -d .git ];
then
echo "git"
else
echo "Failed to detect VCS" >&2
exit 1
fi
fi
}
get_abi_number()
{
local abi_var=$1
grep -hR --include=CMakeLists.txt "set($abi_var [[:digit:]]\+)" src/ | grep -o '[[:digit:]]\+'
}
populate_abi_variables()
{
for p in $packages;
do
local abi_var=$(package_abi_var $p)
if $(eval "[ -n \"\${$abi_var}\" ]");
then
continue;
fi
local abi=$(get_abi_number $abi_var)
if [ -z "$abi" ];
then
echo "Failed to find ABI number for $abi_var" >&2
exit 1
else
log "Detected $abi_var=$abi"
fi
eval "$abi_var=$abi"
done
}
update_control_file()
{
for p in $packages;
do
local pkg=$(package_name $p)
local abi_var=$(package_abi_var $p)
local abi=$(eval "echo \$${abi_var}")
sed -i "s/${pkg}[[:digit:]]\+/${pkg}$abi/" debian/control
done
}
get_current_install_file()
{
local pkg=$1
ls -1 debian/${pkg}*.install | grep -o "${pkg}[[:digit:]]\+.install"
}
move_file()
{
local src=$1
local dst=$2
local vcs=$(get_vcs)
log "Renaming $src => $dst"
case $vcs in
"bzr") bzr mv $1 $2 ;;
"git") git mv $1 $2 ;;
*) mv $1 $2 ;;
esac
}
update_install_files()
{
for p in $packages;
do
local pkg=$(package_name $p)
local abi_var=$(package_abi_var $p)
local abi=$(eval "echo \$${abi_var}")
local current_file="debian/$(get_current_install_file $pkg)"
local new_file="debian/${pkg}${abi}.install"
if [ "$current_file" != "$new_file" ];
then
move_file $current_file $new_file
fi
sed -i "s/.so.[[:digit:]]\+/.so.${abi}/" debian/${pkg}${abi}.install
done
}
report_abi_mismatch()
{
log "ABI mismatch: $1"
has_check_error=yes
}
check_control_file()
{
for p in $packages;
do
local pkg=$(package_name $p)
local abi_var=$(package_abi_var $p)
local abi=$(eval "echo \$${abi_var}")
local result="$(grep -o "${pkg}[[:digit:]]\+" debian/control | sort | uniq | sed -e "/\b${pkg}${abi}\b/ d" | tr '\n' ' ')"
if [ -n "$result" ];
then
report_abi_mismatch "debian/control contains $result, but $pkg ABI is $abi"
fi
done
}
check_install_files()
{
for p in $packages;
do
local pkg=$(package_name $p)
local abi_var=$(package_abi_var $p)
local abi=$(eval "echo \$${abi_var}")
local current_file="debian/$(get_current_install_file $pkg)"
local expected_file="debian/${pkg}${abi}.install"
local expected_suffix=".so.${abi}"
if [ "$current_file" != "$expected_file" ];
then
report_abi_mismatch "$current_file found, but $pkg ABI is $abi"
else
local suffix=$(grep -o ".so.[[:digit:]]\+" $expected_file)
if [ "$suffix" != "$expected_suffix" ];
then
report_abi_mismatch "$current_file contains $suffix, but $pkg ABI is $abi"
fi
fi
done
}
report_unknown_package()
{
echo "Unknown package: $1" >&2
has_unknown_packages=yes
}
check_for_unknown_packages()
{
local control_pkgs="$(grep "Package:" debian/control | cut -d ":" -f 2 | grep "[[:digit:]]$" | tr -d ' [0-9]' | tr '\n' ' ')"
for p in $control_pkgs;
do
local result="$(echo "${packages}" | grep -v "\b${p}:")"
if [ -n "$result" ];
then
report_unknown_package "debian/control contains versioned package ${p} but it is unknown to this script"
fi
done
if [ "$has_unknown_packages" = "yes" ];
then
echo "The package list in this script needs to be updated" >&2
exit 1
fi
}
option_vcs=yes
option_verbose=no
option_check=no
while [ $# -gt 0 ];
do
case "$1" in
--no-vcs) option_vcs=no;;
--check) option_check=yes;;
--verbose|-v) option_verbose=yes;;
--help|-h) print_help_and_exit;;
--) shift; break;;
esac
shift
done
populate_abi_variables
if [ "$option_check" = "yes" ];
then
check_for_unknown_packages
check_control_file
check_install_files
if [ "$has_check_error" = "yes" ];
then
log "Consider running tools/update_package_abis.sh to fix the mismatches."
exit 1
fi
else
check_for_unknown_packages
update_control_file
update_install_files
fi
|