diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:28:17 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:28:17 +0000 |
commit | 7a46c07230b8d8108c0e8e80df4522d0ac116538 (patch) | |
tree | d483300dab478b994fe199a5d19d18d74153718a /.gitlab | |
parent | Initial commit. (diff) | |
download | pipewire-7a46c07230b8d8108c0e8e80df4522d0ac116538.tar.xz pipewire-7a46c07230b8d8108c0e8e80df4522d0ac116538.zip |
Adding upstream version 0.3.65.upstream/0.3.65upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.gitlab')
-rwxr-xr-x | .gitlab/ci/check_missing_headers.sh | 28 | ||||
-rw-r--r-- | .gitlab/issue_templates/.gitkeep | 0 | ||||
-rw-r--r-- | .gitlab/issue_templates/bluetooth issue.md | 43 | ||||
-rw-r--r-- | .gitlab/issue_templates/issue.md | 29 |
4 files changed, 100 insertions, 0 deletions
diff --git a/.gitlab/ci/check_missing_headers.sh b/.gitlab/ci/check_missing_headers.sh new file mode 100755 index 0000000..25bcc1f --- /dev/null +++ b/.gitlab/ci/check_missing_headers.sh @@ -0,0 +1,28 @@ +#!/bin/sh + +# This script will tell you if there are headers in the source tree +# that have not been installed in $PREFIX + +LIST="" + +for i in $(find spa/include -name '*.h' | sed s#spa/include/##); +do + [ -f "$PREFIX/include/spa-0.2/$i" ] || LIST="$i $LIST" +done + +for i in $(find src/pipewire -name '*.h' -a -not -name '*private.h' | sed s#src/##); +do + [ -f "$PREFIX/include/pipewire-0.3/$i" ] || LIST="$i $LIST" +done + +for i in $LIST; +do + echo "$i not installed" +done + +if [ "$LIST" != "" ]; +then + exit 1 +fi + +exit 0 diff --git a/.gitlab/issue_templates/.gitkeep b/.gitlab/issue_templates/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/.gitlab/issue_templates/.gitkeep diff --git a/.gitlab/issue_templates/bluetooth issue.md b/.gitlab/issue_templates/bluetooth issue.md new file mode 100644 index 0000000..a1010df --- /dev/null +++ b/.gitlab/issue_templates/bluetooth issue.md @@ -0,0 +1,43 @@ +<!-- If you are filing this issue with a regular release please try master as it might already be fixed. --> + +<!-- If you can, test also with Pulseaudio and list `pulseaudio --version`. --> + +- PipeWire version (`pipewire --version`): +- Distribution and distribution version (`PRETTY_NAME` from `/etc/os-release`): +- Desktop Environment: +- Kernel version (`uname -r`): +- BlueZ version (`bluetoothctl --version`): +- `lsusb`: +``` +# paste the output of "lsusb" here +``` +- Bluetooth devices: + +``` +# paste the output of "bluetoothctl devices" here +``` + +## Description of Problem: + + +## How Reproducible: + + +### Steps to Reproduce: + + + 1. + 2. + 3. + + +### Actual Results: + + +### Expected Results: + + +# Additional Info (as attachments): + + - `pw-dump > pw-dump.log`: + - Bluetooth debug log, see [here](https://gitlab.freedesktop.org/pipewire/pipewire/-/wikis/Troubleshooting#bluetooth): diff --git a/.gitlab/issue_templates/issue.md b/.gitlab/issue_templates/issue.md new file mode 100644 index 0000000..b43446a --- /dev/null +++ b/.gitlab/issue_templates/issue.md @@ -0,0 +1,29 @@ +<!-- If you are filing this issue with a regular release please try master as it might already be fixed. --> + +- PipeWire version (`pipewire --version`): +- Distribution and distribution version (`PRETTY_NAME` from `/etc/os-release`): +- Desktop Environment: +- Kernel version (`uname -r`): + +## Description of Problem: + + +## How Reproducible: + + +### Steps to Reproduce: + + 1. + 2. + 3. + + +### Actual Results: + + +### Expected Results: + + +# Additional Info (as attachments): + + - `pw-dump > pw-dump.log`: |