build: capture build script auto-stash changes from 0.2.5 kernel/relibc/base build

The build-redbear.sh script auto-stashes working tree changes
in nested relibc and base source trees before running the
build. These changes were captured by the failed kernel
build attempt that hit the json-target-spec / kernel rust
toolchain mismatch (fixed in 0.2.5 by creating the local
0.2.5 branch).

Captured changes:
- local/recipes/kde/* : KDE Frameworks 6 source CMakeLists
  whitespace changes from the autostash (preserved)
- local/recipes/qt/qtbase/* : qtypes.h whitespace from the
  autostash (preserved)
- local/sources/kernel/Cargo.lock : dependency lock from
  the kernel relibc rebuild attempt
- local/sources/kernel/src/lib.rs : touched (mtime) by the
  build script's touch + make prefix command

This is a bookkeeping commit — the actual code changes
for the threading plan are on the 4 submodule branches
(kernel, relibc, base, libredox) and will be pushed
separately.

0.2.5 branch was created from 0.2.4 (HEAD cd3950072e) to
continue Phase 0 of the multi-threading plan work in a
clean branch.
This commit is contained in:
2026-07-02 13:41:03 +03:00
parent cd3950072e
commit 7aeb3bb475
2069 changed files with 362305 additions and 6 deletions
@@ -0,0 +1 @@
build
@@ -0,0 +1,16 @@
# SPDX-FileCopyrightText: None
# SPDX-License-Identifier: CC0-1.0
cmake_minimum_required(VERSION 3.20)
project(quick-script)
set(KF6_MIN_VERSION "6.0.0")
find_package(ECM ${KF6_MIN_VERSION} REQUIRED NO_MODULE)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
find_package(KF6 ${KF6_MIN_VERSION} REQUIRED COMPONENTS
Package
)
kpackage_install_package(package quick-script scripts kwin)
@@ -0,0 +1,94 @@
/*
SPDX-FileCopyrightText: 2024 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: MIT
*/
import QtQuick
import QtQuick.Window
import org.kde.kirigami as Kirigami
import org.kde.kwin as KWinComponents
Window {
id: root
readonly property int thumbnailWidth: Kirigami.Units.gridUnit * 10
readonly property int thumbnailHeight: Kirigami.Units.gridUnit * 10
readonly property bool _q_showWithoutActivating: true
color: "transparent"
flags: Qt.BypassWindowManagerHint | Qt.FramelessWindowHint
visible: listModel.count > 0
width: thumbnailWidth
height: Math.min(listModel.count * thumbnailHeight, Screen.height)
x: (Screen.virtualX + Screen.width) - width
y: Screen.virtualY + 0.5 * (Screen.height - height)
ListView {
id: listView
anchors.fill: parent
model: listModel
opacity: 0.5
delegate: KWinComponents.WindowThumbnail {
client: model.window
width: thumbnailWidth
height: thumbnailHeight
TapHandler {
onTapped: KWinComponents.Workspace.activeWindow = client;
}
}
transform: Rotation {
axis {
x: 0
y: 1
z: 0
}
origin {
x: width
y: height / 2
}
angle: -30
}
}
ListModel {
id: listModel
}
function toggle() {
const window = KWinComponents.Workspace.activeWindow;
if (!window) {
return;
}
for (let i = 0; i < listModel.count; ++i) {
if (listModel.get(i)["window"] == window) {
listModel.remove(i);
return;
}
}
listModel.append({"window": window});
}
function remove(window) {
for (let i = 0; i < listModel.count; ++i) {
const item = listModel.get(i);
if (item["window"] == window) {
listModel.remove(i);
}
}
}
KWinComponents.ShortcutHandler {
name: "Toggle Current Thumbnail"
text: "Toggle Current Thumbnail"
sequence: "Meta+Ctrl+T"
onActivated: toggle()
}
Component.onCompleted: {
KWinComponents.Workspace.windowRemoved.connect(remove);
}
}
@@ -0,0 +1,18 @@
{
"KPackageStructure": "KWin/Script",
"KPlugin": {
"Authors": [
{
"Email": "user@example.com",
"Name": "Your Name"
}
],
"Description": "An example QtQuick script",
"EnabledByDefault": false,
"Icon": "preferences-system-windows-script-test",
"Id": "quick-script",
"License": "MIT",
"Name": "Quick Script"
},
"X-Plasma-API": "declarativescript"
}
@@ -0,0 +1,2 @@
SPDX-FileCopyrightText: None
SPDX-License-Identifier: CC0-1.0