aports/community/libinput/libinput.post-upgrade
Jakub Jirutka 25bf9698a1 community/libinput: move debug tools to -tools subpkg, fix depends
The primary reason for moving debugging tools to a subpackage is to
fix dependencies - most of these tools depend on python3.

libinput-analyze: ELF 64-bit LSB pie executable
libinput-analyze-per-slot-delta: Python script
libinput-analyze-recording: Python script
libinput-analyze-touch-down-state: Python script
libinput-debug-events: ELF 64-bit LSB pie executable
libinput-debug-tablet: ELF 64-bit LSB pie executable
libinput-list-devices: ELF 64-bit LSB pie executable
libinput-measure: ELF 64-bit LSB pie executable
libinput-measure-fuzz: Python script
libinput-measure-touch-size: Python script
libinput-measure-touchpad-pressure: Python script
libinput-measure-touchpad-size: Python script
libinput-measure-touchpad-tap: Python script
libinput-quirks: ELF 64-bit LSB pie executable
libinput-record: ELF 64-bit LSB pie executable
libinput-replay: Python script
2021-09-13 01:39:44 +02:00

14 lines
205 B
Bash

#!/bin/sh
ver_old="$2"
if [ "$(apk version -t "$ver_old" "1.18.1-r3")" = '<' ]; then
cat >&2 <<-EOF
*
* Most of the libinput subcommands has been moved into package libinput-tools.
*
EOF
fi
exit 0