Merge remote-tracking branch 'origin/main' into testing

This commit is contained in:
Kyle Gospodnetich 2024-08-13 08:21:12 -07:00
commit ed0f9025fe
10 changed files with 15 additions and 53 deletions

View File

@ -381,8 +381,6 @@ jobs:
registry: ${{ steps.registry_case.outputs.lowercase }}
username: ${{ env.REGISTRY_USER }}
password: ${{ env.REGISTRY_PASSWORD }}
extra-args: |
--compression-format=zstd:chunked
- name: Sign container image
uses: EyeCantCU/cosign-action/sign@v0.3.0

View File

@ -2,9 +2,9 @@ diff --git a/src/main.conf b/src/main.conf
index 5b2dc83..a24fb0b 100644
--- a/src/main.conf
+++ b/src/main.conf
@@ -142,7 +142,7 @@ FastConnectable = true
@@ -141,7 +141,7 @@
# a6695ace-ee7f-4fb9-881a-5fac66c629af (BlueZ Experimental Offload Codecs)
# 6fbaf188-05e0-496a-9885-d6ddfdb4e03e (BlueZ Experimental ISO socket)
# 69518c4c-b69f-4679-8bc1-c021b47b5733 (BlueZ Experimental Poll Errqueue)
# Defaults to false.
-#KernelExperimental = false
+KernelExperimental = 15c0a148-c273-11ea-b3de-0242ac130004

View File

@ -5,7 +5,7 @@
%endif
Name: bluez
Version: 5.76
Version: 5.77
Release: 1%{?dist}.bazzite.{{{ git_dir_version }}}
Summary: Bluetooth utilities
License: GPL-2.0-or-later
@ -196,14 +196,12 @@ install -d -m0755 $RPM_BUILD_ROOT/%{_localstatedir}/lib/bluetooth/mesh
mkdir -p $RPM_BUILD_ROOT/%{_libdir}/bluetooth/
#copy bluetooth config file and setup auto enable
#copy bluetooth config files
install -D -p -m0644 src/main.conf ${RPM_BUILD_ROOT}/etc/bluetooth/main.conf
install -D -p -m0644 mesh/mesh-main.conf ${RPM_BUILD_ROOT}/etc/bluetooth/mesh-main.conf
install -D -p -m0644 profiles/input/input.conf ${RPM_BUILD_ROOT}/etc/bluetooth/input.conf
install -D -p -m0644 profiles/network/network.conf ${RPM_BUILD_ROOT}/etc/bluetooth/network.conf
sed -i 's/#\[Policy\]$/\[Policy\]/; s/#AutoEnable=false/AutoEnable=true/' ${RPM_BUILD_ROOT}/%{_sysconfdir}/bluetooth/main.conf
# Install the HCI emulator, useful for testing
install emulator/btvirt ${RPM_BUILD_ROOT}/%{_libexecdir}/bluetooth/
@ -288,6 +286,8 @@ install emulator/btvirt ${RPM_BUILD_ROOT}/%{_libexecdir}/bluetooth/
%{_mandir}/man1/hcitool.1.*
%{_mandir}/man1/rfcomm.1.*
%{_mandir}/man1/sdptool.1.*
%{_mandir}/man7/l2cap.7.*
%{_mandir}/man7/rfcomm.7.*
%endif
%files libs
@ -337,6 +337,12 @@ install emulator/btvirt ${RPM_BUILD_ROOT}/%{_libexecdir}/bluetooth/
%{_userunitdir}/obex.service
%changelog
* Tue Jul 09 2024 Peter Robinson <pbrobinson@fedoraproject.org> - 5.77-1
- Update to 5.77
* Thu Jul 04 2024 Bastien Nocera <bnocera@redhat.com> - 5.76-2
- Remove obsolete and ineffective configuration change
* Mon May 20 2024 Peter Robinson <pbrobinson@fedoraproject.org> - 5.76-1
- Update to 5.76

View File

@ -3,7 +3,7 @@
%global _default_patch_fuzz 2
%global build_timestamp %(date +"%Y%m%d")
%global toolchain clang
%global gamescope_tag 3.14.28
%global gamescope_tag 3.14.29
Name: gamescope
Version: 100.%{gamescope_tag}

View File

@ -0,0 +1 @@
alias open="xdg-open &>/dev/null"

View File

@ -1,20 +0,0 @@
[Unit]
Description=Workaround waydroid not having the correct label
ConditionPathExists=/usr/lib/waydroid
After=local-fs.target
[Service]
Type=oneshot
# Copy if it doesn't exist
ExecStartPre=/usr/bin/bash -c "[ -d /usr/local/lib/.waydroid ] || /usr/bin/cp -r /usr/lib/waydroid /usr/local/lib/.waydroid"
# This is faster than using .mount unit. Also allows for the previous line/cleanup
ExecStartPre=/usr/bin/mount --bind /usr/local/lib/.waydroid /usr/lib/waydroid
# Fix SELinux label
ExecStart=/usr/sbin/restorecon -R /usr/lib/waydroid
# Clean-up after ourselves
ExecStop=/usr/bin/umount /usr/lib/waydroid
ExecStop=/usr/bin/rm -r /usr/local/lib/.waydroid
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target

View File

@ -1 +0,0 @@
d /var/lib/setroubleshoot 0755 setroubleshoot setroubleshoot - -

View File

@ -1 +0,0 @@
C /usr/local/lib/.waydroid - - - - /usr/lib/waydroid

View File

@ -1,22 +1,5 @@
# vim: set ft=make :
# Restore the default Terminal
_restore-original-terminal:
#!/usr/bin/bash
IMAGE_INFO="/usr/share/ublue-os/image-info.json"
BASE_IMAGE_NAME=$(jq -r '."base-image-name"' < $IMAGE_INFO)
mkdir -p $HOME/.local/share/applications
if [[ ${BASE_IMAGE_NAME} == 'silverblue' ]]; then
rm -f $HOME/.local/share/applications/org.gnome.Terminal.desktop
cp /usr/share/applications/org.gnome.Terminal.desktop $HOME/.local/share/applications/org.gnome.Terminal.desktop
sed -i '/NoDisplay=true/d' $HOME/.local/share/applications/org.gnome.Terminal.desktop
else
rm -f $HOME/.local/share/applications/org.kde.konsole.desktop
cp /usr/share/applications/org.kde.konsole.desktop $HOME/.local/share/applications/org.kde.konsole.desktop
sed -i '/NoDisplay=true/d' $HOME/.local/share/applications/org.kde.konsole.desktop
echo "Done. Change your default Terminal in System Settings to complete the swap."
fi
# Install System Flatpaks (Support for Rebasing)
_install-system-flatpaks:
#!/usr/bin/bash
@ -30,10 +13,6 @@ _install-system-flatpaks:
FLATPAK_LIST="$(curl https://raw.githubusercontent.com/ublue-os/bazzite/main/installer/${FLATPAKS} | tr '\n' ' ')"
flatpak --system -y install --or-update ${FLATPAK_LIST}
# Force-enable AMD pstate
_pstate-force-enable:
rpm-ostree kargs --append-if-missing=amd_pstate=active
# Configure grub bootmenu visibility and fix duplicate entries
configure-grub ACTION="":
#!/usr/bin/bash

View File

@ -1,3 +1,3 @@
[org/gnome/shell]
enabled-extensions=['logomenu@aryan_k', 'appindicatorsupport@rgcjonas.gmail.com', 'user-theme@gnome-shell-extensions.gcampax.github.com', 'gsconnect@andyholmes.github.io', 'just-perfection-desktop@just-perfection', 'blur-my-shell@aunetx', 'hotedge@jonathan.jdoda.ca', 'supergfxctl-gex@asus-linux.org']
enabled-extensions=['logomenu@aryan_k', 'appindicatorsupport@rgcjonas.gmail.com', 'user-theme@gnome-shell-extensions.gcampax.github.com', 'gsconnect@andyholmes.github.io', 'just-perfection-desktop@just-perfection', 'blur-my-shell@aunetx', 'hotedge@jonathan.jdoda.ca', 'supergfxctl-gex@asus-linux.org', 'caffeine@patapon.info', 'tilingshell@ferrarodomenico.com']
disabled-extensions=['background-logo@fedorahosted.org']