mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-22 00:52:18 +01:00
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
14 lines
205 B
Bash
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
|