diff --git a/.gitignore b/.gitignore index d163863..97a686b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -build/ \ No newline at end of file +build/ +uartscope-git/ \ No newline at end of file diff --git a/include/mainwindow.h b/include/mainwindow.h index 6957308..566c2f5 100644 --- a/include/mainwindow.h +++ b/include/mainwindow.h @@ -15,6 +15,7 @@ #include "tableview.h" #include "tagwidget.h" #include "connectdialog.h" +#include class MainWindow : public QMainWindow { @@ -35,6 +36,7 @@ private slots: void onNewLine(const QString &line); void onTagDetected(const QString &tag, const QString &value); void showFormatReference(); + void configureTagFilter(); private: void setupUi(); @@ -64,5 +66,6 @@ private: QAction *m_connectAction = nullptr; QAction *m_disconnectAction = nullptr; - SerialConfig m_lastConfig; + SerialConfig m_lastConfig; + QSet m_suppressedTags; // tags hidden from Raw view }; diff --git a/include/rawview.h b/include/rawview.h index 327a547..9795531 100644 --- a/include/rawview.h +++ b/include/rawview.h @@ -8,13 +8,13 @@ #include #include #include +#include // RawView shows the raw UART output in a QPlainTextEdit with: -// - Configurable maximum line count (default: unlimited / very large) -// - Auto-scroll that pauses when the user scrolls up -// - Horizontal scroll (word wrap off) -// - Incremental text search -// - Clear button +// - Timestamp prefix on every line (hh:mm:ss.zzz) +// - Configurable tag suppression (lines whose tag is in the filter set are hidden) +// - Unlimited history, H+V scrolling, incremental search +// - Copy-to-clipboard and Clear buttons class RawView : public QWidget { Q_OBJECT @@ -23,13 +23,15 @@ public: explicit RawView(QWidget *parent = nullptr); public slots: - void appendLine(const QString &line); + // suppressedTags: set of uppercase tag names whose lines should NOT appear here + void appendLine(const QString &line, const QSet &suppressedTags = {}); void clear(); private slots: void onSearch(const QString &text); void onScrollValueChanged(int value); void onAutoScrollToggled(bool enabled); + void copyToClipboard(); private: void setupUi(); @@ -38,8 +40,11 @@ private: QPlainTextEdit *m_textEdit = nullptr; QLineEdit *m_searchEdit = nullptr; QPushButton *m_clearBtn = nullptr; + QPushButton *m_copyBtn = nullptr; QCheckBox *m_autoScrollCb = nullptr; QLabel *m_lineCountLbl = nullptr; bool m_autoScroll = true; int m_lineCount = 0; + + static const QRegularExpression s_tagRe; }; diff --git a/include/tagpanel.h b/include/tagpanel.h index c809e9f..ccbd421 100644 --- a/include/tagpanel.h +++ b/include/tagpanel.h @@ -1,17 +1,16 @@ #pragma once -#include #include #include #include #include -#include -#include -#include +#include #include +#include -// TagPanel displays the most recent data associated with a single tag (e.g. [WDG]). -// Values are parsed as key=value pairs, or shown as a raw string if no '=' is found. -// Example input line: [WDG] uptime=1234 temp=42.1 load=0.8 +// TagPanel displays the most recent data for a single tag (e.g. [WDG]). +// Key=value pairs are shown in a table that updates in-place. +// A "Copy" button copies the current values to the clipboard. +// No timestamp is shown here – timestamps belong in the Raw view. class TagPanel : public QGroupBox { Q_OBJECT @@ -24,14 +23,16 @@ public: public slots: void update(const QString &value); +private slots: + void copyToClipboard(); + private: void parseKeyValue(const QString &value); void showRaw(const QString &value); void ensureRow(const QString &key); QString m_tag; - QTableWidget *m_table = nullptr; - QLabel *m_rawLabel = nullptr; - QLabel *m_timestampLabel = nullptr; - QStringList m_keys; // ordered list for row lookup + QTableWidget *m_table = nullptr; + QLabel *m_rawLabel = nullptr; + QStringList m_keys; }; diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 8f72d7b..ede276e 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -124,6 +124,13 @@ void MainWindow::setupToolBar() tb->addSeparator(); + // ── Tag filter ──────────────────────────────────────────────────────────── + auto *filterAction = tb->addAction(tr("Tag filter…")); + filterAction->setToolTip(tr("Choose which tags are hidden from the Raw view")); + connect(filterAction, &QAction::triggered, this, &MainWindow::configureTagFilter); + + tb->addSeparator(); + // ── Format reference ────────────────────────────────────────────────────── auto *helpAction = tb->addAction(tr("Format reference")); helpAction->setToolTip(tr("Show UARTScope output format guide (copy for AI)")); @@ -231,7 +238,7 @@ void MainWindow::onError(const QString &message) void MainWindow::onNewLine(const QString &line) { - m_rawView->appendLine(line); + m_rawView->appendLine(line, m_suppressedTags); m_tableView->appendLine(line); } @@ -392,3 +399,48 @@ void uart_status_update(void) { dlg->exec(); dlg->deleteLater(); } + +// ── Tag filter dialog ────────────────────────────────────────────────────── + +void MainWindow::configureTagFilter() +{ + auto *dlg = new QDialog(this); + dlg->setWindowTitle(tr("Tag filter – Raw view")); + dlg->setMinimumWidth(340); + + auto *layout = new QVBoxLayout(dlg); + + auto *infoLabel = new QLabel( + tr("Tags listed here are hidden from the Raw view and only " + "appear in the Tag Monitor panel.
" + "Enter one tag name per line, without brackets (e.g. WDG)."), dlg); + infoLabel->setWordWrap(true); + layout->addWidget(infoLabel); + + auto *edit = new QPlainTextEdit(dlg); + QFont mono("Monospace"); + mono.setStyleHint(QFont::Monospace); + edit->setFont(mono); + // Pre-populate with current filter + QStringList current(m_suppressedTags.values()); + current.sort(); + edit->setPlainText(current.join('\n')); + layout->addWidget(edit, 1); + + auto *btnBox = new QDialogButtonBox( + QDialogButtonBox::Ok | QDialogButtonBox::Cancel, dlg); + connect(btnBox, &QDialogButtonBox::accepted, dlg, &QDialog::accept); + connect(btnBox, &QDialogButtonBox::rejected, dlg, &QDialog::reject); + layout->addWidget(btnBox); + + if (dlg->exec() == QDialog::Accepted) { + m_suppressedTags.clear(); + const QStringList lines = edit->toPlainText().split('\n', Qt::SkipEmptyParts); + for (const QString &line : lines) { + const QString tag = line.trimmed().toUpper(); + if (!tag.isEmpty()) + m_suppressedTags.insert(tag); + } + } + dlg->deleteLater(); +} diff --git a/src/rawview.cpp b/src/rawview.cpp index 95c2966..bdb9996 100644 --- a/src/rawview.cpp +++ b/src/rawview.cpp @@ -5,6 +5,11 @@ #include #include #include +#include +#include + +const QRegularExpression RawView::s_tagRe( + R"(\[([A-Z][A-Z0-9_]*)\])", QRegularExpression::CaseInsensitiveOption); RawView::RawView(QWidget *parent) : QWidget(parent) @@ -15,7 +20,7 @@ RawView::RawView(QWidget *parent) void RawView::setupUi() { - auto *mainLayout = new QVBoxLayout(this); + auto *mainLayout = new QVBoxLayout(this); mainLayout->setContentsMargins(4, 4, 4, 4); mainLayout->setSpacing(4); @@ -23,7 +28,7 @@ void RawView::setupUi() auto *toolbar = new QHBoxLayout(); m_searchEdit = new QLineEdit(this); - m_searchEdit->setPlaceholderText(tr("Search… (Enter)")); + m_searchEdit->setPlaceholderText(tr("Search…")); m_searchEdit->setClearButtonEnabled(true); connect(m_searchEdit, &QLineEdit::textChanged, this, &RawView::onSearch); @@ -31,33 +36,35 @@ void RawView::setupUi() m_autoScrollCb->setChecked(true); connect(m_autoScrollCb, &QCheckBox::toggled, this, &RawView::onAutoScrollToggled); - m_clearBtn = new QPushButton(tr("Clear"), this); - connect(m_clearBtn, &QPushButton::clicked, this, &RawView::clear); - m_lineCountLbl = new QLabel(tr("Lines: 0"), this); m_lineCountLbl->setMinimumWidth(90); + m_copyBtn = new QPushButton(tr("📋 Copy"), this); + m_copyBtn->setToolTip(tr("Copy all raw output to clipboard")); + connect(m_copyBtn, &QPushButton::clicked, this, &RawView::copyToClipboard); + + m_clearBtn = new QPushButton(tr("Clear"), this); + connect(m_clearBtn, &QPushButton::clicked, this, &RawView::clear); + toolbar->addWidget(new QLabel(tr("Search:"), this)); toolbar->addWidget(m_searchEdit, 1); toolbar->addWidget(m_autoScrollCb); toolbar->addWidget(m_lineCountLbl); + toolbar->addWidget(m_copyBtn); toolbar->addWidget(m_clearBtn); mainLayout->addLayout(toolbar); - // ── Text area ──────────────────────────────────────────────────────────── + // ── Text area ───────────────────────────────────────────────────────────── m_textEdit = new QPlainTextEdit(this); m_textEdit->setReadOnly(true); - m_textEdit->setLineWrapMode(QPlainTextEdit::NoWrap); // horizontal scroll - // Practically unlimited history (Qt uses a block count limit internally) - m_textEdit->setMaximumBlockCount(0); // 0 = unlimited + m_textEdit->setLineWrapMode(QPlainTextEdit::NoWrap); + m_textEdit->setMaximumBlockCount(0); // unlimited - // Monospaced font for alignment QFont monoFont("Monospace"); monoFont.setStyleHint(QFont::Monospace); monoFont.setPointSize(10); m_textEdit->setFont(monoFont); - // Don't let the text edit swallow horizontal scroll events from the viewport m_textEdit->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOn); m_textEdit->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn); @@ -69,31 +76,48 @@ void RawView::setupUi() void RawView::applyColorScheme() { - // Dark terminal style QPalette p = m_textEdit->palette(); - p.setColor(QPalette::Base, QColor(0x1e, 0x1e, 0x1e)); - p.setColor(QPalette::Text, QColor(0xd4, 0xd4, 0xd4)); + p.setColor(QPalette::Base, QColor(0x1e, 0x1e, 0x1e)); + p.setColor(QPalette::Text, QColor(0xd4, 0xd4, 0xd4)); m_textEdit->setPalette(p); } -void RawView::appendLine(const QString &line) +void RawView::appendLine(const QString &line, const QSet &suppressedTags) { + // Check whether this line belongs to a suppressed tag + if (!suppressedTags.isEmpty()) { + const auto match = s_tagRe.match(line); + if (match.hasMatch()) { + if (suppressedTags.contains(match.captured(1).toUpper())) + return; // silently drop – it goes to the Tag Monitor only + } + } + ++m_lineCount; m_lineCountLbl->setText(tr("Lines: %1").arg(m_lineCount)); - // Highlight lines that contain a tag like [WDG] - static const QRegularExpression tagRe(R"(\[[A-Z][A-Z0-9_]*\])", - QRegularExpression::CaseInsensitiveOption); - if (tagRe.match(line).hasMatch()) { - // Append as HTML so we can colour it differently - QTextCursor cursor(m_textEdit->document()); - cursor.movePosition(QTextCursor::End); - QTextCharFormat fmt; - fmt.setForeground(QColor(0x56, 0xb6, 0xc2)); // cyan-ish - cursor.insertText(line + '\n', fmt); - } else { - m_textEdit->appendPlainText(line); - } + // Prepend timestamp + const QString ts = QDateTime::currentDateTime().toString("hh:mm:ss.zzz"); + const QString displayLine = QStringLiteral("[%1] %2").arg(ts, line); + + // Colour tag lines cyan, everything else default + const bool hasTag = s_tagRe.match(line).hasMatch(); + + QTextCursor cursor(m_textEdit->document()); + cursor.movePosition(QTextCursor::End); + + QTextCharFormat fmt; + if (hasTag) + fmt.setForeground(QColor(0x56, 0xb6, 0xc2)); // cyan + else + fmt.setForeground(QColor(0xd4, 0xd4, 0xd4)); // default + + // Dim the timestamp portion + QTextCharFormat tsFmt; + tsFmt.setForeground(QColor(0x60, 0x60, 0x60)); + + cursor.insertText(QStringLiteral("[%1] ").arg(ts), tsFmt); + cursor.insertText(line + '\n', fmt); if (m_autoScroll) m_textEdit->verticalScrollBar()->setValue( @@ -107,9 +131,13 @@ void RawView::clear() m_lineCountLbl->setText(tr("Lines: 0")); } +void RawView::copyToClipboard() +{ + QApplication::clipboard()->setText(m_textEdit->toPlainText()); +} + void RawView::onSearch(const QString &text) { - // Simple incremental search – highlight first match QTextDocument *doc = m_textEdit->document(); QTextCursor cursor = doc->find(text); if (!cursor.isNull()) { @@ -124,9 +152,7 @@ void RawView::onSearch(const QString &text) void RawView::onScrollValueChanged(int value) { - const int max = m_textEdit->verticalScrollBar()->maximum(); - // If user scrolled away from bottom, disable auto-scroll - if (value < max - 5) { + if (value < m_textEdit->verticalScrollBar()->maximum() - 5) { m_autoScroll = false; m_autoScrollCb->setChecked(false); } diff --git a/src/tagpanel.cpp b/src/tagpanel.cpp index 9145bb6..72bc747 100644 --- a/src/tagpanel.cpp +++ b/src/tagpanel.cpp @@ -1,21 +1,18 @@ #include "tagpanel.h" #include #include +#include +#include TagPanel::TagPanel(const QString &tag, QWidget *parent) : QGroupBox(QStringLiteral("[%1]").arg(tag), parent) , m_tag(tag) { auto *layout = new QVBoxLayout(this); - layout->setContentsMargins(6, 12, 6, 6); + layout->setContentsMargins(6, 14, 6, 6); layout->setSpacing(4); - // Timestamp line - m_timestampLabel = new QLabel(tr("No data yet"), this); - m_timestampLabel->setStyleSheet("color: gray; font-size: 10px;"); - layout->addWidget(m_timestampLabel); - - // Table for key=value pairs + // ── Table for key=value pairs ───────────────────────────────────────────── m_table = new QTableWidget(0, 2, this); m_table->setHorizontalHeaderLabels({tr("Key"), tr("Value")}); m_table->horizontalHeader()->setStretchLastSection(true); @@ -26,23 +23,28 @@ TagPanel::TagPanel(const QString &tag, QWidget *parent) m_table->verticalHeader()->setDefaultSectionSize(22); layout->addWidget(m_table); - // Fallback label for non-kv data + // ── Fallback label for non-kv data ──────────────────────────────────────── m_rawLabel = new QLabel(this); m_rawLabel->setWordWrap(true); m_rawLabel->setStyleSheet("font-family: monospace;"); m_rawLabel->hide(); layout->addWidget(m_rawLabel); + + // ── Copy button ─────────────────────────────────────────────────────────── + auto *btnRow = new QHBoxLayout(); + btnRow->addStretch(); + auto *copyBtn = new QPushButton(tr("📋 Copy"), this); + copyBtn->setToolTip(tr("Copy current tag values to clipboard")); + copyBtn->setMaximumWidth(90); + connect(copyBtn, &QPushButton::clicked, this, &TagPanel::copyToClipboard); + btnRow->addWidget(copyBtn); + layout->addLayout(btnRow); } void TagPanel::update(const QString &value) { - m_timestampLabel->setText( - QDateTime::currentDateTime().toString("hh:mm:ss.zzz")); - - // Detect key=value format: word=anything (space separated) static const QRegularExpression kvRe(R"((\w+)=(\S+))"); - auto it = kvRe.globalMatch(value); - if (it.hasNext()) { + if (kvRe.match(value).hasMatch()) { parseKeyValue(value); m_rawLabel->hide(); m_table->show(); @@ -59,13 +61,10 @@ void TagPanel::parseKeyValue(const QString &value) auto it = kvRe.globalMatch(value); while (it.hasNext()) { const auto match = it.next(); - const QString key = match.captured(1); - const QString val = match.captured(2); - ensureRow(key); - const int row = m_keys.indexOf(key); - m_table->item(row, 1)->setText(val); - // Flash highlight - m_table->item(row, 1)->setBackground(QColor(0x2d, 0x5a, 0x2d)); + ensureRow(match.captured(1)); + const int row = m_keys.indexOf(match.captured(1)); + m_table->item(row, 1)->setText(match.captured(2)); + m_table->item(row, 1)->setBackground(QColor(0x2d, 0x5a, 0x2d)); // flash green } } @@ -84,3 +83,21 @@ void TagPanel::ensureRow(const QString &key) m_table->setItem(row, 0, new QTableWidgetItem(key)); m_table->setItem(row, 1, new QTableWidgetItem(QString())); } + +void TagPanel::copyToClipboard() +{ + QStringList lines; + lines << QStringLiteral("[%1]").arg(m_tag); + + if (m_table->isVisible()) { + for (int r = 0; r < m_table->rowCount(); ++r) { + const QString key = m_table->item(r, 0)->text(); + const QString val = m_table->item(r, 1)->text(); + lines << QStringLiteral(" %1 = %2").arg(key, val); + } + } else { + lines << QStringLiteral(" %1").arg(m_rawLabel->text()); + } + + QApplication::clipboard()->setText(lines.join('\n')); +} diff --git a/uartscope-git/PKGBUILD b/uartscope-git/PKGBUILD index ee93904..7b21008 100644 --- a/uartscope-git/PKGBUILD +++ b/uartscope-git/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: diabolus pkgname=uartscope -pkgver=1.0.0 +pkgver=1.0.0.r0.gcc102c9 pkgrel=1 pkgdesc="Qt6-based UART serial monitor with tag monitoring, table view and auto-reconnect" arch=('x86_64' 'aarch64') diff --git a/uartscope-git/pkg/uartscope/.BUILDINFO b/uartscope-git/pkg/uartscope/.BUILDINFO new file mode 100644 index 0000000..6da4f23 --- /dev/null +++ b/uartscope-git/pkg/uartscope/.BUILDINFO @@ -0,0 +1,3019 @@ +format = 2 +pkgname = uartscope +pkgbase = uartscope +pkgver = 1.0.0.r0.gcc102c9-1 +pkgarch = x86_64 +pkgbuild_sha256sum = b55d7f4f6a11dd33fc6e311f94ea98ca2ad601fa044e110b56af77a00ec7cdbc +packager = Unknown Packager +builddate = 1780954815 +builddir = /home/diabolus/Arbeit/Projekt-Hirnfrei/uartscope/uartscope-git +startdir = /home/diabolus/Arbeit/Projekt-Hirnfrei/uartscope/uartscope-git +buildtool = makepkg +buildtoolver = 7.1.0 +buildenv = !distcc +buildenv = color +buildenv = !ccache +buildenv = check +buildenv = !sign +options = strip +options = docs +options = !libtool +options = !staticlibs +options = emptydirs +options = zipman +options = purge +options = !debug +options = lto +installed = 7zip-26.01-1-x86_64 +installed = a52dec-0.8.0-3-x86_64 +installed = aalib-1.4rc5-19-x86_64 +installed = aarch64-linux-gnu-binutils-2.46-2-x86_64 +installed = aarch64-linux-gnu-gcc-15.2.0-1-x86_64 +installed = aarch64-linux-gnu-gdb-17.1-1-x86_64 +installed = aarch64-linux-gnu-glibc-2.43-1-any +installed = aarch64-linux-gnu-linux-api-headers-6.19-3-any +installed = aarch64-none-elf-gcc-bin-15.2.rel1-1-x86_64 +installed = abseil-cpp-20260107.1-1-x86_64 +installed = accounts-qml-module-0.7-8-x86_64 +installed = accountsservice-26.13.3-1-x86_64 +installed = acl-2.3.2-2-x86_64 +installed = acpid-2.0.34-2-x86_64 +installed = ada-3.4.4-1-x86_64 +installed = adobe-source-code-pro-fonts-2.042u+1.062i+1.026vf-2-any +installed = adwaita-cursors-50.0-1-any +installed = adwaita-fonts-50.0-1-any +installed = adwaita-icon-theme-50.0-1-any +installed = adwaita-icon-theme-legacy-46.2-3-any +installed = akonadi-26.04.2-1-x86_64 +installed = akonadi-calendar-26.04.2-1-x86_64 +installed = akonadi-contacts-26.04.2-1-x86_64 +installed = akonadi-import-wizard-26.04.2-1-x86_64 +installed = akonadi-mime-26.04.2-1-x86_64 +installed = akonadi-notes-24.08.3-2-x86_64 +installed = akonadi-notes-debug-24.08.3-2-x86_64 +installed = akonadi-search-26.04.2-1-x86_64 +installed = alembic-1.8.11-2-x86_64 +installed = alsa-card-profiles-1:1.6.6-1-x86_64 +installed = alsa-lib-1.2.16-1-x86_64 +installed = alsa-plugins-1:1.2.12-5-x86_64 +installed = alsa-topology-conf-1.2.5.1-4-any +installed = alsa-ucm-conf-1.2.16-2-any +installed = alsa-utils-1.2.16-1-x86_64 +installed = amitools-0.8.1-1-any +installed = android-armv7a-eabi-giflib-5.2.2-1-any +installed = android-armv7a-eabi-libjpeg-turbo-3.1.3-1-any +installed = android-armv7a-eabi-libpng-1.6.54-1-any +installed = android-armv7a-eabi-openssl-3.6.2-1-any +installed = android-armv7a-eabi-zlib-1.3.1-2-any +installed = android-cmake-2-1-any +installed = android-configure-2-3-any +installed = android-environment-7-5-any +installed = android-ndk-r29-3-x86_64 +installed = android-pkg-config-3-1-any +installed = android-sdk-26.1.1-2-x86_64 +installed = android-sdk-build-tools-r37.0.0-1-x86_64 +installed = android-sdk-platform-tools-37.0.0-1-x86_64 +installed = android-sdk-platform-tools-debug-36.0.0-1-x86_64 +installed = android-tools-35.0.2-26-x86_64 +installed = android-udev-20260423-1-any +installed = ant-1.10.17-1-any +installed = anydesk-bin-8.0.2-1-x86_64 +installed = aom-3.14.1-1-x86_64 +installed = apache-2.4.67-1-x86_64 +installed = apache-orc-2.3.0-4-x86_64 +installed = apparmor-4.1.7-1-x86_64 +installed = appstream-1.1.2-1-x86_64 +installed = appstream-glib-0.8.3-4-x86_64 +installed = appstream-qt-1.1.2-1-x86_64 +installed = apr-1.7.6-1-x86_64 +installed = apr-util-1.6.3-2-x86_64 +installed = arandr-0.1.11-6-any +installed = arch-install-scripts-31-1-any +installed = archlinux-appstream-data-20260606-1-any +installed = archlinux-keyring-20260420-1-any +installed = arduino-1:1.8.19-4-x86_64 +installed = arduino-avr-core-1.8.8-1-any +installed = arduino-builder-1.6.1-3-x86_64 +installed = arduino-ctags-5.8_arduino11-5-x86_64 +installed = argon2-20190702-6-x86_64 +installed = aria2-1.37.0-3-x86_64 +installed = aribb24-1.0.3-4-x86_64 +installed = arm-linux-gnueabihf-binutils-2.45+r8+g09be88bfb653-1-x86_64 +installed = arm-linux-gnueabihf-linux-api-headers-6.15.1-1-any +installed = arm-none-eabi-binutils-2.43-2-x86_64 +installed = arm-none-eabi-gcc-14.2.0-2-x86_64 +installed = arm-none-eabi-newlib-4.5.0.20241231-2-any +installed = arrow-24.0.0-2-x86_64 +installed = asar-4.2.0-1-any +installed = asciidoc-10.2.1-3-any +installed = asio-1.38.0-1-any +installed = aspell-0.60.8.2-2-x86_64 +installed = assimp-6.0.5-1-x86_64 +installed = at-spi2-core-2.60.4-1-x86_64 +installed = atkmm-2.28.5-2-x86_64 +installed = atril-1.28.3-1-x86_64 +installed = attica-6.26.0-1-x86_64 +installed = attr-2.5.2-2-x86_64 +installed = audacity-1:3.7.7-2-x86_64 +installed = audiofile-0.3.6-12-x86_64 +installed = audit-4.1.4-2-x86_64 +installed = aurorae-6.6.5-1-x86_64 +installed = autoconf-2.73-1-any +installed = autoconf-archive-1:2024.10.16-4-any +installed = automake-1.18.1-1-any +installed = autossh-1.4g-4-x86_64 +installed = avahi-1:0.9rc4-1-x86_64 +installed = avisynthplus-3.7.5-3-x86_64 +installed = avr-binutils-2.43-2-x86_64 +installed = avr-gcc-15.1.0-2-x86_64 +installed = avr-libc-2.3.2-1-any +installed = avrdude-1:8.1-1-x86_64 +installed = awesome-4.3-6-x86_64 +installed = aws-c-auth-0.10.1-1-x86_64 +installed = aws-c-cal-0.9.13-1-x86_64 +installed = aws-c-common-0.12.6-1-x86_64 +installed = aws-c-compression-0.3.2-1-x86_64 +installed = aws-c-event-stream-0.7.0-1-x86_64 +installed = aws-c-http-0.10.14-1-x86_64 +installed = aws-c-io-0.26.3-1-x86_64 +installed = aws-c-mqtt-0.15.2-1-x86_64 +installed = aws-c-s3-0.12.2-1-x86_64 +installed = aws-c-sdkutils-0.2.4-1-x86_64 +installed = aws-checksums-0.2.10-1-x86_64 +installed = aws-crt-cpp-0.38.5-1-x86_64 +installed = aws-sdk-cpp-core-1.11.792-1-x86_64 +installed = aws-sdk-cpp-iam-1.11.792-1-x86_64 +installed = aws-sdk-cpp-s3-1.11.792-1-x86_64 +installed = ayatana-ido-0.10.4-1-x86_64 +installed = babl-0.1.126-1-x86_64 +installed = baloo-6.26.0-1-x86_64 +installed = baloo-widgets-26.04.2-1-x86_64 +installed = baobab-50.0-1-x86_64 +installed = base-3-3-any +installed = base-devel-1-2-any +installed = bash-5.3.12-1-x86_64 +installed = bash-completion-2.17.0-3-any +installed = bc-1.08.2-1-x86_64 +installed = benchmark-1.9.5-2-x86_64 +installed = bigsh0t-2.7-2-x86_64 +installed = binutils-2.46+r70+g155188ea10a7-1-x86_64 +installed = bison-3.8.2-8-x86_64 +installed = blas-3.12.1-2-x86_64 +installed = blender-17:5.1.2-1-x86_64 +installed = blosc-1.21.6-2-x86_64 +installed = bluefish-2.2.19-2-x86_64 +installed = blueman-2.4.6-2-x86_64 +installed = blueprint-compiler-0.20.4-1-any +installed = bluez-5.86-6-x86_64 +installed = bluez-libs-5.86-6-x86_64 +installed = bluez-obex-5.86-6-x86_64 +installed = bluez-utils-5.86-6-x86_64 +installed = bogofilter-db-1.2.5-12-x86_64 +installed = bolt-0.9.11-1-x86_64 +installed = boost-1.91.0-1-x86_64 +installed = boost-libs-1.91.0-1-x86_64 +installed = brasero-3.12.3+r44+gdea4990b-1-x86_64 +installed = brave-bin-1:1.91.168-1-x86_64 +installed = breeze-6.6.5-1-x86_64 +installed = breeze-cursors-6.6.5-1-x86_64 +installed = breeze-icons-6.26.0-1-x86_64 +installed = breezy-3.3.21-2-x86_64 +installed = bridge-utils-1.7.1-5-x86_64 +installed = brltty-6.9.1-1-x86_64 +installed = brother-ql570-1.0.1r0-1-x86_64 +installed = brotli-1.2.0-1-x86_64 +installed = btop-1.4.7-1-x86_64 +installed = btrfs-progs-7.0-1-x86_64 +installed = bubblewrap-0.11.2-1-x86_64 +installed = bzip2-1.0.8-6-x86_64 +installed = c-ares-1.34.6-1-x86_64 +installed = ca-certificates-20240618-1-any +installed = ca-certificates-mozilla-3.124-1-x86_64 +installed = ca-certificates-utils-20240618-1-any +installed = cabextract-1.11-2-x86_64 +installed = cairo-1.18.4-1-x86_64 +installed = cairomm-1.14.6-1-x86_64 +installed = cairomm-1.16-1.18.1-1-x86_64 +installed = caja-1.28.0-4-x86_64 +installed = calendarsupport-26.04.2-1-x86_64 +installed = cantarell-fonts-1:0.311-1-any +installed = capstone-5.0.9-1-x86_64 +installed = cargo-c-0.10.23-1-x86_64 +installed = cauchy-0.9.0-5-x86_64 +installed = cblas-3.12.1-2-x86_64 +installed = ccache-4.13.6-1-x86_64 +installed = cccl-3.3.4-1-any +installed = cdparanoia-10.2-9-x86_64 +installed = cdrdao-1.2.6-3-x86_64 +installed = cdrtools-3.02a09-6-x86_64 +installed = cef-minimal-obs-bin-2:127.3.4+ga0ca18e+chromium_127.0.6533.100_6-1-x86_64 +installed = ceres-solver-2.2.0-5-x86_64 +installed = cfitsio-1:4.6.4-1-x86_64 +installed = chmlib-0.40-10-x86_64 +installed = chromaprint-1.6.0-3-x86_64 +installed = chromium-149.0.7827.53-1-x86_64 +installed = chrpath-0.18-1-x86_64 +installed = cifs-utils-7.5-1-x86_64 +installed = cinnamon-6.6.8-1-x86_64 +installed = cinnamon-control-center-6.6.0-3-x86_64 +installed = cinnamon-desktop-6.6.2-2-x86_64 +installed = cinnamon-menus-6.6.0-1-x86_64 +installed = cinnamon-screensaver-6.6.1-3-x86_64 +installed = cinnamon-session-6.6.3-2-x86_64 +installed = cinnamon-settings-daemon-6.6.4-1-x86_64 +installed = cinnamon-translations-6.6.2-1-any +installed = cjs-128.1-2-x86_64 +installed = cjson-1.7.19-1-x86_64 +installed = clang-22.1.6-1-x86_64 +installed = clang21-21.1.8-1-x86_64 +installed = clazy-1.17.1-1-x86_64 +installed = clucene-2.3.3.4-17-x86_64 +installed = clutter-1.26.4-4-x86_64 +installed = cmake-4.3.3-1-x86_64 +installed = cmark-0.31.2-1-x86_64 +installed = cogl-1.22.8-5-x86_64 +installed = colm-0.14.7-5-x86_64 +installed = colord-1.4.8-1-x86_64 +installed = colord-gtk-common-0.3.1-1-x86_64 +installed = colord-gtk4-0.3.1-1-x86_64 +installed = colord-sane-1.4.8-1-x86_64 +installed = compiler-rt-22.1.6-1-x86_64 +installed = compiler-rt20-20.1.8-1-x86_64 +installed = compiler-rt21-21.1.8-1-x86_64 +installed = composefs-1.0.8-1-x86_64 +installed = composer-2.10.1-1-any +installed = confuse-3.3-5-x86_64 +installed = containerd-2.3.1-1-x86_64 +installed = convertlit-1.8-13-x86_64 +installed = coqui-tts-0.27.5-1-any +installed = coreutils-9.11-1-x86_64 +installed = cpio-2.15-3-x86_64 +installed = cppdap-1.58.0-3-x86_64 +installed = cracklib-2.10.3-1-x86_64 +installed = cryptsetup-2.8.6-1-x86_64 +installed = ctpl-0.3.5-3-x86_64 +installed = cuda-13.3.0-1-x86_64 +installed = cups-2:2.4.19-1-x86_64 +installed = cups-filters-2.0.1-2-x86_64 +installed = cups-pk-helper-0.2.7-2-x86_64 +installed = cura-bin-5.13.0-1-x86_64 +installed = curl-8.20.0-7-x86_64 +installed = curlftpfs-0.9.2-10-x86_64 +installed = curseforge-1.306.1_34456-1-x86_64 +installed = cutecom-0.60.0_RC1-2-x86_64 +installed = cutecom-debug-0.60.0_RC1-1-x86_64 +installed = cython-3.2.5-1-x86_64 +installed = dav1d-1.5.3-1-x86_64 +installed = db-6.2.32-4-x86_64 +installed = db5.3-5.3.28-7-x86_64 +installed = dbus-1.16.2-1-x86_64 +installed = dbus-broker-37-3-x86_64 +installed = dbus-broker-units-37-3-x86_64 +installed = dbus-glib-0.114-1-x86_64 +installed = dconf-0.49.0-1-x86_64 +installed = dconf-editor-49.0-1-x86_64 +installed = ddcutil-2.2.7-1-x86_64 +installed = debhelper-13.31-1-any +installed = debtap-3.6.3-1-any +installed = debugedit-5.3-1-x86_64 +installed = debuginfod-0.195-1-x86_64 +installed = default-cursors-3-1-any +installed = dejagnu-1.6.3-17-any +installed = deno-2.8.2-1-x86_64 +installed = desktop-file-utils-0.28-1-x86_64 +installed = device-mapper-2.03.41-1-x86_64 +installed = devilspie-0.23-6-x86_64 +installed = dhcpcd-10.3.2-1-x86_64 +installed = dialog-1:1.3_20260107-1-x86_64 +installed = diffutils-3.12-2-x86_64 +installed = ding-libs-0.7.0-1-x86_64 +installed = discord-1:1.0.141-1-x86_64 +installed = discount-3.0.1.2-1-x86_64 +installed = djvulibre-3.5.30-1-x86_64 +installed = dkms-3.4.1-1-any +installed = dleyna-0.8.3-5-x86_64 +installed = dmidecode-3.7-1-x86_64 +installed = dnsmasq-2.93-1-x86_64 +installed = docbook-xml-4.5-11-any +installed = docbook-xsl-1.79.2-9-any +installed = docker-1:29.5.2-1-x86_64 +installed = docker-buildx-0.34.1-1-x86_64 +installed = docker-compose-5.1.4-1-x86_64 +installed = dolphin-26.04.2-1-x86_64 +installed = dos2unix-7.5.6-1-x86_64 +installed = dosbox-0.74.3-4-x86_64 +installed = dosfstools-4.2-5-x86_64 +installed = dotconf-1.4.1-1-x86_64 +installed = dotnet-host-10.0.8.sdk108-1-x86_64 +installed = dotnet-runtime-6.0-6.0.36.sdk136-2-x86_64 +installed = double-conversion-3.4.0-1-x86_64 +installed = doxygen-1.16.1-3-x86_64 +installed = dpkg-1.23.7-1-x86_64 +installed = draco-1.5.7-2-x86_64 +installed = droidcam-obs-plugin-2.4.3-1-x86_64 +installed = dtc-1:1.7.2-1-x86_64 +installed = duktape-2.7.0-7-x86_64 +installed = dvd+rw-tools-7.1-13-x86_64 +installed = dvgrab-3.5.2-1-x86_64 +installed = dvisvgm-3.6-2-x86_64 +installed = dvr-scan-1.8.2-1-any +installed = e2fsprogs-1.47.4-1-x86_64 +installed = easyeffects-8.2.4-1-x86_64 +installed = ebook-tools-0.2.2-9-x86_64 +installed = edex-ui-bin-2.2.8-1-x86_64 +installed = editorconfig-core-c-0.12.11-1-x86_64 +installed = edk2-aarch64-202605-1-any +installed = edk2-ovmf-202605-1-any +installed = edk2-riscv64-202605-1-any +installed = egl-gbm-1.1.3-1-x86_64 +installed = egl-wayland-4:1.1.21-1-x86_64 +installed = egl-wayland2-1.0.1-1-x86_64 +installed = egl-x11-1.0.5-1-x86_64 +installed = eglexternalplatform-1.2.1-1-any +installed = eigen-5.0.1-2-x86_64 +installed = electron-1:42-1-any +installed = electron42-42.3.0-1-x86_64 +installed = elementary-icon-theme-8.2.0-2-any +installed = elfutils-0.195-1-x86_64 +installed = embree-4.4.1-1-x86_64 +installed = enca-1.22-1-x86_64 +installed = enchant-2.8.15-2-x86_64 +installed = engrampa-1.28.3-1-x86_64 +installed = epiphany-50.4-2-x86_64 +installed = epson-inkjet-printer-escpr-1.8.8-1-x86_64 +installed = espeak-ng-1.52.0-1-x86_64 +installed = eventviews-26.04.2-1-x86_64 +installed = evince-1:48.4-1-x86_64 +installed = evolution-3.60.2-1-x86_64 +installed = evolution-bogofilter-3.60.2-1-x86_64 +installed = evolution-data-server-3.60.2-2-x86_64 +installed = evolution-ews-3.60.2-1-x86_64 +installed = evolution-on-3.24.2-3-x86_64 +installed = evolution-spamassassin-3.60.2-1-x86_64 +installed = ex-vi-compat-2-1-any +installed = exempi-2.6.6-3-x86_64 +installed = exfat-utils-1.4.0-4-x86_64 +installed = exiv2-0.28.8-2-x86_64 +installed = exo-4.20.0-2-x86_64 +installed = expat-2.8.1-1-x86_64 +installed = expect-5.45.4-5-x86_64 +installed = extra-cmake-modules-6.26.0-1-any +installed = eza-0.23.4-3-x86_64 +installed = f3-10.0-1-x86_64 +installed = f3-debug-9.0-1-x86_64 +installed = faac-1.50-1-x86_64 +installed = faad2-2.11.2-1-x86_64 +installed = fakeroot-1.38.1-1-x86_64 +installed = ffcall-2.5-1-x86_64 +installed = ffmpeg-2:8.1.1-2-x86_64 +installed = ffmpeg4.4-4.4.6-5-x86_64 +installed = ffmpegthumbs-26.04.2-1-x86_64 +installed = ffnvcodec-headers-13.0.19.0-1-any +installed = fftw-3.3.11-1-x86_64 +installed = fig2dev-3.2.9-1-x86_64 +installed = file-5.47-3-x86_64 +installed = file-roller-44.6-2-x86_64 +installed = filesystem-2025.10.12-1-any +installed = findutils-4.10.0-3-x86_64 +installed = fio-3.42-1-x86_64 +installed = firefox-151.0.3-1-x86_64 +installed = firestorm-bin-7.2.4.80712-1-x86_64 +installed = flac-1.5.0-1-x86_64 +installed = flameshot-13.3.0-2-x86_64 +installed = flashrom-1.7.0-1-x86_64 +installed = flat-remix-gnome-20250926-1-any +installed = flatpak-1:1.16.6-1-x86_64 +installed = flex-2.6.4-6-x86_64 +installed = fltk-1.4.5-1-x86_64 +installed = fltk1.3-1.3.11-4-x86_64 +installed = fluidsynth-2.5.4-1-x86_64 +installed = fmt-12.1.0-2-x86_64 +installed = fontconfig-2:2.18.1-1-x86_64 +installed = foomatic-db-engine-5:20200131-2-x86_64 +installed = fpc-3.2.2-11-x86_64 +installed = fpc-src-3.2.2-4-any +installed = frameworkintegration-6.26.0-1-x86_64 +installed = freealut-1.1.0-10-x86_64 +installed = freecol-1.2.0-2-any +installed = freeglut-3.8.0-1-x86_64 +installed = freeoffice-1234-1-x86_64 +installed = freerdp-2:3.26.0-1-x86_64 +installed = freetype2-2.14.3-1-x86_64 +installed = frei0r-plugins-3.1.3-1-x86_64 +installed = fribidi-1.0.16-2-x86_64 +installed = fritzing-1.0.7-2-x86_64 +installed = fs-uae-3.2.35-2-x86_64 +installed = fs-uae-launcher-3.2.35-2-any +installed = ftgl-2.4.0-3-x86_64 +installed = ftxui-6.1.9-1-x86_64 +installed = fuse-common-3.18.2-1-x86_64 +installed = fuse2-2.9.9-5-x86_64 +installed = fuse3-3.18.2-1-x86_64 +installed = fwupd-2.1.4-2-x86_64 +installed = fwupd-efi-1.8-2-any +installed = galculator-2.1.4-10-x86_64 +installed = gamemode-1.8.2-2-x86_64 +installed = gamescope-3.16.24-1-x86_64 +installed = garcon-4.20.0-2-x86_64 +installed = gavl-2.0.1-2-x86_64 +installed = gawk-5.4.0-1-x86_64 +installed = gc-8.2.12-1-x86_64 +installed = gcc-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = gcc-ada-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = gcc-d-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = gcc-fortran-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = gcc-libs-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = gcc14-14.3.1+r516+g5998566829ee-1-x86_64 +installed = gcc14-libs-14.3.1+r516+g5998566829ee-1-x86_64 +installed = gcc15-15.2.1+r934+gbcd3e3ff5aa7-1-x86_64 +installed = gcc15-libs-15.2.1+r934+gbcd3e3ff5aa7-1-x86_64 +installed = gconf-3.2.6+11+g07808097-15-x86_64 +installed = gconf-debug-3.2.6+11+g07808097-15-x86_64 +installed = gcr-3.41.2-2-x86_64 +installed = gcr-4-4.4.0.1-1-x86_64 +installed = gd-2.3.3-9-x86_64 +installed = gdb-17.2-1-x86_64 +installed = gdb-common-17.2-1-x86_64 +installed = gdbm-1.26-2-x86_64 +installed = gdk-pixbuf2-2.44.6-2-x86_64 +installed = gdm-50.1-1-x86_64 +installed = geany-2.1-2-x86_64 +installed = geany-plugins-2.1-3-x86_64 +installed = geekbench-6.7.1-1-x86_64 +installed = gef-git-0.0.0.2252.2b7f315-1-any +installed = gegl-0.4.70-2-x86_64 +installed = gendesk-1.0.15-1-x86_64 +installed = geoclue-2.8.1-1-x86_64 +installed = geocode-glib-3.26.4-6-x86_64 +installed = geoip-1.6.12-3-x86_64 +installed = geoip-database-20260204-1-any +installed = gettext-1.0-2-x86_64 +installed = gexiv2-0.16.0-2-x86_64 +installed = gflags-2.2.2-6-x86_64 +installed = gfxstream-0.1.2-2-x86_64 +installed = ghex-50.2-1-x86_64 +installed = ghostscript-10.07.1-1-x86_64 +installed = gi-docgen-2026.1-1-any +installed = giflib-6.1.3-1-x86_64 +installed = gimp-3.2.4-1-x86_64 +installed = git-2.54.0-1-x86_64 +installed = git-lfs-3.7.1-1-x86_64 +installed = gjs-2:1.88.0-1-x86_64 +installed = glabels-3.4.1-13-x86_64 +installed = glew-2.3.1-1-x86_64 +installed = glfw-1:3.4-1-x86_64 +installed = glib-1.2.10-19-x86_64 +installed = glib-debug-1.2.10-18-x86_64 +installed = glib-networking-1:2.80.1-1-x86_64 +installed = glib2-2.88.1-1-x86_64 +installed = glib2-devel-2.88.1-1-x86_64 +installed = glib2-docs-2.88.1-1-x86_64 +installed = glibc-2.43+r22+g8362e8ce10b2-2-x86_64 +installed = glibmm-2.66.8-2-x86_64 +installed = glibmm-2.68-2.88.0-2-x86_64 +installed = glm-1.0.3-1-x86_64 +installed = glslang-1:1.4.350.0-1-x86_64 +installed = glu-9.0.3-3-x86_64 +installed = glusterfs-1:11.2-2-x86_64 +installed = glycin-2.1.1-1-x86_64 +installed = glycin-gtk4-2.1.1-1-x86_64 +installed = gmp-6.3.0-3-x86_64 +installed = gnokii-0.6.31-21-x86_64 +installed = gnokii-debug-0.6.31-21-x86_64 +installed = gnome-app-list-3.0-1-any +installed = gnome-autoar-0.4.5-1-x86_64 +installed = gnome-backgrounds-50.0-1-any +installed = gnome-bluetooth-3.0-47.2-1-x86_64 +installed = gnome-calculator-50.0-1-x86_64 +installed = gnome-characters-50.0-1-x86_64 +installed = gnome-clocks-50.0-2-x86_64 +installed = gnome-color-manager-3.36.2-1-x86_64 +installed = gnome-common-3.18.0-5-any +installed = gnome-control-center-50.2-1-x86_64 +installed = gnome-desktop-1:44.5-1-x86_64 +installed = gnome-desktop-4-1:44.5-1-x86_64 +installed = gnome-desktop-common-1:44.5-1-x86_64 +installed = gnome-disk-utility-46.1-2-x86_64 +installed = gnome-font-viewer-50.0-1-x86_64 +installed = gnome-keybindings-50.2-1-x86_64 +installed = gnome-keyring-1:50.0-1-x86_64 +installed = gnome-logs-50.0-1-x86_64 +installed = gnome-menus-3.38.1-1-x86_64 +installed = gnome-music-1:49.1-2-any +installed = gnome-online-accounts-3.58.1-1-x86_64 +installed = gnome-online-accounts-gtk-3.50.10-1-x86_64 +installed = gnome-remote-desktop-50.1-1-x86_64 +installed = gnome-session-50.1-1-x86_64 +installed = gnome-settings-daemon-50.1-1-x86_64 +installed = gnome-shell-1:50.2-1-x86_64 +installed = gnome-shell-extension-appindicator-1:64-1-any +installed = gnome-shell-extensions-50.2-1-any +installed = gnome-software-50.2-1-x86_64 +installed = gnome-system-monitor-50.0-1-x86_64 +installed = gnome-text-editor-50.1-1-x86_64 +installed = gnome-themes-extra-1:3.28-1-any +installed = gnome-tweaks-49.0-2-any +installed = gnome-user-docs-50.2-1-any +installed = gnome-user-share-48.3-1-x86_64 +installed = gnome-weather-50.0-1-any +installed = gnu-free-fonts-20120503-9-any +installed = gnulib-l10n-20241231-1-any +installed = gnupg-2.4.9-1-x86_64 +installed = gnutls-3.8.13-2-x86_64 +installed = go-2:1.26.4-1-x86_64 +installed = go-tools-4:0.45.0-1-x86_64 +installed = gobject-introspection-1.86.0-2-x86_64 +installed = gobject-introspection-runtime-1.86.0-2-x86_64 +installed = gom-0.5.6-1-x86_64 +installed = google-chrome-149.0.7827.53-1-x86_64 +installed = google-earth-pro-7.3.7.1155-1-x86_64 +installed = google-glog-0.7.1-2-x86_64 +installed = goverlay-1.8.2-1-x86_64 +installed = gparted-1.8.1-2-x86_64 +installed = gperf-3.3-2-x86_64 +installed = gperftools-2.18.1-1-x86_64 +installed = gpgme-2.1.0-1-x86_64 +installed = gpgmepp-2.1.0-1-x86_64 +installed = gpm-1.20.7.r38.ge82d1a6-6-x86_64 +installed = gradle-9.5.1-1-any +installed = grantleetheme-26.04.2-1-x86_64 +installed = graphene-1.10.8-2-x86_64 +installed = graphicsmagick-1.3.47-1-x86_64 +installed = graphite-1:1.3.15-1-x86_64 +installed = graphviz-14.1.5-1-x86_64 +installed = grep-3.12-2-x86_64 +installed = grilo-0.3.19-2-x86_64 +installed = grilo-plugins-1:0.3.18-3-x86_64 +installed = groff-1.24.1-1-x86_64 +installed = grpc-1.80.0-2-x86_64 +installed = grub-2:2.14-1-x86_64 +installed = grub-customizer-5.2.5-2-x86_64 +installed = grub-customizer-debug-5.2.5-2-x86_64 +installed = gsettings-desktop-schemas-50.1-1-any +installed = gsettings-system-schemas-50.1-1-any +installed = gsfonts-20200910-6-any +installed = gsl-2.8-1-x86_64 +installed = gsm-1.0.24-1-x86_64 +installed = gsound-1.0.3-4-x86_64 +installed = gspell-1.14.3-1-x86_64 +installed = gssdp-1.6.5-1-x86_64 +installed = gssproxy-0.9.2-3-x86_64 +installed = gst-devtools-libs-1.28.3-1-x86_64 +installed = gst-editing-services-1.28.3-1-x86_64 +installed = gst-libav-1.28.3-1-x86_64 +installed = gst-plugin-gtk-1.28.3-1-x86_64 +installed = gst-plugins-bad-1.28.3-1-x86_64 +installed = gst-plugins-bad-libs-1.28.3-1-x86_64 +installed = gst-plugins-base-1.28.3-1-x86_64 +installed = gst-plugins-base-libs-1.28.3-1-x86_64 +installed = gst-plugins-good-1.28.3-1-x86_64 +installed = gst-python-1.28.3-1-x86_64 +installed = gstreamer-1.28.3-1-x86_64 +installed = gtest-1.17.0-2-x86_64 +installed = gtk-1.2.10-20-x86_64 +installed = gtk-debug-1.2.10-20-x86_64 +installed = gtk-doc-1.36.1-1-any +installed = gtk-engine-murrine-0.98.2-5-x86_64 +installed = gtk-engines-2.21.0-7-x86_64 +installed = gtk-layer-shell-0.10.1-1-x86_64 +installed = gtk-update-icon-cache-1:4.22.4-1-x86_64 +installed = gtk-vnc-1.5.0-1-x86_64 +installed = gtk2-2.24.33-5-x86_64 +installed = gtk3-1:3.24.52-1-x86_64 +installed = gtk4-1:4.22.4-1-x86_64 +installed = gtkd-3.11.0-4-x86_64 +installed = gtkd-debug-3.11.0-4-x86_64 +installed = gtkglext-1.2.0-20-x86_64 +installed = gtkmm-4.0-4.22.0-2-x86_64 +installed = gtkmm3-3.24.10-2-x86_64 +installed = gtksourceview4-4.8.4-2-x86_64 +installed = gtksourceview5-5.20.0-1-x86_64 +installed = gtkspell3-3.0.10-4-x86_64 +installed = gts-0.7.6.121130-5-x86_64 +installed = guake-3.10.1-1-any +installed = guile-3.0.11-1-x86_64 +installed = gulp-5.0.1-1-any +installed = gumbo-parser-0.13.2-1-x86_64 +installed = gupnp-1:1.6.10-1-x86_64 +installed = gupnp-av-0.14.5-1-x86_64 +installed = gupnp-dlna-0.12.0-5-x86_64 +installed = gupnp-igd-1.6.0-2-x86_64 +installed = guvcview-2.2.2-2-x86_64 +installed = guvcview-common-2.2.2-2-x86_64 +installed = gvfs-1.60.0-2-x86_64 +installed = gvfs-afc-1.60.0-2-x86_64 +installed = gvfs-goa-1.60.0-2-x86_64 +installed = gvfs-gphoto2-1.60.0-2-x86_64 +installed = gvfs-mtp-1.60.0-2-x86_64 +installed = gvfs-nfs-1.60.0-2-x86_64 +installed = gvfs-smb-1.60.0-2-x86_64 +installed = gweather-locations-2026.2-1-x86_64 +installed = gwenview-26.04.2-1-x86_64 +installed = gzip-1.14-2-x86_64 +installed = handbrake-1.11.2-1-x86_64 +installed = hardinfo2-2.2.16-2-x86_64 +installed = hardinfo2-debug-2.2.13-1-x86_64 +installed = harfbuzz-14.2.1-1-x86_64 +installed = harfbuzz-icu-14.2.1-1-x86_64 +installed = haveged-1.9.22-1-x86_64 +installed = hdf5-2.1.1-1-x86_64 +installed = heroic-games-launcher-bin-2.22.0-1-x86_64 +installed = hicolor-icon-theme-0.18-1-any +installed = hidapi-0.15.0-1-x86_64 +installed = highway-1.4.0-1-x86_64 +installed = hiredis-1.3.0-1-x86_64 +installed = hplip-1:3.26.4-1-x86_64 +installed = hspell-1.4-6-x86_64 +installed = htdig-3.2.0b6-11.1-x86_64 +installed = htop-3.5.1-1-x86_64 +installed = http-parser-2.9.4-2-x86_64 +installed = hunspell-1.7.3-1-x86_64 +installed = hwdata-0.408-1-any +installed = hwinfo-25.2-1-x86_64 +installed = hwloc-2.13.0-1-x86_64 +installed = hyphen-2.8.9-1-x86_64 +installed = i2c-tools-4.4-4-x86_64 +installed = iana-etc-20260530-1-any +installed = iat-0.1.7-4-x86_64 +installed = ibus-1.5.34-1-x86_64 +installed = icu-78.3-1-x86_64 +installed = icu69-69.1-1-x86_64 +installed = iec16022-0.3.1-3-x86_64 +installed = iio-sensor-proxy-3.9-1-x86_64 +installed = ijs-0.35-7-x86_64 +installed = imagemagick-7.1.2.25-1-x86_64 +installed = imake-1.0.11-1-x86_64 +installed = imath-3.2.2-6-x86_64 +installed = imlib-1.9.15-19-x86_64 +installed = imlib-debug-1.9.15-19-x86_64 +installed = imlib2-1.12.6-1-x86_64 +installed = incidenceeditor-26.04.2-1-x86_64 +installed = inetutils-2.8-1-x86_64 +installed = iniparser-4.2.6-2-x86_64 +installed = inkscape-1.4.4-2-x86_64 +installed = innoextract-1.9-16-x86_64 +installed = intel-oneapi-common-2026.0.0_235-1-any +installed = intel-oneapi-compiler-dpcpp-cpp-runtime-libs-2026.0.0_947-2-x86_64 +installed = intel-oneapi-compiler-shared-runtime-2026.0.0_947-1-x86_64 +installed = intel-oneapi-compiler-shared-runtime-libs-2026.0.0_947-1-x86_64 +installed = intel-oneapi-mkl-2026.0.0_908-1-x86_64 +installed = intel-oneapi-openmp-2026.0.0_947-1-x86_64 +installed = intel-oneapi-tbb-2023.0.0_724-1-x86_64 +installed = intel-oneapi-tcm-1.5.0_489-1-x86_64 +installed = intel-oneapi-umf-1.1.0_340-2-x86_64 +installed = intel-ucode-20260512-1-any +installed = intltool-0.51.0-6-any +installed = intltool-debian-1:0.35.0+20060710.6-1-any +installed = iperf3-3.21-1-x86_64 +installed = iproute2-7.0.0-1-x86_64 +installed = iptables-1:1.8.13-1-x86_64 +installed = iputils-20250605-1-x86_64 +installed = iso-codes-4.20.1-1-any +installed = itstool-1:2.0.7-3-any +installed = iw-6.17-1-x86_64 +installed = jansson-2.15.0-1-x86_64 +installed = jasper-4.2.9-1-x86_64 +installed = java-environment-common-3-6-any +installed = java-hamcrest-3.0-3-any +installed = java-runtime-common-3-6-any +installed = jbig2dec-0.20-2-x86_64 +installed = jbigkit-2.1-8-x86_64 +installed = jdk-openjdk-26.0.1.u8-1-x86_64 +installed = jdk11-openjdk-11.0.31.u11-1-x86_64 +installed = jdk17-openjdk-17.0.19.u10-1-x86_64 +installed = jdk8-openjdk-8.492.u09-1-x86_64 +installed = jemalloc-1:5.3.1-2-x86_64 +installed = joyutils-1.8.1-3-x86_64 +installed = jq-1.8.1-3-x86_64 +installed = jre-26.0.1-1-x86_64 +installed = jre8-openjdk-8.492.u09-1-x86_64 +installed = jre8-openjdk-headless-8.492.u09-1-x86_64 +installed = js115-115.31.0-1-x86_64 +installed = js128-128.14.0-1-x86_64 +installed = js140-140.11.0-1-x86_64 +installed = json-c-0.18-2-x86_64 +installed = json-glib-1.10.8-1-x86_64 +installed = jsoncpp-1.9.6-3-x86_64 +installed = jstest-gtk-git-0.1.0.r127.g92bdf8e-1-x86_64 +installed = jstest-gtk-git-debug-0.1.0.r127.g92bdf8e-1-x86_64 +installed = junit-4.13.2-2-any +installed = kaccounts-integration-26.04.2-1-x86_64 +installed = kactivitymanagerd-6.6.5-1-x86_64 +installed = karchive-6.26.0-1-x86_64 +installed = karchive5-5.116.0-3-x86_64 +installed = kate-26.04.2-1-x86_64 +installed = kauth-6.26.0-1-x86_64 +installed = kauth5-5.116.0-2-x86_64 +installed = kbd-2.10.0-1-x86_64 +installed = kbookmarks-6.26.0-1-x86_64 +installed = kbookmarks5-5.116.0-2-x86_64 +installed = kcalendarcore-6.26.0-3-x86_64 +installed = kcalutils-26.04.2-1-x86_64 +installed = kcmutils-6.26.0-1-x86_64 +installed = kcodecs-6.26.0-1-x86_64 +installed = kcodecs5-5.116.0-2-x86_64 +installed = kcolorpicker-0.3.1-6-x86_64 +installed = kcolorscheme-6.26.0-2-x86_64 +installed = kcompletion-6.26.0-1-x86_64 +installed = kcompletion5-5.116.0-2-x86_64 +installed = kconfig-6.26.0-1-x86_64 +installed = kconfig5-5.116.0-2-x86_64 +installed = kconfigwidgets-6.26.0-1-x86_64 +installed = kconfigwidgets5-5.116.0-3-x86_64 +installed = kcontacts-1:6.26.0-1-x86_64 +installed = kcoreaddons-6.26.0-1-x86_64 +installed = kcoreaddons5-5.116.0-2-x86_64 +installed = kcrash-6.26.0-1-x86_64 +installed = kcrash5-5.116.0-2-x86_64 +installed = kdbusaddons-6.26.0-1-x86_64 +installed = kdbusaddons5-5.116.0-2-x86_64 +installed = kddockwidgets-2.4.0-3-x86_64 +installed = kde-cli-tools-6.6.5-1-x86_64 +installed = kdeclarative-6.26.0-1-x86_64 +installed = kdeclarative5-5.116.0-2-x86_64 +installed = kdeconnect-26.04.2-1-x86_64 +installed = kdecoration-6.6.5-1-x86_64 +installed = kded-6.26.0-1-x86_64 +installed = kded5-5.116.0-2-x86_64 +installed = kdeedu-data-26.04.2-1-any +installed = kdegraphics-mobipocket-26.04.2-1-x86_64 +installed = kdegraphics-thumbnailers-26.04.2-1-x86_64 +installed = kdenetwork-filesharing-26.04.2-1-x86_64 +installed = kdenlive-26.04.2-1-x86_64 +installed = kdepim-addons-26.04.2-1-x86_64 +installed = kdesu-6.26.0-1-x86_64 +installed = kdiagram-3.0.1-5-x86_64 +installed = kdiskmark-3.2.0-2-x86_64 +installed = kdnssd-6.26.0-1-x86_64 +installed = kdoctools5-5.116.0-3-x86_64 +installed = kdsingleapplication-1.2.1-1-x86_64 +installed = kdsoap-2.3.0-1-x86_64 +installed = kdsoap-ws-discovery-client-0.4.0-3-x86_64 +installed = keyutils-1.6.3-4-x86_64 +installed = kfilemetadata-6.26.0-1-x86_64 +installed = kglobalaccel-6.26.0-1-x86_64 +installed = kglobalaccel5-5.116.0-2-x86_64 +installed = kglobalacceld-6.6.5-1-x86_64 +installed = kguiaddons-6.26.0-2-x86_64 +installed = kguiaddons5-5.116.0-2-x86_64 +installed = kholidays-1:6.26.0-1-x86_64 +installed = ki18n-6.26.0-1-x86_64 +installed = ki18n5-5.116.0-2-x86_64 +installed = kiconthemes-6.26.0-1-x86_64 +installed = kiconthemes5-5.116.0-2-x86_64 +installed = kidentitymanagement-26.04.2-1-x86_64 +installed = kidletime-6.26.0-2-x86_64 +installed = kimageannotator-0.7.2-2-x86_64 +installed = kimageformats-6.26.0-1-x86_64 +installed = kimap-26.04.2-1-x86_64 +installed = kio-6.26.0-1-x86_64 +installed = kio-admin-26.04.2-1-x86_64 +installed = kio-extras-26.04.2-1-x86_64 +installed = kio-fuse-5.1.1-2-x86_64 +installed = kio5-5.116.0-6-x86_64 +installed = kirigami-6.26.0-2-x86_64 +installed = kirigami-addons-1.12.1-1-x86_64 +installed = kirigami2-5.116.0-2-x86_64 +installed = kitemmodels-6.26.0-1-x86_64 +installed = kitemviews-6.26.0-1-x86_64 +installed = kitemviews5-5.116.0-2-x86_64 +installed = kitinerary-26.04.2-1-x86_64 +installed = kitty-0.47.1-1-x86_64 +installed = kitty-shell-integration-0.47.1-1-x86_64 +installed = kitty-terminfo-0.47.1-1-x86_64 +installed = kjobwidgets-6.26.0-1-x86_64 +installed = kjobwidgets5-5.116.0-2-x86_64 +installed = kldap-26.04.2-1-x86_64 +installed = kmailtransport-26.04.2-1-x86_64 +installed = kmbox-26.04.2-1-x86_64 +installed = kmenuedit-6.6.5-1-x86_64 +installed = kmime-26.04.2-1-x86_64 +installed = kmod-34.2-1-x86_64 +installed = knewstuff-6.26.0-1-x86_64 +installed = knighttime-6.6.5-1-x86_64 +installed = knotifications-6.26.0-1-x86_64 +installed = knotifications5-5.116.0-3-x86_64 +installed = knotifyconfig-6.26.0-1-x86_64 +installed = konsole-26.04.2-1-x86_64 +installed = kpackage-6.26.0-1-x86_64 +installed = kpackage5-5.116.0-3-x86_64 +installed = kparts-6.26.0-1-x86_64 +installed = kpeople-6.26.0-1-x86_64 +installed = kpimtextedit-26.04.2-1-x86_64 +installed = kpipewire-6.6.5-1-x86_64 +installed = kpkpass-26.04.2-1-x86_64 +installed = kpty-6.26.0-1-x86_64 +installed = kquickcharts-6.26.0-2-x86_64 +installed = kquickimageeditor-0.6.1-2-x86_64 +installed = krb5-1.22.2-1-x86_64 +installed = krunner-6.26.0-1-x86_64 +installed = ksanecore-26.04.2-1-x86_64 +installed = kscreenlocker-6.6.5-1-x86_64 +installed = kservice-6.26.0-1-x86_64 +installed = kservice5-5.116.0-3-x86_64 +installed = ksmtp-26.04.2-1-x86_64 +installed = kstatusnotifieritem-6.26.0-2-x86_64 +installed = ksvg-6.26.0-2-x86_64 +installed = ksystemstats-6.6.5-1-x86_64 +installed = ktextaddons-2.0.2-1-x86_64 +installed = ktexteditor-6.26.0-1-x86_64 +installed = ktexttemplate-6.26.0-2-x86_64 +installed = ktextwidgets-6.26.0-1-x86_64 +installed = ktextwidgets5-5.116.0-2-x86_64 +installed = ktnef-26.04.2-1-x86_64 +installed = kunitconversion-6.26.0-1-x86_64 +installed = kuserfeedback-6.26.0-2-x86_64 +installed = kwallet-6.26.0-1-x86_64 +installed = kwallet5-5.116.0-6-x86_64 +installed = kwayland-6.6.5-1-x86_64 +installed = kwayland5-5.116.0-2-x86_64 +installed = kwidgetsaddons-6.26.0-1-x86_64 +installed = kwidgetsaddons5-5.116.0-2-x86_64 +installed = kwin-6.6.5-3-x86_64 +installed = kwindowsystem-6.26.0-2-x86_64 +installed = kwindowsystem5-5.116.0-2-x86_64 +installed = kxmlgui-6.26.0-1-x86_64 +installed = kxmlgui5-5.116.0-2-x86_64 +installed = l-smash-2.14.5-4-x86_64 +installed = ladspa-1.17-7-x86_64 +installed = lame-3.101.r6531-1-x86_64 +installed = lapack-3.12.1-2-x86_64 +installed = layer-shell-qt-6.6.5-2-x86_64 +installed = lazarus-4.6-1-x86_64 +installed = lcms-1.19-7.1-x86_64 +installed = lcms2-2.19.1-1-x86_64 +installed = ldb-2:4.24.3-1-x86_64 +installed = ldc-3:1.42.0-1-x86_64 +installed = leancrypto-1.7.2-1-x86_64 +installed = lensfun-1:0.3.4-6-x86_64 +installed = leptonica-1.87.0-1-x86_64 +installed = less-1:704-1-x86_64 +installed = level-zero-loader-1.28.2-1-x86_64 +installed = lhasa-0.5.0-1-x86_64 +installed = lib2geom-1.4-3-x86_64 +installed = lib32-aalib-1.4rc5-5-x86_64 +installed = lib32-acl-2.3.2-2-x86_64 +installed = lib32-alsa-lib-1.2.16-1-x86_64 +installed = lib32-alsa-plugins-1.2.12-1-x86_64 +installed = lib32-at-spi2-core-2.60.4-1-x86_64 +installed = lib32-audit-4.1.4-1-x86_64 +installed = lib32-brotli-1.1.0-1-x86_64 +installed = lib32-bzip2-1.0.8-4-x86_64 +installed = lib32-cairo-1.18.4-1-x86_64 +installed = lib32-cdparanoia-10.2-5-x86_64 +installed = lib32-colord-1.4.8-1-x86_64 +installed = lib32-curl-8.20.0-7-x86_64 +installed = lib32-dbus-1.16.2-1-x86_64 +installed = lib32-duktape-2.7.0-7-x86_64 +installed = lib32-e2fsprogs-1.47.4-1-x86_64 +installed = lib32-expat-2.8.1-1-x86_64 +installed = lib32-flac-1.5.0-1-x86_64 +installed = lib32-fontconfig-2:2.18.1-1-x86_64 +installed = lib32-freetype2-2.14.3-1-x86_64 +installed = lib32-fribidi-1.0.16-2-x86_64 +installed = lib32-gcc-libs-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = lib32-gdk-pixbuf2-2.44.6-2-x86_64 +installed = lib32-gettext-1.0-1-x86_64 +installed = lib32-giflib-6.1.3-1-x86_64 +installed = lib32-glib-networking-1:2.80.1-1-x86_64 +installed = lib32-glib2-2.88.1-1-x86_64 +installed = lib32-glibc-2.43+r22+g8362e8ce10b2-2-x86_64 +installed = lib32-gmp-6.3.0-2-x86_64 +installed = lib32-gnutls-3.8.13-3-x86_64 +installed = lib32-gpm-1.20.7.r38.ge82d1a6-2-x86_64 +installed = lib32-gst-plugins-base-libs-1.28.1-3-x86_64 +installed = lib32-gstreamer-1.28.1-3-x86_64 +installed = lib32-gtk3-1:3.24.52-1-x86_64 +installed = lib32-harfbuzz-14.2.1-1-x86_64 +installed = lib32-icu-78.3-1-x86_64 +installed = lib32-imlib2-1.12.6-1-x86_64 +installed = lib32-json-c-0.18-2-x86_64 +installed = lib32-keyutils-1.6.3-4-x86_64 +installed = lib32-krb5-1.22.2-1-x86_64 +installed = lib32-lcms2-2.17-1-x86_64 +installed = lib32-libasyncns-1:0.8+r3+g68cd5af-3-x86_64 +installed = lib32-libavc1394-0.5.4-5-x86_64 +installed = lib32-libcaca-0.99.beta20-2-x86_64 +installed = lib32-libcap-2.78-1-x86_64 +installed = lib32-libcups-2.4.19-1-x86_64 +installed = lib32-libdatrie-0.2.13-3-x86_64 +installed = lib32-libdrm-2.4.134-1-x86_64 +installed = lib32-libdv-1.0.0-9-x86_64 +installed = lib32-libelf-0.195-1-x86_64 +installed = lib32-libepoxy-1.5.10-2-x86_64 +installed = lib32-libffi-3.5.2-1-x86_64 +installed = lib32-libgcrypt-1.12.2-1-x86_64 +installed = lib32-libglvnd-1.7.0-1-x86_64 +installed = lib32-libgpg-error-1.61-1-x86_64 +installed = lib32-libgudev-238-3-x86_64 +installed = lib32-libidn-1.43-1-x86_64 +installed = lib32-libidn11-1.33-3-x86_64 +installed = lib32-libidn2-2.3.8-1-x86_64 +installed = lib32-libiec61883-1.2.0-5-x86_64 +installed = lib32-libjpeg-turbo-3.1.4.1-1-x86_64 +installed = lib32-libjpeg6-turbo-1.5.3-4-x86_64 +installed = lib32-libldap-2.6.13-1-x86_64 +installed = lib32-libnghttp2-1.69.0-1-x86_64 +installed = lib32-libnghttp3-1.16.0-1-x86_64 +installed = lib32-libngtcp2-1.23.0-1-x86_64 +installed = lib32-libnl-3.12.0-1-x86_64 +installed = lib32-libnm-1.56.1-1-x86_64 +installed = lib32-libnsl-2.0.1-2-x86_64 +installed = lib32-libogg-1.3.6-1-x86_64 +installed = lib32-libpcap-1.10.6-1-x86_64 +installed = lib32-libpciaccess-0.19-1-x86_64 +installed = lib32-libpipewire-1:1.6.6-1-x86_64 +installed = lib32-libpng-1.6.58-1-x86_64 +installed = lib32-libproxy-0.5.12-1-x86_64 +installed = lib32-libpsl-0.21.5-1-x86_64 +installed = lib32-libpulse-17.0+r98+gb096704c0-1-x86_64 +installed = lib32-libraw1394-2.1.2-5-x86_64 +installed = lib32-librsvg-2:2.62.3-1-x86_64 +installed = lib32-libshout-1:2.4.6-4-x86_64 +installed = lib32-libsndfile-1.2.2-3-x86_64 +installed = lib32-libsoup3-3.6.6-2-x86_64 +installed = lib32-libssh2-1.11.1-1-x86_64 +installed = lib32-libtasn1-4.21.0-1-x86_64 +installed = lib32-libthai-0.1.29-3-x86_64 +installed = lib32-libtheora-1.2.0-1-x86_64 +installed = lib32-libtiff-4.7.1-1-x86_64 +installed = lib32-libtirpc-1.3.7-1-x86_64 +installed = lib32-libunistring-1.4.2-1-x86_64 +installed = lib32-libunwind-1.8.2-1-x86_64 +installed = lib32-libusb-1.0.30-1-x86_64 +installed = lib32-libva-2.22.0-1-x86_64 +installed = lib32-libvdpau-1.5-3-x86_64 +installed = lib32-libvorbis-1.3.7-4-x86_64 +installed = lib32-libvpx-1.16.0-2-x86_64 +installed = lib32-libwebp-1.6.0-1-x86_64 +installed = lib32-libx11-1.8.13-1-x86_64 +installed = lib32-libxau-1.0.12-1-x86_64 +installed = lib32-libxcb-1.17.0-1-x86_64 +installed = lib32-libxcomposite-0.4.7-1-x86_64 +installed = lib32-libxcrypt-4.5.2-1-x86_64 +installed = lib32-libxcrypt-compat-4.5.2-1-x86_64 +installed = lib32-libxcursor-1.2.3-1-x86_64 +installed = lib32-libxdamage-1.1.7-1-x86_64 +installed = lib32-libxdmcp-1.1.5-1-x86_64 +installed = lib32-libxext-1.3.7-1-x86_64 +installed = lib32-libxfixes-6.0.1-2-x86_64 +installed = lib32-libxft-2.3.9-1-x86_64 +installed = lib32-libxi-1.8.3-1-x86_64 +installed = lib32-libxinerama-1.1.6-1-x86_64 +installed = lib32-libxkbcommon-1.13.2-1-x86_64 +installed = lib32-libxml2-2.15.3-1-x86_64 +installed = lib32-libxrandr-1.5.5-1-x86_64 +installed = lib32-libxrender-0.9.11-2-x86_64 +installed = lib32-libxshmfence-1.3.3-1-x86_64 +installed = lib32-libxss-1.2.5-1-x86_64 +installed = lib32-libxtst-1.2.5-2-x86_64 +installed = lib32-libxv-1.0.12-2-x86_64 +installed = lib32-libxxf86vm-1.1.5-2-x86_64 +installed = lib32-llvm-libs-1:22.1.6-1-x86_64 +installed = lib32-lm_sensors-1:3.6.2-2-x86_64 +installed = lib32-mesa-1:26.1.2-1-x86_64 +installed = lib32-mpg123-1.33.5-1-x86_64 +installed = lib32-ncurses-6.6-2-x86_64 +installed = lib32-nettle-4.0-2-x86_64 +installed = lib32-nspr-4.39-1-x86_64 +installed = lib32-nss-3.124-1-x86_64 +installed = lib32-nvidia-utils-610.43.02-1-x86_64 +installed = lib32-openal-1.25.2-1-x86_64 +installed = lib32-openssl-1:3.6.2-1-x86_64 +installed = lib32-openssl-1.1-1.1.1.w-5-x86_64 +installed = lib32-opus-1.6.1-1-x86_64 +installed = lib32-orc-0.4.42-1-x86_64 +installed = lib32-p11-kit-0.26.2-1-x86_64 +installed = lib32-pam-1.7.1-1-x86_64 +installed = lib32-pango-1:1.57.1-1-x86_64 +installed = lib32-pcre2-10.47-1-x86_64 +installed = lib32-pipewire-1:1.6.6-1-x86_64 +installed = lib32-pipewire-jack-1:1.6.6-1-x86_64 +installed = lib32-pixman-0.46.4-1-x86_64 +installed = lib32-popt-1.19-2-x86_64 +installed = lib32-rust-libs-1:1.96.0-1-x86_64 +installed = lib32-sdl2-compat-2.32.68-1-x86_64 +installed = lib32-sdl3-3.4.10-1-x86_64 +installed = lib32-speex-1.2.1-2-x86_64 +installed = lib32-spirv-tools-1:1.4.350.0-1-x86_64 +installed = lib32-sqlite-3.53.2-1-x86_64 +installed = lib32-systemd-260.2-1-x86_64 +installed = lib32-taglib-2.3-1-x86_64 +installed = lib32-twolame-0.4.0-3-x86_64 +installed = lib32-util-linux-2.42.1-1-x86_64 +installed = lib32-v4l-utils-1.32.0-1-x86_64 +installed = lib32-vkd3d-1.19-1-x86_64 +installed = lib32-vulkan-icd-loader-1.4.350.0-1-x86_64 +installed = lib32-wavpack-5.9.0-1-x86_64 +installed = lib32-wayland-1.25.0-1-x86_64 +installed = lib32-xz-5.8.3-1-x86_64 +installed = lib32-zlib-1.3.2-1-x86_64 +installed = lib32-zstd-1.5.7-2-x86_64 +installed = libaccounts-glib-1.27-3-x86_64 +installed = libaccounts-qt-1.17-2-x86_64 +installed = libadwaita-1:1.9.1-1-x86_64 +installed = libaec-1.1.6-1-x86_64 +installed = libaemu-0.1.2-5-x86_64 +installed = libaio-0.3.113-4-x86_64 +installed = libajantv2-1:17.5.0-1-x86_64 +installed = libajantv2-debug-1:17.5.0-1-x86_64 +installed = libao-1.2.2-7-x86_64 +installed = libappindicator-12.10.1-1-x86_64 +installed = libarchive-3.8.7-1-x86_64 +installed = libasan-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = libass-0.17.4-2-x86_64 +installed = libassuan-3.0.0-1-x86_64 +installed = libasyncns-1:0.8+r3+g68cd5af-3-x86_64 +installed = libatasmart-0.19-8-x86_64 +installed = libatomic-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = libavc1394-0.5.4-7-x86_64 +installed = libavif-1.4.2-1-x86_64 +installed = libavtp-0.2.0-3-x86_64 +installed = libayatana-indicator-0.9.4-2-x86_64 +installed = libb2-0.98.1-3-x86_64 +installed = libb64-1.2.1-5-x86_64 +installed = libblake3-1.8.4-1-x86_64 +installed = libblockdev-3.5.0-2-x86_64 +installed = libblockdev-crypto-3.5.0-2-x86_64 +installed = libblockdev-fs-3.5.0-2-x86_64 +installed = libblockdev-loop-3.5.0-2-x86_64 +installed = libblockdev-mdraid-3.5.0-2-x86_64 +installed = libblockdev-nvme-3.5.0-2-x86_64 +installed = libblockdev-part-3.5.0-2-x86_64 +installed = libblockdev-smart-3.5.0-2-x86_64 +installed = libblockdev-swap-3.5.0-2-x86_64 +installed = libbluray-1.4.1-1-x86_64 +installed = libbpf-1.7.0-1-x86_64 +installed = libbs2b-3.1.0-10-x86_64 +installed = libbsd-0.12.2-2-x86_64 +installed = libburn-1.5.8-1-x86_64 +installed = libbytesize-2.12-3-x86_64 +installed = libc++-22.1.6-1-x86_64 +installed = libc++abi-22.1.6-1-x86_64 +installed = libcaca-0.99.beta20-7-x86_64 +installed = libcacard-2.8.1-1-x86_64 +installed = libcamera-0.7.1-1-x86_64 +installed = libcamera-ipa-0.7.1-1-x86_64 +installed = libcanberra-1:0.30+r2+gc0620e4-6-x86_64 +installed = libcap-2.78-1-x86_64 +installed = libcap-ng-0.9.3-1-x86_64 +installed = libcbor-0.14.0-1-x86_64 +installed = libcddb-1.3.2-9-x86_64 +installed = libcdio-2.3.0-1-x86_64 +installed = libcdio-paranoia-10.2+2.0.2-2-x86_64 +installed = libcdr-0.1.9-1-x86_64 +installed = libcloudproviders-0.4.0-1-x86_64 +installed = libcolord-1.4.8-1-x86_64 +installed = libcue-2.3.0-2-x86_64 +installed = libcups-2:2.4.19-1-x86_64 +installed = libcupsfilters-2.1.1-4-x86_64 +installed = libdaemon-0.14-6-x86_64 +installed = libdatachannel-0.24.3-2-x86_64 +installed = libdatrie-0.2.14-1-x86_64 +installed = libdbusmenu-glib-18.10.20180917-1-x86_64 +installed = libdbusmenu-gtk3-18.10.20180917-1-x86_64 +installed = libdbusmenu-lxqt-0.4.0-1-x86_64 +installed = libdbusmenu-qt5-0.9.3+16.04.20160218-8-x86_64 +installed = libdc1394-2.2.7-2-x86_64 +installed = libdca-0.0.7-3-x86_64 +installed = libde265-1.1.1-1-x86_64 +installed = libdecor-0.2.5-1-x86_64 +installed = libdeflate-1.25-1-x86_64 +installed = libdisplay-info-0.3.0-1-x86_64 +installed = libdmapsharing-3.9.14-1-x86_64 +installed = libdmtx-0.7.8-1-x86_64 +installed = libdovi-3.3.2-1-x86_64 +installed = libdrm-2.4.134-1-x86_64 +installed = libdv-1.0.0-12-x86_64 +installed = libdvbpsi-1:1.3.3-4-x86_64 +installed = libdvdcss-1.5.0-1-x86_64 +installed = libdvdnav-7.0.0-1-x86_64 +installed = libdvdread-7.0.1-1-x86_64 +installed = libebml-1.4.5-2-x86_64 +installed = libebur128-1.2.6-2-x86_64 +installed = libedit-20260512_3.1-1-x86_64 +installed = libei-1.6.0-1-x86_64 +installed = libelf-0.195-1-x86_64 +installed = libepoxy-1.5.10-3-x86_64 +installed = libev-4.33-5-x86_64 +installed = libevdev-1.13.6-1-x86_64 +installed = libevent-2.1.12-5-x86_64 +installed = libexif-0.6.26-1-x86_64 +installed = libfabric-2.5.1-1-x86_64 +installed = libfakekey-0.3-4-x86_64 +installed = libfdk-aac-2.0.3-2-x86_64 +installed = libffi-3.5.2-1-x86_64 +installed = libfido2-1.17.0-1-x86_64 +installed = libfm-1.4.1-1-x86_64 +installed = libfm-extra-1.4.1-1-x86_64 +installed = libfm-gtk3-1.4.1-1-x86_64 +installed = libfm-qt-2.4.0-2-x86_64 +installed = libfontenc-1.1.9-1-x86_64 +installed = libfreeaptx-0.2.2-1-x86_64 +installed = libftdi-1.5-10-x86_64 +installed = libfyaml-0.9.6-2-x86_64 +installed = libgadu-1.12.2-14-x86_64 +installed = libgbinder-1.1.47-1-x86_64 +installed = libgcc-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = libgcrypt-1.12.2-1-x86_64 +installed = libgdata-0.18.1-5-x86_64 +installed = libgdiplus-6.2-1-x86_64 +installed = libgdm-50.1-1-x86_64 +installed = libgee-0.20.8-1-x86_64 +installed = libgexiv2-0.14.6-2-x86_64 +installed = libgfortran-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = libgirepository-1.86.0-2-x86_64 +installed = libgit2-1:1.9.4-1-x86_64 +installed = libglade-2.6.4-9-x86_64 +installed = libglibutil-1.0.82-1-x86_64 +installed = libglibutil-debug-1.0.80-1-x86_64 +installed = libglvnd-1.7.0-3-x86_64 +installed = libgme-0.6.5-1-x86_64 +installed = libgnome-keyring-1:3.12.0+r14+g23438cc-1-x86_64 +installed = libgnomekbd-1:3.28.1-2-x86_64 +installed = libgoa-3.58.1-1-x86_64 +installed = libgomp-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = libgovirt-2:0.3.11-1-x86_64 +installed = libgpg-error-1.61-1-x86_64 +installed = libgphobos-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = libgphoto2-2.5.34-1-x86_64 +installed = libgpod-0.8.3-20-x86_64 +installed = libgravatar-26.04.2-1-x86_64 +installed = libgsf-1.14.58-1-x86_64 +installed = libgtop-2.41.3-2-x86_64 +installed = libgudev-238-3-x86_64 +installed = libgusb-0.4.9-2-x86_64 +installed = libgweather-4-4.6.0-1-x86_64 +installed = libgxps-0.3.2-5-x86_64 +installed = libhandy-1.8.3-2-x86_64 +installed = libharu-2.4.6-1-x86_64 +installed = libheif-1.23.0-1-x86_64 +installed = libibus-1.5.34-1-x86_64 +installed = libical-4.0.2-1-x86_64 +installed = libice-1.1.2-1-x86_64 +installed = libiconv-1.19-1-x86_64 +installed = libid3tag-0.16.4-1-x86_64 +installed = libidn-1.43-1-x86_64 +installed = libidn2-2.3.8-1-x86_64 +installed = libiec61883-1.2.0-9-x86_64 +installed = libieee1284-0.2.11-19-x86_64 +installed = libimagequant-4.4.1-2-x86_64 +installed = libimobiledevice-1.4.0-2-x86_64 +installed = libimobiledevice-glue-1.3.2-1-x86_64 +installed = libindicator-12.10.1-11-x86_64 +installed = libinih-62-2-x86_64 +installed = libinput-1.31.3-1-x86_64 +installed = libinstpatch-1.1.7-2-x86_64 +installed = libiptcdata-1.0.5-5-x86_64 +installed = libiscsi-1.20.3-1-x86_64 +installed = libisl-0.27-1-x86_64 +installed = libisoburn-1.5.8.2-1-x86_64 +installed = libisofs-1.5.8.2-1-x86_64 +installed = libjcat-0.2.6-1-x86_64 +installed = libjpeg-turbo-3.1.4.1-1-x86_64 +installed = libjpeg6-turbo-1.5.3-3-x86_64 +installed = libjuice-1.7.2-1-x86_64 +installed = libjxl-0.11.2-2-x86_64 +installed = libkate-0.4.3-4-x86_64 +installed = libkdcraw-26.04.2-1-x86_64 +installed = libkdepim-26.04.2-1-x86_64 +installed = libkexiv2-26.04.2-1-x86_64 +installed = libkeybinder3-0.3.2-5-x86_64 +installed = libkgapi-26.04.2-1-x86_64 +installed = libkleo-26.04.2-1-x86_64 +installed = libksba-1.8.0-1-x86_64 +installed = libkscreen-6.6.5-1-x86_64 +installed = libksieve-26.04.2-1-x86_64 +installed = libksysguard-6.6.5-1-x86_64 +installed = liblc3-1.1.3-2-x86_64 +installed = libldac-2.0.2.3-3-x86_64 +installed = libldap-2.6.13-1-x86_64 +installed = liblouis-3.38.0-1-x86_64 +installed = liblphobos-3:1.42.0-1-x86_64 +installed = liblqr-0.4.3-1-x86_64 +installed = liblrdf-0.6.1-5-x86_64 +installed = liblsan-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = libltc-1.3.2-2-x86_64 +installed = liblxqt-2.4.0-1-x86_64 +installed = liblzf-3.6-5-x86_64 +installed = libmad-0.15.1b-10-x86_64 +installed = libmakepkg-dropins-20-1-any +installed = libmalcontent-0.14.0-4-x86_64 +installed = libmanette-0.2.13-2-x86_64 +installed = libmatroska-1.7.1-2-x86_64 +installed = libmbim-1.34.0-1-x86_64 +installed = libmd-1.2.0-1-x86_64 +installed = libmediaart-1.9.7-2-x86_64 +installed = libmediainfo-26.05-1-x86_64 +installed = libmfx-23.2.2-6-x86_64 +installed = libmicrodns-0.2.0-2-x86_64 +installed = libmicrohttpd-1.0.5-1-x86_64 +installed = libmikmod-3.3.13-1-x86_64 +installed = libmm-glib-1.24.2-1-x86_64 +installed = libmms-0.6.4-6-x86_64 +installed = libmng-2.0.3-4-x86_64 +installed = libmnl-1.0.5-2-x86_64 +installed = libmodplug-0.8.9.0-7-x86_64 +installed = libmp3splt-0.9.3.1519+r5+g4b48268-4-x86_64 +installed = libmp3splt-debug-0.9.3.1519+r5+g4b48268-4-x86_64 +installed = libmpc-1.4.1-1-x86_64 +installed = libmpcdec-1:0.1+r475-6-x86_64 +installed = libmpeg2-0.5.1-11-x86_64 +installed = libmspack-1:1.11-2-x86_64 +installed = libmtp-1.1.23-1-x86_64 +installed = libmypaint-1.6.1-2-x86_64 +installed = libmysofa-1.3.4-1-x86_64 +installed = libnatpmp-20230423-3-x86_64 +installed = libnautilus-extension-50.2.2-1-x86_64 +installed = libnbd-1.24.2-2-x86_64 +installed = libndp-1.9-1-x86_64 +installed = libnet-2:1.3-2-x86_64 +installed = libnetfilter_conntrack-1.1.1-1-x86_64 +installed = libnewt-0.52.25-2-x86_64 +installed = libnfnetlink-1.0.2-2-x86_64 +installed = libnfs-6.0.2-5-x86_64 +installed = libnftnl-1.3.1-1-x86_64 +installed = libnghttp2-1.69.0-1-x86_64 +installed = libnghttp3-1.16.0-1-x86_64 +installed = libngtcp2-1.23.0-1-x86_64 +installed = libnice-0.1.23-1-x86_64 +installed = libnl-3.12.0-1-x86_64 +installed = libnm-1.56.1-1-x86_64 +installed = libnma-1.10.6-3-x86_64 +installed = libnma-common-1.10.6-3-x86_64 +installed = libnma-gtk4-1.10.6-3-x86_64 +installed = libnotify-0.8.8-1-x86_64 +installed = libnsl-2.0.1-2-x86_64 +installed = libnss_nis-3.4-1-x86_64 +installed = libntfs-3g-2026.2.25-1-x86_64 +installed = libnvidia-container-1.19.1-1-x86_64 +installed = libnvme-1.16.1-3-x86_64 +installed = liboauth-1:1.0.3+r16+gc26f038-2-x86_64 +installed = libobjc-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = libodfgen-0.1.8-5-x86_64 +installed = libofx-0.10.9-2-x86_64 +installed = libogg-1.3.6-1-x86_64 +installed = liboggz-1.1.3-1-x86_64 +installed = libomxil-bellagio-0.9.3-5-x86_64 +installed = libopenmpt-0.8.7-1-x86_64 +installed = libosinfo-1.12.0-3-x86_64 +installed = libp11-0.4.18-1-x86_64 +installed = libp11-kit-0.26.2-1-x86_64 +installed = libpackagekit-glib-1.3.5-1-x86_64 +installed = libpamac-full-1:11.7.4.3.gc7efe92-1-x86_64 +installed = libpaper-2.2.8-1-x86_64 +installed = libpcap-1.10.6-1-x86_64 +installed = libpciaccess-0.19-1-x86_64 +installed = libpeas-1.38.1-1-x86_64 +installed = libpgm-5.3.128-4-x86_64 +installed = libphobos-1:2.112.1-2-x86_64 +installed = libphonenumber-1:9.0.32-1-x86_64 +installed = libpipeline-1.5.8-1-x86_64 +installed = libpipewire-1:1.6.6-1-x86_64 +installed = libplacebo-7.360.1-2-x86_64 +installed = libplasma-6.6.5-1-x86_64 +installed = libplist-2.7.0-3-x86_64 +installed = libpng-1.6.58-1-x86_64 +installed = libportal-0.9.1-3-x86_64 +installed = libportal-gtk3-0.9.1-3-x86_64 +installed = libportal-gtk4-0.9.1-3-x86_64 +installed = libportal-qt6-0.9.1-3-x86_64 +installed = libppd-2.1.1-2-x86_64 +installed = libproxy-0.5.12-1-x86_64 +installed = libpsl-0.21.5-2-x86_64 +installed = libpst-0.6.76-10-x86_64 +installed = libpulse-17.0+r98+gb096704c0-1-x86_64 +installed = libpwquality-1.4.5-7-x86_64 +installed = libqaccessibilityclient-qt6-0.6.0-4-x86_64 +installed = libqalculate-5.11.0-1-x86_64 +installed = libqmi-1.38.0-1-x86_64 +installed = libqrtr-glib-1.4.0-1-x86_64 +installed = libqtxdg-4.4.0-2-x86_64 +installed = libquadmath-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = libquicktime-1.2.4-34-x86_64 +installed = libraqm-0.10.5-1-x86_64 +installed = libraw-0.22.1-1-x86_64 +installed = libraw1394-2.1.2-4-x86_64 +installed = librest-0.10.2-1-x86_64 +installed = librevenge-0.0.5-4-x86_64 +installed = librist-0.2.17-1-x86_64 +installed = librsvg-2:2.62.3-1-x86_64 +installed = librsync-1:2.3.4-2-x86_64 +installed = libsamplerate-0.2.2-3-x86_64 +installed = libsasl-2.1.28-5-x86_64 +installed = libsass-3.6.6-2-x86_64 +installed = libsbsms-2.3.0-6-x86_64 +installed = libseccomp-2.6.0-1-x86_64 +installed = libsecret-0.21.7-1-x86_64 +installed = libshout-1:2.4.6-5-x86_64 +installed = libsigc++-2.12.2-1-x86_64 +installed = libsigc++-3.0-3.8.1-1-x86_64 +installed = libsigsegv-2.15-1-x86_64 +installed = libsixel-1.10.5-1-x86_64 +installed = libslirp-4.9.3-1-x86_64 +installed = libsm-1.2.6-1-x86_64 +installed = libsndfile-1.2.2-4-x86_64 +installed = libsodium-1.0.22-1-x86_64 +installed = libsonic-0.2.0-2-x86_64 +installed = libsoup-2.74.3-4-x86_64 +installed = libsoup3-3.6.6-2-x86_64 +installed = libsoxr-0.1.3-4-x86_64 +installed = libspatialindex-2.1.0-1-x86_64 +installed = libspectre-0.2.12-2-x86_64 +installed = libspeechd-0.12.1-3-x86_64 +installed = libspelling-0.4.10-1-x86_64 +installed = libspiro-1:20240903-1-x86_64 +installed = libspnav-1.2-1-x86_64 +installed = libsrtp-1:2.8.0-1-x86_64 +installed = libssc-0.4.3-1-x86_64 +installed = libssh-0.12.0-1-x86_64 +installed = libssh2-1.11.1-1-x86_64 +installed = libstdc++-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = libstemmer-3.1.1-1-x86_64 +installed = libsynctex-2026.0-2-x86_64 +installed = libsysprof-capture-50.0-2-x86_64 +installed = libtar-1.2.20-8-x86_64 +installed = libtasn1-4.21.0-1-x86_64 +installed = libtatsu-1.0.5-1-x86_64 +installed = libteam-1.32-3-x86_64 +installed = libthai-0.1.30-1-x86_64 +installed = libtheora-1.2.0-1-x86_64 +installed = libtiff-4.7.1-2-x86_64 +installed = libtiff5-4.4.0-2-x86_64 +installed = libtirpc-1.3.7-1-x86_64 +installed = libtommath-1.3.0-2-x86_64 +installed = libtool-2.6.1-1-x86_64 +installed = libtpms-0.10.2-1-x86_64 +installed = libtraceevent-1:1.9.0-1-x86_64 +installed = libtracefs-1.8.3-1-x86_64 +installed = libtsan-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = libubsan-16.1.1+r12+g301eb08fa2c5-1-x86_64 +installed = libunibreak-7.0-1-x86_64 +installed = libunistring-1.4.2-1-x86_64 +installed = libunwind-1.8.2-1-x86_64 +installed = libupnp-1.14.31-1-x86_64 +installed = liburcu-0.15.6-1-x86_64 +installed = liburing-2.14-1-x86_64 +installed = libusb-1.0.30-1-x86_64 +installed = libusb-compat-0.1.9-1-x86_64 +installed = libusbmuxd-2.1.1-2-x86_64 +installed = libutempter-1.2.3-1-x86_64 +installed = libutf8proc-2.11.3-1-x86_64 +installed = libuv-1.52.1-1-x86_64 +installed = libva-2.23.0-1-x86_64 +installed = libva-intel-driver-2.4.1-7-x86_64 +installed = libva-utils-2.23.0-1-x86_64 +installed = libvdpau-1.5-4-x86_64 +installed = libverto-0.3.2-6-x86_64 +installed = libvirt-1:12.4.0-1-x86_64 +installed = libvirt-glib-5.0.0-3-x86_64 +installed = libvirt-python-1:12.4.0-1-x86_64 +installed = libvisio-0.1.11-1-x86_64 +installed = libvlc-3.0.23_2-6-x86_64 +installed = libvncserver-0.9.15-1-x86_64 +installed = libvoikko-4.3.3-3-x86_64 +installed = libvorbis-1.3.7-4-x86_64 +installed = libvpl-2.16.0-2-x86_64 +installed = libvpx-1.16.0-3-x86_64 +installed = libwacom-2.19.0-1-x86_64 +installed = libwbclient-2:4.24.3-1-x86_64 +installed = libwebp-1.6.0-2-x86_64 +installed = libwireplumber-0.5.14-1-x86_64 +installed = libwireplumber-4.0-compat-0.4.17-2-x86_64 +installed = libwireplumber-4.0-compat-debug-0.4.17-2-x86_64 +installed = libwmf-0.2.15-1-x86_64 +installed = libwnck3-43.3-1-x86_64 +installed = libwpd-0.10.3-6-x86_64 +installed = libwpg-0.3.4-3-x86_64 +installed = libx11-1.8.13-1-x86_64 +installed = libx86-1.1.1-1-x86_64 +installed = libx86emu-3.7-2-x86_64 +installed = libxau-1.0.12-1-x86_64 +installed = libxaw-1.0.16-2-x86_64 +installed = libxcb-1.17.0-1-x86_64 +installed = libxcomposite-0.4.7-1-x86_64 +installed = libxcrypt-4.5.2-1-x86_64 +installed = libxcrypt-compat-4.5.2-1-x86_64 +installed = libxcursor-1.2.3-1-x86_64 +installed = libxcvt-0.1.3-1-x86_64 +installed = libxdamage-1.1.7-1-x86_64 +installed = libxdg-basedir-1.2.3-3-x86_64 +installed = libxdmcp-1.1.5-2-x86_64 +installed = libxdp-1.6.3-1-x86_64 +installed = libxext-1.3.7-1-x86_64 +installed = libxfce4ui-4.20.2-1-x86_64 +installed = libxfce4util-4.20.1-1-x86_64 +installed = libxfce4windowing-4.20.6-1-x86_64 +installed = libxfixes-6.0.2-1-x86_64 +installed = libxfont2-2.0.7-1-x86_64 +installed = libxft-2.3.9-1-x86_64 +installed = libxi-1.8.3-1-x86_64 +installed = libxinerama-1.1.6-1-x86_64 +installed = libxkbcommon-1.13.2-1-x86_64 +installed = libxkbcommon-x11-1.13.2-1-x86_64 +installed = libxkbfile-1.2.0-1-x86_64 +installed = libxklavier-5.4-7-x86_64 +installed = libxml++2.6-2.42.4-1-x86_64 +installed = libxml2-2.15.3-1-x86_64 +installed = libxml2-legacy-2.13.9-2-x86_64 +installed = libxmlb-0.3.27-1-x86_64 +installed = libxmp-4.7.0-1-x86_64 +installed = libxmu-1.3.1-1-x86_64 +installed = libxnvctrl-610.43.02-1-x86_64 +installed = libxpm-3.5.19-1-x86_64 +installed = libxpresent-1.0.2-1-x86_64 +installed = libxrandr-1.5.5-1-x86_64 +installed = libxrender-0.9.12-1-x86_64 +installed = libxres-1.2.3-1-x86_64 +installed = libxshmfence-1.3.3-1-x86_64 +installed = libxslt-1.1.45-2-x86_64 +installed = libxss-1.2.5-1-x86_64 +installed = libxt-1.3.1-1-x86_64 +installed = libxtst-1.2.5-1-x86_64 +installed = libxv-1.0.13-1-x86_64 +installed = libxvmc-1.0.15-1-x86_64 +installed = libxxf86vm-1.1.7-1-x86_64 +installed = libyaml-0.2.5-3-x86_64 +installed = libytnef-1:2.1.2-2-x86_64 +installed = libyuv-r2426+464c51a03-1-x86_64 +installed = libzen-0.4.41-3-x86_64 +installed = libzip-1.11.4-1-x86_64 +installed = licenses-20240728-1-any +installed = lightdm-1:1.32.0-6-x86_64 +installed = lightdm-gtk-greeter-1:2.0.9-2-x86_64 +installed = lightdm-gtk-greeter-settings-1.2.3-4-any +installed = lightdm-settings-2.1.1-1-any +installed = lightdm-slick-greeter-2.2.6-1-x86_64 +installed = lilv-0.26.4-1-x86_64 +installed = linphone-desktop-appimage-6.1.2-1-x86_64 +installed = linux-7.0.11.arch1-1-x86_64 +installed = linux-api-headers-7.0-1-x86_64 +installed = linux-firmware-20260519-1-any +installed = linux-firmware-amdgpu-20260519-1-any +installed = linux-firmware-atheros-20260519-1-any +installed = linux-firmware-broadcom-20260519-1-any +installed = linux-firmware-cirrus-20260519-1-any +installed = linux-firmware-intel-20260519-1-any +installed = linux-firmware-mediatek-20260519-1-any +installed = linux-firmware-nvidia-20260519-1-any +installed = linux-firmware-other-20260519-1-any +installed = linux-firmware-radeon-20260519-1-any +installed = linux-firmware-realtek-20260519-1-any +installed = linux-firmware-whence-20260519-1-any +installed = linux-headers-7.0.11.arch1-1-x86_64 +installed = linux-zen-7.0.11.zen1-1-x86_64 +installed = linux-zen-headers-7.0.11.zen1-1-x86_64 +installed = lirc-1:0.10.2-6-x86_64 +installed = litehtml-0.9-3-x86_64 +installed = lksctp-tools-1.0.21-1-x86_64 +installed = lld-22.1.6-1-x86_64 +installed = llhttp-9.3.1-1-x86_64 +installed = llvm-22.1.6-1-x86_64 +installed = llvm-libs-22.1.6-1-x86_64 +installed = llvm15-libs-15.0.7-3-x86_64 +installed = llvm20-libs-20.1.8-1-x86_64 +installed = llvm21-21.1.8-1-x86_64 +installed = llvm21-libs-21.1.8-1-x86_64 +installed = lm_sensors-1:3.6.2-1-x86_64 +installed = lmdb-0.9.35-1-x86_64 +installed = localsearch-3.11.1-1-x86_64 +installed = log4cplus-2.1.2-1-x86_64 +installed = lsb-release-2.0.r55.a25a4fc-1-any +installed = lshw-B.02.20-3-x86_64 +installed = lsof-4.99.6-1-x86_64 +installed = lua-5.5.0-2-x86_64 +installed = lua51-5.1.5-13-x86_64 +installed = lua53-5.3.6-4-x86_64 +installed = lua53-lgi-0.9.2-14-x86_64 +installed = lua54-5.4.8-6-x86_64 +installed = luajit-2.1.1780076327+b925b3e-1-x86_64 +installed = luanti-5.15.1-1-x86_64 +installed = luanti-common-5.15.1-1-x86_64 +installed = luit-20250912-1-x86_64 +installed = lutris-0.5.22-1-any +installed = lv2-1.18.10-2-x86_64 +installed = lvm2-2.03.41-1-x86_64 +installed = lxc-1:7.0.0-1-x86_64 +installed = lximage-qt-2.4.0-1-x86_64 +installed = lxmenu-data-0.1.7-1-any +installed = lxqt-about-2.4.0-1-x86_64 +installed = lxqt-admin-2.4.0-1-x86_64 +installed = lxqt-archiver-1.4.0-1-x86_64 +installed = lxqt-config-2.4.0-1-x86_64 +installed = lxqt-globalkeys-2.4.0-1-x86_64 +installed = lxqt-menu-data-2.4.0-1-any +installed = lxqt-notificationd-2.4.0-1-x86_64 +installed = lxqt-openssh-askpass-2.4.0-1-x86_64 +installed = lxqt-panel-2.4.1-1-x86_64 +installed = lxqt-policykit-2.4.0-1-x86_64 +installed = lxqt-powermanagement-2.4.0-1-x86_64 +installed = lxqt-qtplugin-2.4.0-2-x86_64 +installed = lxqt-runner-2.4.0-1-x86_64 +installed = lxqt-session-2.4.0-2-x86_64 +installed = lxqt-sudo-2.4.0-1-x86_64 +installed = lxqt-themes-2.4.0-1-any +installed = lz4-1:1.10.0-2-x86_64 +installed = lzo-2.10-5-x86_64 +installed = m4-1.4.21-2-x86_64 +installed = m68k-elf-binutils-2.45-1-x86_64 +installed = mailcap-2.1.54-2-any +installed = mailcommon-26.04.2-1-x86_64 +installed = mailimporter-26.04.2-1-x86_64 +installed = make-4.4.1-3-x86_64 +installed = mallard-ducktype-1.0.2-13-any +installed = man-db-2.13.1-1-x86_64 +installed = man2html-3.0.1-10-any +installed = mangohud-0.8.4-1-x86_64 +installed = manifold-3.4.1-1-x86_64 +installed = mariadb-12.3.2-2-x86_64 +installed = mariadb-clients-12.3.2-2-x86_64 +installed = mariadb-libs-12.3.2-2-x86_64 +installed = masterpdfeditor-5.9.98-2-x86_64 +installed = masterpdfeditor-debug-5.9.94-1-x86_64 +installed = masterpdfeditor-free-4.3.89-1-x86_64 +installed = mate-desktop-1.28.2-2-x86_64 +installed = mate-system-monitor-1.28.1-3-x86_64 +installed = materialx-1.39.4-5-x86_64 +installed = mathjax2-2.7.9-2-any +installed = maturin-1.13.3-1-x86_64 +installed = mbedtls-3.6.5-1-x86_64 +installed = mbedtls2-2.28.10-1-x86_64 +installed = md4c-0.5.3-1-x86_64 +installed = mdadm-4.6-2-x86_64 +installed = media-player-info-26-1-any +installed = mediainfo-26.05-1-x86_64 +installed = menu-cache-1.1.1-2-x86_64 +installed = mercurial-7.2.2-1-x86_64 +installed = mesa-1:26.1.2-1-x86_64 +installed = mesa-utils-9.0.0-7-x86_64 +installed = meson-1.11.1-3-any +installed = messagelib-26.04.2-1-x86_64 +installed = micromamba-bin-2.8.0.0-1-x86_64 +installed = micropolis-git-r113.f46cb0f-1-x86_64 +installed = milou-6.6.5-1-x86_64 +installed = mingw-w64-binutils-2.46.0-1-x86_64 +installed = mingw-w64-crt-14.0.0-1-any +installed = mingw-w64-gcc-16.1.0-1-x86_64 +installed = mingw-w64-headers-14.0.0-1-any +installed = mingw-w64-winpthreads-14.0.0-1-any +installed = minicom-2.11.1-3-x86_64 +installed = miniupnpc-2.3.3-3-x86_64 +installed = minizip-1:1.3.2-3-x86_64 +installed = minizip-ng-4.2.1-1-x86_64 +installed = mjpegtools-2.2.1-4-x86_64 +installed = mkinitcpio-41-4-any +installed = mkinitcpio-busybox-1.36.1-1-x86_64 +installed = mlt-7.38.0-1-x86_64 +installed = mobile-broadband-provider-info-20251101-1-any +installed = mod_dnssd-0.6-10-x86_64 +installed = modemmanager-1.24.2-1-x86_64 +installed = modemmanager-qt-6.26.0-1-x86_64 +installed = mono-6.12.0.206-1-x86_64 +installed = mousepad-0.7.0-1-x86_64 +installed = movit-1.7.2-2-x86_64 +installed = mp3splt-2.6.3.1519+r2+g4b48268-3-x86_64 +installed = mp3wrap-0.5-7-x86_64 +installed = mpdecimal-4.0.1-3-x86_64 +installed = mpfr-4.2.2-1-x86_64 +installed = mpg123-1.33.5-1-x86_64 +installed = mplayer-38542-6-x86_64 +installed = mpv-1:0.41.0-3-x86_64 +installed = ms-sys-1:2.8.0-1-x86_64 +installed = mtdev-1.1.7-1-x86_64 +installed = mtools-1:4.0.49-1-x86_64 +installed = mtr-0.96-1-x86_64 +installed = muffin-6.6.3-1-x86_64 +installed = mujs-1.3.9-1-x86_64 +installed = multipath-tools-0.14.3-1-x86_64 +installed = muparser-2.3.5-2-x86_64 +installed = mutter-50.2-2-x86_64 +installed = mypaint-brushes-2.0.2-2-any +installed = mypaint-brushes1-1.3.1-2-any +installed = namcap-3.6.0-3-any +installed = nanobind-2.12.0-3-any +installed = nasm-3.01-1-x86_64 +installed = nautilus-50.2.2-1-x86_64 +installed = nautilus-python-4.1.0-3-x86_64 +installed = ncurses-6.6-2-x86_64 +installed = ndctl-84-1-x86_64 +installed = nemo-6.6.4-1-x86_64 +installed = nemo-python-6.6.0-4-x86_64 +installed = nemo-terminal-6.6.0-4-x86_64 +installed = neofetch-7.1.0-2-any +installed = neon-0.37.1-1-x86_64 +installed = net-snmp-5.9.5.2-1-x86_64 +installed = net-tools-2.10-3-x86_64 +installed = netctl-1.29-2-any +installed = netpbm-10.86.49-3-x86_64 +installed = nettle-4.0-1-x86_64 +installed = network-manager-applet-1.36.0-2-x86_64 +installed = networkmanager-1.56.1-1-x86_64 +installed = networktablet-1.5-3-x86_64 +installed = nextcloud-33.0.5-1-any +installed = nextcloud-app-spreed-1:23.0.6-1-any +installed = nextcloud-app-talk_matterbridge-1.33.1026000-1-any +installed = nextcloud-client-2:33.0.5-1-x86_64 +installed = nfs-utils-2.9.1-1-x86_64 +installed = nfsidmap-2.9.1-1-x86_64 +installed = nftables-1:1.1.6-3-x86_64 +installed = ngspice-46-2-x86_64 +installed = ninja-1.13.2-3-x86_64 +installed = nlohmann-json-3.12.0-2-any +installed = nm-connection-editor-1.36.0-2-x86_64 +installed = node-gyp-12.4.0-1-any +installed = nodejs-26.2.0-1-x86_64 +installed = nodejs-nopt-10.0.1-1-any +installed = noise-suppression-for-voice-1.20-1-x86_64 +installed = nordic-theme-2.2.0-1-any +installed = noto-fonts-1:2026.06.01-1-any +installed = noto-fonts-emoji-1:2.051-1-any +installed = notparadoxlauncher-1.3.1-4-x86_64 +installed = notparadoxlauncher-debug-1.3.1-4-x86_64 +installed = npm-11.16.0-1-any +installed = npth-1.8-1-x86_64 +installed = nrg2iso-0.4.1-3-x86_64 +installed = nspr-4.39-1-x86_64 +installed = nss-3.124-1-x86_64 +installed = nss-mdns-0.15.1-2-x86_64 +installed = ntfs-3g-2026.2.25-1-x86_64 +installed = ntp-4.2.8.p18-6-x86_64 +installed = numactl-2.0.19-1-x86_64 +installed = nvidia-container-toolkit-1.19.1-1-x86_64 +installed = nvidia-open-dkms-610.43.02-2-x86_64 +installed = nvidia-settings-610.43.02-1-x86_64 +installed = nvidia-utils-610.43.02-2-x86_64 +installed = nvm-0.40.4-1-any +installed = obconf-qt-0.16.6-1-x86_64 +installed = obs-studio-git-32.1.0.r13.g1159bc8-1-x86_64 +installed = obs-teleport-0.7.5-1-x86_64 +installed = obs-teleport-debug-0.7.5-1-x86_64 +installed = obs-vkcapture-1.5.6-1-x86_64 +installed = obs-vkcapture-debug-1.5.3-1-x86_64 +installed = ocean-sound-theme-6.6.5-1-any +installed = ocl-icd-2.3.4-1-x86_64 +installed = ocs-url-3.1.0-7-x86_64 +installed = onetbb-2023.0.0-1-x86_64 +installed = oniguruma-6.9.10-1-x86_64 +installed = openal-1.25.2-1-x86_64 +installed = openblas-0.3.33-1-x86_64 +installed = openbox-3.6.1-14-x86_64 +installed = opencamlib-2023.01.11-4-x86_64 +installed = opencascade-1:7.9.3-3-x86_64 +installed = opencl-headers-2:2025.07.22-1-any +installed = opencl-nvidia-610.43.02-2-x86_64 +installed = opencolorio-2.5.1-1-x86_64 +installed = opencore-amr-0.1.6-2-x86_64 +installed = opencv-4.13.0-9-x86_64 +installed = openexr-3.4.12-1-x86_64 +installed = openh264-2.6.0-2-x86_64 +installed = openimagedenoise-2.4.1-2-x86_64 +installed = openimageio-3.1.12.1-1-x86_64 +installed = openjpeg2-2.5.4-1-x86_64 +installed = openjph-0.27.4-1-x86_64 +installed = openmp-22.1.6-1-x86_64 +installed = openmpi-5.0.10-2-x86_64 +installed = openpace-1.1.4-2-x86_64 +installed = openpgl-0.7.1-1-x86_64 +installed = openpmix-5.0.10-2-x86_64 +installed = openresolv-3.17.4-1-any +installed = opensc-0.27.1-2-x86_64 +installed = openshadinglanguage-1.15.3.0-1-x86_64 +installed = opensp-1.5.2-11-x86_64 +installed = openssh-10.3p1-1-x86_64 +installed = openssl-3.6.2-2-x86_64 +installed = openssl-1.1-1.1.1.w-9-x86_64 +installed = opensubdiv-3.7.0-1-x86_64 +installed = opentimelineio-0.18.1-3-x86_64 +installed = opentrack-git-1:2024.1.1+r6883.20250506.6aae7665-1-x86_64 +installed = openucx-1.20.1-1-x86_64 +installed = openvdb-13.0.0-1-x86_64 +installed = openvpn-2.7.4-1-x86_64 +installed = openvr-2.12.14-1-x86_64 +installed = openxr-1.1.60-1-x86_64 +installed = optipng-7.9.1-1-x86_64 +installed = opus-1.6.1-1-x86_64 +installed = opusfile-0.12-4-x86_64 +installed = orc-0.4.42-1-x86_64 +installed = orca-50.2-1-any +installed = os-prober-1.84-1-x86_64 +installed = osinfo-db-20251212-1-any +installed = ostree-2025.7-3-x86_64 +installed = p11-kit-0.26.2-1-x86_64 +installed = packagekit-1.3.5-1-x86_64 +installed = packagekit-qt5-1.1.3-1-x86_64 +installed = pacman-7.1.0.r9.g54d9411-2-x86_64 +installed = pacman-mirrorlist-20260406-1-any +installed = pahole-1:1.31-2-x86_64 +installed = pam-1.7.2-2-x86_64 +installed = pamac-all-11.7.5-1-x86_64 +installed = pamac-all-git-debug-1:1.7.1.r1.g61b7570-1-x86_64 +installed = pamac-cli-11.7.4-1-x86_64 +installed = pambase-20250719-1-any +installed = pango-1:1.57.1-1-x86_64 +installed = pangomm-2.46.4-3-x86_64 +installed = pangomm-2.48-2.56.1-2-x86_64 +installed = papirus-icon-theme-20250501-1-any +installed = paprefs-1.2-3-x86_64 +installed = parted-3.7-1-x86_64 +installed = passim-0.1.11-1-x86_64 +installed = patch-2.8-1-x86_64 +installed = patchelf-0.18.0-4-x86_64 +installed = pavucontrol-1:6.2-1-x86_64 +installed = pavucontrol-qt-2.4.0-1-x86_64 +installed = pcaudiolib-1.3-1-x86_64 +installed = pciutils-3.15.0-1-x86_64 +installed = pcmanfm-1.4.0-2-x86_64 +installed = pcmanfm-qt-2.4.0-1-x86_64 +installed = pcre-8.45-4-x86_64 +installed = pcre2-10.47-1-x86_64 +installed = pcsclite-2.5.0-1-x86_64 +installed = perl-5.42.2-1-x86_64 +installed = perl-alien-build-2.84-4-any +installed = perl-alien-libxml2-0.20-5-any +installed = perl-archive-cpio-0.10-12-any +installed = perl-archive-zip-1.68-12-any +installed = perl-bytes-random-secure-0.29-15-any +installed = perl-capture-tiny-0.50-4-any +installed = perl-class-inspector-1.36-10-any +installed = perl-clone-0.50-1-x86_64 +installed = perl-crypt-openssl-bignum-0.09-12-x86_64 +installed = perl-crypt-openssl-random-0.17-3-x86_64 +installed = perl-crypt-openssl-rsa-0.41-1-x86_64 +installed = perl-crypt-random-seed-0.03-13-any +installed = perl-crypt-ssleay-0.73_06-7-x86_64 +installed = perl-cryptx-0.089-1-x86_64 +installed = perl-data-optlist-0.114-7-any +installed = perl-dbi-1.647-2-x86_64 +installed = perl-digest-hmac-1.05-3-any +installed = perl-digest-sha1-2.13-22-x86_64 +installed = perl-encode-locale-1.05-15-any +installed = perl-error-0.17030-3-any +installed = perl-ffi-checklib-0.31-8-any +installed = perl-file-chdir-0.1011-6-any +installed = perl-file-listing-6.16-6-any +installed = perl-file-sharedir-1.118-8-any +installed = perl-file-which-1.27-8-any +installed = perl-html-parser-3.85-1-x86_64 +installed = perl-html-tagset-3.24-4-any +installed = perl-http-cookiejar-0.014-5-any +installed = perl-http-cookies-6.11-4-any +installed = perl-http-daemon-6.17-1-any +installed = perl-http-date-6.06-5-any +installed = perl-http-message-7.02-1-any +installed = perl-http-negotiate-6.01-16-any +installed = perl-io-html-1.004-8-any +installed = perl-io-socket-inet6-2.73-7-any +installed = perl-io-socket-ssl-2.098-1-any +installed = perl-json-4.11-1-any +installed = perl-libintl-perl-1.37-1-x86_64 +installed = perl-libwww-6.83-1-any +installed = perl-locale-gettext-1.07-16-x86_64 +installed = perl-lwp-mediatypes-6.04-8-any +installed = perl-lwp-protocol-https-6.15-1-any +installed = perl-mail-authenticationresults-2.20260216-1-any +installed = perl-mail-dkim-1.20240923-3-any +installed = perl-mail-spf-3.20260331-1-any +installed = perl-mailtools-2.22-3-any +installed = perl-math-random-isaac-1.004-14-any +installed = perl-mime-charset-1.013.1-6-any +installed = perl-net-dns-1.54-1-any +installed = perl-net-http-6.24-2-any +installed = perl-net-ip-1.26-16-any +installed = perl-net-ssleay-1.96-1-x86_64 +installed = perl-netaddr-ip-4.079-17-x86_64 +installed = perl-params-util-1.102-7-x86_64 +installed = perl-path-class-0.37-13-any +installed = perl-path-tiny-0.150-2-any +installed = perl-pod-parser-1.67-4-any +installed = perl-socket6-0.29-11-x86_64 +installed = perl-sub-exporter-0.991-4-any +installed = perl-sub-install-0.929-4-any +installed = perl-sub-override-0.12-3-any +installed = perl-sub-prototype-0.03-3-x86_64 +installed = perl-term-readkey-2.38-11-x86_64 +installed = perl-text-bibtex-0.91-2-x86_64 +installed = perl-timedate-2.35-1-any +installed = perl-try-tiny-0.32-4-any +installed = perl-unicode-linebreak-2019.001-9-x86_64 +installed = perl-uri-5.34-2-any +installed = perl-www-robotrules-6.03-1-any +installed = perl-xml-libxml-2.0213-1-x86_64 +installed = perl-xml-namespacesupport-1.12-6-any +installed = perl-xml-parser-2.59-1-x86_64 +installed = perl-xml-sax-1.02-2-any +installed = perl-xml-sax-base-1.09-6-any +installed = perl-xml-writer-0.900-6-any +installed = perl-yaml-tiny-1.76-3-any +installed = persepolis-5.2.0-3-any +installed = phodav-3.0-4-x86_64 +installed = phonon-qt6-4.12.0-6-x86_64 +installed = phonon-qt6-vlc-0.12.0-6-x86_64 +installed = php-8.5.7-1-x86_64 +installed = php-apache-8.5.7-1-x86_64 +installed = php-gd-8.5.7-1-x86_64 +installed = php-legacy-8.3.31-1-x86_64 +installed = php-legacy-gd-8.3.31-1-x86_64 +installed = php-sqlite-8.5.7-1-x86_64 +installed = pico-sdk-2.2.0-3-any +installed = picocom-3.1-3-x86_64 +installed = pimcommon-26.04.2-1-x86_64 +installed = pinentry-1.3.2-2-x86_64 +installed = piper-tts-bin-2023.11.14-1-x86_64 +installed = pipewire-1:1.6.6-1-x86_64 +installed = pipewire-alsa-1:1.6.6-1-x86_64 +installed = pipewire-audio-1:1.6.6-1-x86_64 +installed = pipewire-jack-1:1.6.6-1-x86_64 +installed = pipewire-pulse-1:1.6.6-1-x86_64 +installed = pipewire-session-manager-1:1.6.6-1-x86_64 +installed = pixman-0.46.4-1-x86_64 +installed = pkcs11-helper-1.31.0-1-x86_64 +installed = pkgconf-2.5.1-1-x86_64 +installed = pkgfile-25-2-x86_64 +installed = plasma-activities-6.6.5-1-x86_64 +installed = plasma-activities-stats-6.6.5-1-x86_64 +installed = plasma-desktop-6.6.5-1-x86_64 +installed = plasma-integration-6.6.5-2-x86_64 +installed = plasma-workspace-6.6.5-2-x86_64 +installed = plasma5support-6.6.5-1-x86_64 +installed = plotutils-2.6-12-x86_64 +installed = plymouth-26.134.222-2-x86_64 +installed = pngcheck-4.0.0-3-x86_64 +installed = po-debconf-1.0.22-2-any +installed = po4a-0.74-1-any +installed = polkit-127-3-x86_64 +installed = polkit-gnome-0.105-12-x86_64 +installed = polkit-kde-agent-6.6.5-1-x86_64 +installed = polkit-qt5-0.201.1-1-x86_64 +installed = polkit-qt6-0.201.1-1-x86_64 +installed = polyclipping-6.4.2-6-x86_64 +installed = polyclipping-debug-6.4.2-5-x86_64 +installed = poppler-26.05.0-1-x86_64 +installed = poppler-data-0.4.12-2-any +installed = poppler-glib-26.05.0-1-x86_64 +installed = poppler-qt6-26.05.0-1-x86_64 +installed = popt-1.19-2-x86_64 +installed = portaudio-1:19.7.0-4-x86_64 +installed = portmidi-1:2.0.8-1-x86_64 +installed = portsmf-234-3-x86_64 +installed = postgresql-18.4-1-x86_64 +installed = postgresql-libs-18.4-1-x86_64 +installed = potrace-1.16-5-x86_64 +installed = power-profiles-daemon-0.30-1-x86_64 +installed = powerdevil-6.6.5-1-x86_64 +installed = ppp-2.5.2-1-x86_64 +installed = prison-6.26.0-1-x86_64 +installed = procps-ng-4.0.6-1-x86_64 +installed = projectm-3.1.12-5-x86_64 +installed = protobuf-35.0-1-x86_64 +installed = protobuf-c-1.5.2-10-x86_64 +installed = proton-ge-custom-bin-1:GE_Proton10_34-1-x86_64 +installed = protontricks-1.14.1-1-any +installed = prrte-3.0.13-1-x86_64 +installed = psensor-1.2.1-4-x86_64 +installed = psmisc-23.7-2-x86_64 +installed = pstoedit-4.3-1-x86_64 +installed = ptex-2.5.2-1-x86_64 +installed = pugixml-1.15-3-x86_64 +installed = pulseaudio-alsa-1:1.2.12-5-x86_64 +installed = pulseaudio-qt-1.8.1-1-x86_64 +installed = purpose-6.26.0-2-x86_64 +installed = pv-1.10.5-1-x86_64 +installed = pwvucontrol-0.5.2-1-x86_64 +installed = pwvucontrol-debug-0.5.1-1-x86_64 +installed = pyalpm-0.11.1-1-x86_64 +installed = pybind11-3.0.4-1-any +installed = pyside6-6.11.1-1-x86_64 +installed = pystring-1.1.5-1-x86_64 +installed = python-3.14.5-1-x86_64 +installed = python-aaf2-1.7.1-4-any +installed = python-aiohappyeyeballs-2.6.1-4-any +installed = python-aiohttp-3.13.5-1-x86_64 +installed = python-aiosignal-1.4.0-3-any +installed = python-annotated-doc-0.0.4-2-any +installed = python-annotated-types-0.7.0-3-any +installed = python-anyascii-0.3.3-1-any +installed = python-anyio-4.13.0-1-any +installed = python-appdirs-1.4.4-12-any +installed = python-argcomplete-3.6.3-1-any +installed = python-asgiref-3.11.1-1-any +installed = python-async-timeout-5.0.1-2-any +installed = python-atspi-2.58.2-1-any +installed = python-attrs-26.1.0-1-any +installed = python-audioop-lts-0.2.2-2-x86_64 +installed = python-audioread-3.1.0-3-any +installed = python-autocommand-2.2.2-9-any +installed = python-babel-2.17.0-3-any +installed = python-beaker-1.14.1-1-any +installed = python-beautifulsoup4-4.15.0-1-any +installed = python-black-26.5.1-1-any +installed = python-blinker-1.9.0-4-any +installed = python-boolean.py-5.0-2-any +installed = python-boto3-1.42.91-1-any +installed = python-botocore-1.42.91-1-any +installed = python-breathe-5.0.0a5-3-any +installed = python-brltty-6.9.1-1-x86_64 +installed = python-brotli-1.2.0-1-x86_64 +installed = python-build-1.4.3-1-any +installed = python-cachecontrol-1:0.14.4-3-any +installed = python-cairo-1.29.0-2-x86_64 +installed = python-cairocffi-1.7.1-2-any +installed = python-caja-1.28.0-4-x86_64 +installed = python-certifi-2026.05.20-1-any +installed = python-cffi-2.0.0-2-x86_64 +installed = python-chardet-6.0.0.post1-1-any +installed = python-charset-normalizer-3.4.7-1-x86_64 +installed = python-click-8.3.3-1-any +installed = python-colorama-0.4.6-6-any +installed = python-configobj-5.0.9-6-any +installed = python-contourpy-1.3.3-4-x86_64 +installed = python-coqpit-config-0.2.0-1-any +installed = python-coqui-trainer-0.3.2-1-any +installed = python-coverage-7.13.5-1-x86_64 +installed = python-cryptography-48.0.0-1-x86_64 +installed = python-cssselect-1.4.0-1-any +installed = python-cycler-0.12.1-4-any +installed = python-dasbus-1.7-5-any +installed = python-datasets-5.0.0-1-any +installed = python-dateutil-2.9.0-8-any +installed = python-dbus-1.4.0-2-x86_64 +installed = python-decorator-5.3.1-1-any +installed = python-defusedxml-0.7.1-8-any +installed = python-dill-0.4.1-1-any +installed = python-distlib-0.4.1-1-any +installed = python-distro-1.9.0-4-any +installed = python-distutils-extra-2.39-15-any +installed = python-django-5.2.13-1-any +installed = python-django-celery-results-2.6.0-2-any +installed = python-dnspython-1:2.8.0-3-any +installed = python-docopt-0.6.2-15-any +installed = python-docstring-to-markdown-0.17-2-any +installed = python-docutils-1:0.22.4-1-any +installed = python-dulwich-1.1.0-1-x86_64 +installed = python-edge-tts-7.2.8-1-any +installed = python-editables-0.6-1-any +installed = python-einops-0.8.2-1-any +installed = python-evdev-1.9.3-1-x86_64 +installed = python-eventlet-0.41.0-1-any +installed = python-fastbencode-0.3.10-1-x86_64 +installed = python-fastjsonschema-2.21.2-2-any +installed = python-filelock-3.29.0-1-any +installed = python-flask-3.1.3-1-any +installed = python-flit-core-4.0.0-1-any +installed = python-fonttools-4.63.0-1-x86_64 +installed = python-freezegun-1.5.5-2-any +installed = python-frozenlist-1.8.0-2-x86_64 +installed = python-fsspec-2026.4.0-1-any +installed = python-gbinder-1.3.1-1-x86_64 +installed = python-gevent-26.5.0-1-x86_64 +installed = python-gmpy2-2.3.0-1-x86_64 +installed = python-gobject-3.56.3-1-x86_64 +installed = python-greenlet-3.5.1-1-x86_64 +installed = python-grpcio-1.80.0-2-x86_64 +installed = python-grpcio-tools-1.80.0-2-x86_64 +installed = python-h11-0.16.0-2-any +installed = python-h5py-3.16.0-1-x86_64 +installed = python-hatchling-1.29.0-1-any +installed = python-hf-xet-1.5.0-1-x86_64 +installed = python-html2text-2025.4.15-2-any +installed = python-html5lib-1.1-17-any +installed = python-httpcore-1.0.9-3-any +installed = python-httpx-0.28.1-7-any +installed = python-huggingface-hub-1:1.16.0-1-any +installed = python-hypothesis-6.155.1-1-any +installed = python-idna-3.18-1-any +installed = python-imagesize-2.0.0-1-any +installed = python-importlib-metadata-9.0.0-1-any +installed = python-inflect-7.5.0-2-any +installed = python-iniconfig-2.3.0-1-any +installed = python-installer-1.0.0-1-any +installed = python-isodate-0.7.2-3-any +installed = python-itsdangerous-2.2.0-2-any +installed = python-jaraco.collections-5.1.0-3-any +installed = python-jaraco.context-6.1.2-1-any +installed = python-jaraco.functools-4.1.0-3-any +installed = python-jaraco.text-4.0.0-4-any +installed = python-jedi-0.19.2-4-any +installed = python-jinja-1:3.1.6-3-any +installed = python-jmespath-1.1.0-1-any +installed = python-joblib-1.5.3-1-any +installed = python-kiwisolver-1.5.0-1-x86_64 +installed = python-ko-speech-tools-0.1.0-1-any +installed = python-ladybug-core-0.44.48-1-any +installed = python-ladybug-geometry-1.34.26-1-any +installed = python-lark-parser-1.3.1-2-any +installed = python-lazy-loader-0.5-1-any +installed = python-legacy-cgi-2.6.4-2-any +installed = python-lhafile-0.3.1-2-x86_64 +installed = python-librosa-0.11.0-2-any +installed = python-license-expression-30.4.4-2-any +installed = python-llvmlite-0.47.0-1-x86_64 +installed = python-lockfile-0.12.2-15-any +installed = python-lsp-jsonrpc-1.1.2-6-any +installed = python-lsp-server-1.14.0-2-any +installed = python-lxml-6.1.1-1-x86_64 +installed = python-magic-1:0.4.27-6-any +installed = python-mako-1.3.11-1-any +installed = python-markdown-3.10.2-1-any +installed = python-markdown-it-py-4.0.0-2-any +installed = python-markupsafe-3.0.3-1-x86_64 +installed = python-matplotlib-3.10.9-1-x86_64 +installed = python-maturin-1.13.3-1-x86_64 +installed = python-mdurl-0.1.2-9-any +installed = python-merge3-0.0.16-2-any +installed = python-moddb-0.14.0-2-any +installed = python-monotonic-alignment-search-0.2.1-1-x86_64 +installed = python-more-itertools-11.1.0-1-any +installed = python-moto-5.1.22-1-any +installed = python-mpmath-1.4.1-1-any +installed = python-msgpack-1.1.2-2-x86_64 +installed = python-multidict-6.7.1-1-x86_64 +installed = python-multiprocess-0.70.19-1-any +installed = python-mypy_extensions-1.1.0-2-any +installed = python-networkx-3.6.1-1-any +installed = python-nose-1.3.7-19-any +installed = python-num2words-0.5.14-3-any +installed = python-numba-0.65.1-1-x86_64 +installed = python-numpy-2.4.6-1-x86_64 +installed = python-opencv-4.13.0-9-x86_64 +installed = python-opengl-3.1.10-3-any +installed = python-outcome-1.3.0.post0-7-any +installed = python-packaging-26.2-1-any +installed = python-pam-2.0.2-6-any +installed = python-pandas-2.3.3-2-x86_64 +installed = python-parso-1:0.8.6-1-any +installed = python-pathspec-1.1.1-1-any +installed = python-patiencediff-0.2.18-2-x86_64 +installed = python-pbr-7.0.3-3-any +installed = python-pexpect-4.9.0-7-any +installed = python-pillow-12.2.0-1-x86_64 +installed = python-pip-26.1.2-1-any +installed = python-pipx-1.14.0-1-any +installed = python-pkg_resources-81.0.0-1-any +installed = python-platformdirs-4.10.0-1-any +installed = python-pluggy-1.6.0-3-any +installed = python-poetry-core-2.4.1-1-any +installed = python-pooch-1.9.0-1-any +installed = python-prettytable-3.17.0-2-any +installed = python-propcache-0.4.1-2-x86_64 +installed = python-protobuf-35.0-1-x86_64 +installed = python-psutil-7.2.2-1-x86_64 +installed = python-ptyprocess-0.7.0-9-any +installed = python-pyarrow-24.0.0-1-x86_64 +installed = python-pycountry-24.6.1-5-any +installed = python-pycparser-3.00-1-any +installed = python-pycryptodome-3.23.0-2-x86_64 +installed = python-pycups-2.0.4-4-x86_64 +installed = python-pycurl-7.46.0-1-x86_64 +installed = python-pydantic-2.13.4-1-any +installed = python-pydantic-core-3:2.46.4-1-x86_64 +installed = python-pyelftools-0.33-1-any +installed = python-pygments-2.20.0-1-any +installed = python-pyinotify-0.9.6-16-any +installed = python-pymongo-4.16.0-2-x86_64 +installed = python-pyparsing-3.3.2-1-any +installed = python-pyproject-hooks-1.2.0-6-any +installed = python-pyqt5-5.15.11-7-x86_64 +installed = python-pyqt5-sip-12.18.0-1-x86_64 +installed = python-pyqt6-6.11.0-2-x86_64 +installed = python-pyqt6-sip-13.11.1-1-x86_64 +installed = python-pyro-4.82-6-any +installed = python-pysbd-0.3.4-00-any +installed = python-pyserial-3.5-8-any +installed = python-pysocks-1.7.1-12-any +installed = python-pytest-1:9.0.3-1-any +installed = python-pytest-asyncio-1.3.0-1-any +installed = python-pytest-click-1.1.0-6-any +installed = python-pytest-cov-7.1.0-1-any +installed = python-pytest-freezer-0.4.9-2-any +installed = python-pytest-subtests-0.15.0-2-any +installed = python-pytest-sugar-1.1.1-2-any +installed = python-pytest-timeout-2.4.0-2-any +installed = python-python-discovery-1.4.0-1-any +installed = python-pytokens-0.4.1-1-any +installed = python-pytorch-2.12.0-3-x86_64 +installed = python-pytz-2026.1-1-any +installed = python-pyudev-0.24.4-1-any +installed = python-pyxdg-0.28-7-any +installed = python-pyzmq-27.1.0-2-x86_64 +installed = python-redis-8.0.0-1-any +installed = python-regex-2026.5.9-1-x86_64 +installed = python-requests-2.34.2-1-any +installed = python-requests-file-2.1.0-3-any +installed = python-resampy-0.4.3-4-any +installed = python-responses-0.26.1-1-any +installed = python-rich-15.0.0-1-any +installed = python-roman-numerals-py-3.1.0-2-any +installed = python-s3transfer-0.16.0-2-any +installed = python-safetensors-0.7.0-2-x86_64 +installed = python-scenedetect-0.6.5-1-any +installed = python-scikit-learn-1.9.0-1-x86_64 +installed = python-scipy-1.17.1-2-x86_64 +installed = python-semantic-version-2.10.0-9-any +installed = python-sentry_sdk-2.61.1-1-any +installed = python-serpent-1.43-1-any +installed = python-setproctitle-1.3.7-2-x86_64 +installed = python-setuptools-1:82.0.1-1-any +installed = python-setuptools-rust-1.12.1-1-any +installed = python-setuptools-scm-10.0.5-1-any +installed = python-shellingham-1.5.4-4-any +installed = python-six-1.17.0-3-any +installed = python-smartypants-2.0.2-2-any +installed = python-sniffio-1.3.1-5-any +installed = python-snowballstemmer-3.1.1-1-any +installed = python-sortedcontainers-2.4.0-8-any +installed = python-soundfile-0.13.1-1-any +installed = python-soupsieve-2.8.4-1-any +installed = python-soxr-1.1.0-2-x86_64 +installed = python-sphinx-9.1.0-1-any +installed = python-sphinx-alabaster-theme-1.0.0-6-any +installed = python-sphinx_rtd_theme-3.0.0-1-any +installed = python-sphinxcontrib-applehelp-2.0.0-5-any +installed = python-sphinxcontrib-devhelp-2.0.0-6-any +installed = python-sphinxcontrib-htmlhelp-2.1.0-5-any +installed = python-sphinxcontrib-jquery-4.1-5-any +installed = python-sphinxcontrib-jsmath-1.0.1-21-any +installed = python-sphinxcontrib-qthelp-2.0.0-5-any +installed = python-sphinxcontrib-serializinghtml-2.0.0-5-any +installed = python-sqlalchemy-2.0.50-1-x86_64 +installed = python-sqlparse-0.5.3-2-any +installed = python-srt-3.5.3-3-any +installed = python-standard-aifc-3.13.0-4-any +installed = python-standard-chunk-3.13.0-4-any +installed = python-standard-sunau-3.13.0-4-any +installed = python-sympy-1.14.0-6-any +installed = python-tabulate-0.10.0-1-any +installed = python-tensorboardx-2.6.5-1-any +installed = python-termcolor-3.3.0-1-any +installed = python-threadpoolctl-3.5.0-3-any +installed = python-tinycss2-1.5.1-2-any +installed = python-tldextract-5.3.1-2-any +installed = python-tokenizers-0.23.1-1-x86_64 +installed = python-torchaudio-2.10.0-1-x86_64 +installed = python-torchcodec-0.14.0-1-x86_64 +installed = python-tqdm-4.68.1-1-any +installed = python-transformers-5.7.0-1-any +installed = python-trio-0.33.0-1-any +installed = python-trio-websocket-0.12.2-4-any +installed = python-trove-classifiers-2026.6.1.19-1-any +installed = python-typeguard-4.5.2-1-any +installed = python-typer-0.26.7-1-any +installed = python-typing-inspection-0.4.2-2-any +installed = python-typing_extensions-4.15.0-3-any +installed = python-typogrify-2.1.0-2-any +installed = python-tzlocal-1:5.3.1-2-any +installed = python-uc-micro-py-2.0.0-1-any +installed = python-ujson-5.12.1-1-x86_64 +installed = python-urllib3-2.7.0-1-any +installed = python-userpath-1.9.2-4-any +installed = python-uv-build-0.11.19-1-x86_64 +installed = python-vcs-versioning-1.1.1-1-any +installed = python-vdf-4.0-5-any +installed = python-virtualenv-21.4.2-1-any +installed = python-wcwidth-0.8.0-1-any +installed = python-webencodings-0.5.1-13-any +installed = python-websocket-client-1.9.0-3-any +installed = python-websockets-16.0-1-x86_64 +installed = python-werkzeug-3.1.8-1-any +installed = python-wheel-0.47.0-1-any +installed = python-wsproto-1.3.2-1-any +installed = python-wxpython-1:4.2.5-1-x86_64 +installed = python-xapp-3.0.3-1-any +installed = python-xmltodict-1.0.4-1-any +installed = python-xxhash-3.7.0-1-x86_64 +installed = python-yaml-6.0.3-2-x86_64 +installed = python-yarl-1.23.0-1-x86_64 +installed = python-zipp-3.21.0-4-any +installed = python-zope-event-6.2-1-any +installed = python-zope-interface-8.4-1-x86_64 +installed = python-zstandard-0.25.0-2-x86_64 +installed = python310-3.10.19-1-x86_64 +installed = python311-3.11.14-1-x86_64 +installed = qca-qt5-2.3.10-7-x86_64 +installed = qca-qt6-2.3.10-7-x86_64 +installed = qcoro-0.13.0-2-x86_64 +installed = qcustomplot-2.1.1-2-x86_64 +installed = qemu-audio-alsa-11.0.1-1-x86_64 +installed = qemu-audio-dbus-11.0.1-1-x86_64 +installed = qemu-audio-jack-11.0.1-1-x86_64 +installed = qemu-audio-oss-11.0.1-1-x86_64 +installed = qemu-audio-pa-11.0.1-1-x86_64 +installed = qemu-audio-pipewire-11.0.1-1-x86_64 +installed = qemu-audio-sdl-11.0.1-1-x86_64 +installed = qemu-audio-spice-11.0.1-1-x86_64 +installed = qemu-base-11.0.1-1-x86_64 +installed = qemu-block-curl-11.0.1-1-x86_64 +installed = qemu-block-dmg-11.0.1-1-x86_64 +installed = qemu-block-gluster-11.0.1-1-x86_64 +installed = qemu-block-iscsi-11.0.1-1-x86_64 +installed = qemu-block-nfs-11.0.1-1-x86_64 +installed = qemu-block-ssh-11.0.1-1-x86_64 +installed = qemu-chardev-baum-11.0.1-1-x86_64 +installed = qemu-chardev-spice-11.0.1-1-x86_64 +installed = qemu-common-11.0.1-1-x86_64 +installed = qemu-desktop-11.0.1-1-x86_64 +installed = qemu-docs-11.0.1-1-x86_64 +installed = qemu-emulators-full-11.0.1-1-x86_64 +installed = qemu-full-11.0.1-1-x86_64 +installed = qemu-hw-display-qxl-11.0.1-1-x86_64 +installed = qemu-hw-display-virtio-gpu-11.0.1-1-x86_64 +installed = qemu-hw-display-virtio-gpu-gl-11.0.1-1-x86_64 +installed = qemu-hw-display-virtio-gpu-pci-11.0.1-1-x86_64 +installed = qemu-hw-display-virtio-gpu-pci-gl-11.0.1-1-x86_64 +installed = qemu-hw-display-virtio-gpu-pci-rutabaga-11.0.1-1-x86_64 +installed = qemu-hw-display-virtio-gpu-rutabaga-11.0.1-1-x86_64 +installed = qemu-hw-display-virtio-vga-11.0.1-1-x86_64 +installed = qemu-hw-display-virtio-vga-gl-11.0.1-1-x86_64 +installed = qemu-hw-display-virtio-vga-rutabaga-11.0.1-1-x86_64 +installed = qemu-hw-s390x-virtio-gpu-ccw-11.0.1-1-x86_64 +installed = qemu-hw-uefi-vars-11.0.1-1-x86_64 +installed = qemu-hw-usb-host-11.0.1-1-x86_64 +installed = qemu-hw-usb-redirect-11.0.1-1-x86_64 +installed = qemu-hw-usb-smartcard-11.0.1-1-x86_64 +installed = qemu-img-11.0.1-1-x86_64 +installed = qemu-pr-helper-11.0.1-1-x86_64 +installed = qemu-system-aarch64-11.0.1-1-x86_64 +installed = qemu-system-alpha-11.0.1-1-x86_64 +installed = qemu-system-alpha-firmware-11.0.1-1-x86_64 +installed = qemu-system-arm-11.0.1-1-x86_64 +installed = qemu-system-arm-firmware-11.0.1-1-x86_64 +installed = qemu-system-avr-11.0.1-1-x86_64 +installed = qemu-system-hppa-11.0.1-1-x86_64 +installed = qemu-system-hppa-firmware-11.0.1-1-x86_64 +installed = qemu-system-loongarch64-11.0.1-1-x86_64 +installed = qemu-system-m68k-11.0.1-1-x86_64 +installed = qemu-system-microblaze-11.0.1-1-x86_64 +installed = qemu-system-microblaze-firmware-11.0.1-1-x86_64 +installed = qemu-system-mips-11.0.1-1-x86_64 +installed = qemu-system-or1k-11.0.1-1-x86_64 +installed = qemu-system-ppc-11.0.1-1-x86_64 +installed = qemu-system-ppc-firmware-11.0.1-1-x86_64 +installed = qemu-system-riscv-11.0.1-1-x86_64 +installed = qemu-system-riscv-firmware-11.0.1-1-x86_64 +installed = qemu-system-rx-11.0.1-1-x86_64 +installed = qemu-system-s390x-11.0.1-1-x86_64 +installed = qemu-system-s390x-firmware-11.0.1-1-x86_64 +installed = qemu-system-sh4-11.0.1-1-x86_64 +installed = qemu-system-sparc-11.0.1-1-x86_64 +installed = qemu-system-sparc-firmware-11.0.1-1-x86_64 +installed = qemu-system-tricore-11.0.1-1-x86_64 +installed = qemu-system-x86-11.0.1-1-x86_64 +installed = qemu-system-x86-firmware-11.0.1-1-x86_64 +installed = qemu-system-xtensa-11.0.1-1-x86_64 +installed = qemu-tests-11.0.1-1-x86_64 +installed = qemu-tools-11.0.1-1-x86_64 +installed = qemu-ui-curses-11.0.1-1-x86_64 +installed = qemu-ui-dbus-11.0.1-1-x86_64 +installed = qemu-ui-egl-headless-11.0.1-1-x86_64 +installed = qemu-ui-gtk-11.0.1-1-x86_64 +installed = qemu-ui-opengl-11.0.1-1-x86_64 +installed = qemu-ui-sdl-11.0.1-1-x86_64 +installed = qemu-ui-spice-app-11.0.1-1-x86_64 +installed = qemu-ui-spice-core-11.0.1-1-x86_64 +installed = qemu-user-11.0.1-1-x86_64 +installed = qemu-vhost-user-gpu-11.0.1-1-x86_64 +installed = qemu-vmsr-helper-11.0.1-1-x86_64 +installed = qgpgme-2.1.0-1-x86_64 +installed = qhexedit2-0.8.9-2-x86_64 +installed = qhull-2020.2-5-x86_64 +installed = qmmp-2.3.2-1-x86_64 +installed = qogir-gtk-theme-2025.08.17-1-any +installed = qpdf-12.3.2-2-x86_64 +installed = qpwgraph-1.0.2-1-x86_64 +installed = qqc2-breeze-style-6.6.5-1-x86_64 +installed = qqc2-desktop-style-6.26.0-1-x86_64 +installed = qrcodegencpp-cmake-1.8.0-4-x86_64 +installed = qrencode-4.1.1-4-x86_64 +installed = qscintilla-qt5-2.14.1-6-x86_64 +installed = qt5-base-5.15.19+kde+r96-1-x86_64 +installed = qt5-declarative-5.15.19+kde+r23-1-x86_64 +installed = qt5-graphicaleffects-5.15.19-1-x86_64 +installed = qt5-location-5.15.19+kde+r7-1-x86_64 +installed = qt5-multimedia-5.15.19+kde+r2-1-x86_64 +installed = qt5-quick3d-5.15.19+kde+r1-1-x86_64 +installed = qt5-quickcontrols-5.15.19-1-x86_64 +installed = qt5-quickcontrols2-5.15.19+kde+r5-1-x86_64 +installed = qt5-remoteobjects-5.15.19-1-x86_64 +installed = qt5-sensors-5.15.19-2-x86_64 +installed = qt5-serialport-5.15.19-1-x86_64 +installed = qt5-speech-5.15.19+kde+r1-1-x86_64 +installed = qt5-svg-5.15.19+kde+r5-1-x86_64 +installed = qt5-tools-5.15.19+kde+r3-1-x86_64 +installed = qt5-translations-5.15.19-1-any +installed = qt5-wayland-5.15.19+kde+r55-1-x86_64 +installed = qt5-webchannel-5.15.19-1-x86_64 +installed = qt5-webengine-5.15.19-4-x86_64 +installed = qt5-websockets-5.15.19+kde+r2-1-x86_64 +installed = qt5-x11extras-5.15.19-1-x86_64 +installed = qt5-xmlpatterns-5.15.19-1-x86_64 +installed = qt6-5compat-6.11.1-1-x86_64 +installed = qt6-base-6.11.1-1-x86_64 +installed = qt6-charts-6.11.1-1-x86_64 +installed = qt6-connectivity-6.11.1-1-x86_64 +installed = qt6-declarative-6.11.1-3-x86_64 +installed = qt6-doc-6.11.1-1-any +installed = qt6-graphs-6.11.1-1-x86_64 +installed = qt6-imageformats-6.11.1-1-x86_64 +installed = qt6-location-6.11.1-1-x86_64 +installed = qt6-multimedia-6.11.1-1-x86_64 +installed = qt6-multimedia-ffmpeg-6.11.1-1-x86_64 +installed = qt6-networkauth-6.11.1-1-x86_64 +installed = qt6-positioning-6.11.1-1-x86_64 +installed = qt6-quick3d-6.11.1-1-x86_64 +installed = qt6-quicktimeline-6.11.1-1-x86_64 +installed = qt6-scxml-6.11.1-1-x86_64 +installed = qt6-sensors-6.11.1-1-x86_64 +installed = qt6-serialport-6.11.1-1-x86_64 +installed = qt6-shadertools-6.11.1-1-x86_64 +installed = qt6-speech-6.11.1-1-x86_64 +installed = qt6-svg-6.11.1-1-x86_64 +installed = qt6-tools-6.11.1-1-x86_64 +installed = qt6-translations-6.11.1-1-any +installed = qt6-virtualkeyboard-6.11.1-1-x86_64 +installed = qt6-wayland-6.11.1-1-x86_64 +installed = qt6-webchannel-6.11.1-1-x86_64 +installed = qt6-webengine-6.11.1-3-x86_64 +installed = qt6-websockets-6.11.1-1-x86_64 +installed = qt6pas-6.2.10-3-x86_64 +installed = qtcreator-19.0.2-2-x86_64 +installed = qterminal-2.4.0-1-x86_64 +installed = qtermwidget-2.4.0-1-x86_64 +installed = qtkeychain-qt6-0.16.0-1-x86_64 +installed = qtxdg-tools-4.4.0-1-x86_64 +installed = quazip-qt6-1.7.1-1-x86_64 +installed = r8168-dkms-8.056.02-1-x86_64 +installed = ragel-7.0.4-1-x86_64 +installed = rapidjson-1.1.0-6-any +installed = raptor-2.0.16-9-x86_64 +installed = rav1e-0.8.1-2-x86_64 +installed = rclone-1.74.3-1-x86_64 +installed = rconc-0.1.3-1-x86_64 +installed = rdma-core-63.0-1-x86_64 +installed = re2-2:2025.11.05-4-x86_64 +installed = re2c-4.5.1-1-x86_64 +installed = read-edid-3.0.2-5-x86_64 +installed = readline-8.3.003-1-x86_64 +installed = recode-3.7.15-1-x86_64 +installed = recordmydesktop-0.4.0-4-x86_64 +installed = reflector-2023-5-any +installed = remarkable-cups-1-1-any +installed = rhash-1.4.6-1-x86_64 +installed = ripgrep-15.1.0-3-x86_64 +installed = ripgrep-all-0.10.10-1-x86_64 +installed = rmapi-0.0.34-2-x86_64 +installed = rnnoise-1:0.2-1-x86_64 +installed = robin-map-1.4.1-1-x86_64 +installed = rpcbind-1.2.9-1-x86_64 +installed = rpi-imager-2.0.9-1-x86_64 +installed = rsync-3.4.3-1-x86_64 +installed = rtkit-0.14-1-x86_64 +installed = rtmpdump-1:2.6-2-x86_64 +installed = rubberband-4.0.0-2-x86_64 +installed = ruby-3.4.8-2-x86_64 +installed = ruby-abbrev-0.1.2-1-any +installed = ruby-base64-0.3.0-1-any +installed = ruby-bigdecimal-3.3.1-2-x86_64 +installed = ruby-bundled-gems-3.4.8-2-x86_64 +installed = ruby-bundler-4.0.3-1-any +installed = ruby-csv-3.3.5-1-any +installed = ruby-debug-1.11.1-1-x86_64 +installed = ruby-default-gems-3.4.8-2-x86_64 +installed = ruby-drb-2.2.3-1-any +installed = ruby-erb-4.0.4-9-x86_64 +installed = ruby-ffi-1.17.4-1-x86_64 +installed = ruby-getoptlong-0.2.1-1-any +installed = ruby-irb-1.15.0-1-any +installed = ruby-maruku-0.7.3-10-any +installed = ruby-matrix-0.4.3-1-any +installed = ruby-minitest-5.26.1-1-any +installed = ruby-mutex_m-0.3.0-2-any +installed = ruby-net-ftp-0.3.9-1-any +installed = ruby-net-imap-0.5.12-1-any +installed = ruby-net-pop-0.1.2-5-any +installed = ruby-net-smtp-0.5.1-1-any +installed = ruby-nkf-0.2.0-3-x86_64 +installed = ruby-observer-0.1.2-3-any +installed = ruby-power_assert-2.0.5-4-any +installed = ruby-prime-0.1.4-1-any +installed = ruby-racc-1.8.1-2-x86_64 +installed = ruby-rake-13.3.1-1-any +installed = ruby-rb-fsevent-0.11.2-5-any +installed = ruby-rb-inotify-0.10.1-6-any +installed = ruby-rbs-3.8.0-2-any +installed = ruby-rdoc-6.14.0-1-any +installed = ruby-repl_type_completor-0.1.15-1-any +installed = ruby-resolv-replace-0.2.0-1-any +installed = ruby-rexml-3.4.4-1-any +installed = ruby-rinda-0.2.0-2-any +installed = ruby-rss-0.3.2-1-any +installed = ruby-sass-3.7.4-7-any +installed = ruby-sass-listen-4.0.0-13-any +installed = ruby-stdlib-3.4.8-2-x86_64 +installed = ruby-syslog-0.4.0-1-any +installed = ruby-test-unit-3.7.7-1-any +installed = ruby-typeprof-0.30.1-2-any +installed = ruby-webrick-1.9.2-1-any +installed = ruby-yard-0.9.35-1-any +installed = rubygems-3.6.9-1-any +installed = runc-1.4.2-1-x86_64 +installed = rust-bindgen-0.72.1-2-x86_64 +installed = rustup-1.29.0-2-x86_64 +installed = rutabaga-ffi-0.1.75-1-x86_64 +installed = rygel-1:45.2-1-x86_64 +installed = s2n-tls-1.7.2-1-x86_64 +installed = safecopy-1.7-1-x86_64 +installed = samba-2:4.24.3-1-x86_64 +installed = sane-1.4.0-4-x86_64 +installed = sassc-3.6.2-5-x86_64 +installed = sbc-2.2-1-x86_64 +installed = schroedinger-1.0.11-7-x86_64 +installed = scour-0.38.2-6-any +installed = screengrab-3.2.0-1-x86_64 +installed = scummvm-2026.2.0-1-x86_64 +installed = sddm-0.21.0-7-x86_64 +installed = sddm-sugar-candy-git-1.6r42.d31dbf5-1-any +installed = sdl12-compat-1.2.68-2-x86_64 +installed = sdl2-compat-2.32.68-1-x86_64 +installed = sdl2_image-2.8.12-1-x86_64 +installed = sdl2_mixer-2.8.2-1-x86_64 +installed = sdl2_net-2:2.4.0-1-x86_64 +installed = sdl2_ttf-2.24.0-2-x86_64 +installed = sdl3-3.4.10-1-x86_64 +installed = sdl3_image-3.4.4-1-x86_64 +installed = sdl3_image-debug-3.2.4-1-x86_64 +installed = sdl3_ttf-3.2.2-3-x86_64 +installed = sdl_image-1.2.12-9-x86_64 +installed = sdl_mixer-1.2.12-13-x86_64 +installed = sdl_net-1.2.8-6-x86_64 +installed = sdl_sound-1.0.3-13-x86_64 +installed = seabios-1.17.0-2-any +installed = seahorse-1:47.0.1-6-x86_64 +installed = seatd-0.9.3-1-x86_64 +installed = sed-4.10-1-x86_64 +installed = semver-7.8.1-1-any +installed = serd-0.32.8-1-x86_64 +installed = serf-1.3.10-2-x86_64 +installed = sg3_utils-1.48-1-x86_64 +installed = sgml-common-0.6.3-9-any +installed = shaderc-2026.2-1-x86_64 +installed = shadow-4.18.0-1-x86_64 +installed = shared-mime-info-2.4-3-x86_64 +installed = shiboken6-6.11.1-1-x86_64 +installed = signon-kwallet-extension-26.04.2-1-x86_64 +installed = signon-plugin-oauth2-0.25-4-x86_64 +installed = signon-ui-0.17+20231016-4-x86_64 +installed = signond-8.61-4-x86_64 +installed = simde-0.8.2-1-any +installed = simdjson-1:4.6.4-1-x86_64 +installed = simple-scan-50.0-1-x86_64 +installed = sip4-4.19.25-7-x86_64 +installed = skanpage-26.04.2-1-x86_64 +installed = slang-2.3.3-4-x86_64 +installed = smartmontools-7.5-1-x86_64 +installed = smbclient-2:4.24.3-1-x86_64 +installed = snapd-2.75.2-1-x86_64 +installed = snapd-glib-1.72-1-x86_64 +installed = snapd-glib-debug-1.70-1-x86_64 +installed = snappy-1.2.2-3-x86_64 +installed = sndio-1.10.0-1-x86_64 +installed = socat-1.8.1.1-1-x86_64 +installed = solid-6.26.0-1-x86_64 +installed = solid5-5.116.0-2-x86_64 +installed = sonnet-6.26.0-1-x86_64 +installed = sonnet5-5.116.0-2-x86_64 +installed = sord-0.16.22-1-x86_64 +installed = sound-theme-freedesktop-0.8-6-any +installed = soundtouch-2.4.1-1-x86_64 +installed = source-highlight-3.1.9-18-x86_64 +installed = sox-14.8.0.1-1-x86_64 +installed = spamassassin-4.0.2-1-x86_64 +installed = spandsp-0.0.6-7-x86_64 +installed = spdlog-1.17.0-2-x86_64 +installed = speech-dispatcher-0.12.1-3-x86_64 +installed = speedtest-cli-2.1.3-10-any +installed = speex-1.2.1-2-x86_64 +installed = speexdsp-1.2.1-2-x86_64 +installed = spice-0.16.0-2-x86_64 +installed = spice-gtk-0.42-5-x86_64 +installed = spice-protocol-0.14.5-1-any +installed = spirv-tools-1:1.4.350.0-1-x86_64 +installed = sqlcipher-4.14.0-1-x86_64 +installed = sqlite-3.53.2-1-x86_64 +installed = sqlitebrowser-3.13.1-3-x86_64 +installed = squashfs-tools-4.7.5-1-x86_64 +installed = sratom-0.6.22-1-x86_64 +installed = srt-1.5.5-1-x86_64 +installed = sshfs-3.7.6-1-x86_64 +installed = sslscan-2.2.2-1-x86_64 +installed = stable-diffusion-ui-3.0.2-4-x86_64 +installed = startup-notification-0.12-9-x86_64 +installed = steam-1.0.0.85-7-x86_64 +installed = steam-devices-1.0.0.85-7-x86_64 +installed = steamcmd-latest-7-x86_64 +installed = strace-7.0-1-x86_64 +installed = strip-nondeterminism-1.15.0-2-any +installed = subversion-1.14.5-5-x86_64 +installed = sudo-1.9.17.p2-2-x86_64 +installed = suil-0.10.26-1-x86_64 +installed = suitesparse-7.12.2-2-x86_64 +installed = supertuxkart-1.5-1-x86_64 +installed = sushi-50.0-1-x86_64 +installed = svt-av1-4.1.0-1-x86_64 +installed = svt-hevc-1.5.1-4-x86_64 +installed = swig-4.4.1-1-x86_64 +installed = sword-1.9.0-18-x86_64 +installed = swtpm-0.10.1-2-x86_64 +installed = syndication-6.26.0-1-x86_64 +installed = syntax-highlighting-6.26.0-1-x86_64 +installed = sysbench-1.0.20-2-x86_64 +installed = system-config-printer-1.5.18-6-x86_64 +installed = systemd-260.2-2-x86_64 +installed = systemd-libs-260.2-2-x86_64 +installed = systemd-sysvcompat-260.2-2-x86_64 +installed = systemdgenie-0.99.0-8-x86_64 +installed = systemsettings-6.6.5-1-x86_64 +installed = taglib-2.3-1-x86_64 +installed = talloc-2.4.4-1-x86_64 +installed = tar-1.35-2-x86_64 +installed = tcl-8.6.16-1-x86_64 +installed = tdb-1.4.15-1-x86_64 +installed = tde-abakus-14.1.6-1-x86_64 +installed = tde-akode-14.1.6-1-x86_64 +installed = tde-amarok-14.1.6-1-x86_64 +installed = tde-arts-14.1.6-1-x86_64 +installed = tde-avahi-tqt-14.1.6-1-x86_64 +installed = tde-basket-14.1.6-1-x86_64 +installed = tde-bibletime-14.1.6-1-x86_64 +installed = tde-cmake-trinity-14.1.6-1-any +installed = tde-dbus-1-tqt-14.1.6-1-x86_64 +installed = tde-dbus-tqt-14.1.6-1-x86_64 +installed = tde-digikam-14.1.6-1-x86_64 +installed = tde-dolphin-14.1.6-1-x86_64 +installed = tde-ebook-reader-14.1.6-1-x86_64 +installed = tde-filelight-14.1.6-1-x86_64 +installed = tde-gtk-qt-engine-14.1.6-1-x86_64 +installed = tde-gtk3-tqt-engine-14.1.6-1-x86_64 +installed = tde-gwenview-14.1.6-1-x86_64 +installed = tde-gwenview-i18n-14.1.6-1-any +installed = tde-i18n-14.1.6-1-any +installed = tde-i18n-af-14.1.6-1-any +installed = tde-i18n-ar-14.1.6-1-any +installed = tde-i18n-az-14.1.6-1-any +installed = tde-i18n-be-14.1.6-1-any +installed = tde-i18n-bg-14.1.6-1-any +installed = tde-i18n-bn-14.1.6-1-any +installed = tde-i18n-br-14.1.6-1-any +installed = tde-i18n-bs-14.1.6-1-any +installed = tde-i18n-ca-14.1.6-1-any +installed = tde-i18n-cs-14.1.6-1-any +installed = tde-i18n-csb-14.1.6-1-any +installed = tde-i18n-cy-14.1.6-1-any +installed = tde-i18n-da-14.1.6-1-any +installed = tde-i18n-de-14.1.6-1-any +installed = tde-i18n-el-14.1.6-1-any +installed = tde-i18n-engb-14.1.6-1-any +installed = tde-i18n-eo-14.1.6-1-any +installed = tde-i18n-es-14.1.6-1-any +installed = tde-i18n-esar-14.1.6-1-any +installed = tde-i18n-et-14.1.6-1-any +installed = tde-i18n-eu-14.1.6-1-any +installed = tde-i18n-fa-14.1.6-1-any +installed = tde-i18n-fi-14.1.6-1-any +installed = tde-i18n-fr-14.1.6-1-any +installed = tde-i18n-fy-14.1.6-1-any +installed = tde-i18n-ga-14.1.6-1-any +installed = tde-i18n-gl-14.1.6-1-any +installed = tde-i18n-he-14.1.6-1-any +installed = tde-i18n-hi-14.1.6-1-any +installed = tde-i18n-hr-14.1.6-1-any +installed = tde-i18n-hu-14.1.6-1-any +installed = tde-i18n-ia-14.1.6-1-any +installed = tde-i18n-is-14.1.6-1-any +installed = tde-i18n-it-14.1.6-1-any +installed = tde-i18n-ja-14.1.6-1-any +installed = tde-i18n-kk-14.1.6-1-any +installed = tde-i18n-km-14.1.6-1-any +installed = tde-i18n-ko-14.1.6-1-any +installed = tde-i18n-lt-14.1.6-1-any +installed = tde-i18n-lv-14.1.6-1-any +installed = tde-i18n-mk-14.1.6-1-any +installed = tde-i18n-mn-14.1.6-1-any +installed = tde-i18n-ms-14.1.6-1-any +installed = tde-i18n-nb-14.1.6-1-any +installed = tde-i18n-nds-14.1.6-1-any +installed = tde-i18n-nl-14.1.6-1-any +installed = tde-i18n-nn-14.1.6-1-any +installed = tde-i18n-pa-14.1.6-1-any +installed = tde-i18n-pl-14.1.6-1-any +installed = tde-i18n-pt-14.1.6-1-any +installed = tde-i18n-ptbr-14.1.6-1-any +installed = tde-i18n-ro-14.1.6-1-any +installed = tde-i18n-ru-14.1.6-1-any +installed = tde-i18n-rw-14.1.6-1-any +installed = tde-i18n-se-14.1.6-1-any +installed = tde-i18n-sk-14.1.6-1-any +installed = tde-i18n-sl-14.1.6-1-any +installed = tde-i18n-sr-14.1.6-1-any +installed = tde-i18n-srlatin-14.1.6-1-any +installed = tde-i18n-ss-14.1.6-1-any +installed = tde-i18n-sv-14.1.6-1-any +installed = tde-i18n-ta-14.1.6-1-any +installed = tde-i18n-te-14.1.6-1-any +installed = tde-i18n-tg-14.1.6-1-any +installed = tde-i18n-th-14.1.6-1-any +installed = tde-i18n-tr-14.1.6-1-any +installed = tde-i18n-uk-14.1.6-1-any +installed = tde-i18n-uz-14.1.6-1-any +installed = tde-i18n-uzcyrillic-14.1.6-1-any +installed = tde-i18n-vi-14.1.6-1-any +installed = tde-i18n-wa-14.1.6-1-any +installed = tde-i18n-zhcn-14.1.6-1-any +installed = tde-i18n-zhtw-14.1.6-1-any +installed = tde-k3b-14.1.6-1-x86_64 +installed = tde-k3b-i18n-14.1.6-1-any +installed = tde-kaffeine-14.1.6-1-x86_64 +installed = tde-kbarcode-14.1.6-1-x86_64 +installed = tde-kbiff-14.1.6-1-x86_64 +installed = tde-kchmviewer-14.1.6-1-x86_64 +installed = tde-kcpuload-14.1.6-1-x86_64 +installed = tde-kdbg-14.1.6-1-x86_64 +installed = tde-kdiff3-14.1.6-1-x86_64 +installed = tde-kile-14.1.6-1-x86_64 +installed = tde-kipi-plugins-14.1.6-1-x86_64 +installed = tde-kmplayer-14.1.6-1-x86_64 +installed = tde-kmyfirewall-14.1.6-1-x86_64 +installed = tde-kmymoney-14.1.6-1-x86_64 +installed = tde-knights-14.1.6-1-x86_64 +installed = tde-kommando-14.1.6-1-x86_64 +installed = tde-kompose-14.1.6-1-x86_64 +installed = tde-konversation-14.1.6-1-x86_64 +installed = tde-kooldock-14.1.6-1-x86_64 +installed = tde-krecipes-14.1.6-1-x86_64 +installed = tde-krename-14.1.6-1-x86_64 +installed = tde-krusader-14.1.6-1-x86_64 +installed = tde-kscope-14.1.6-1-x86_64 +installed = tde-kshutdown-14.1.6-1-x86_64 +installed = tde-ksplash-engine-moodin-14.1.6-1-x86_64 +installed = tde-ksquirrel-14.1.6-1-x86_64 +installed = tde-ktorrent-14.1.6-1-x86_64 +installed = tde-kvkbd-14.1.6-1-x86_64 +installed = tde-kxmleditor-14.1.6-1-x86_64 +installed = tde-libart-lgpl-14.1.6-1-x86_64 +installed = tde-libcaldav-14.1.6-1-x86_64 +installed = tde-libcarddav-14.1.6-1-x86_64 +installed = tde-libkdcraw-14.1.6-1-x86_64 +installed = tde-libkexiv2-14.1.6-1-x86_64 +installed = tde-libkipi-14.1.6-1-x86_64 +installed = tde-libksquirrel-14.1.6-1-x86_64 +installed = tde-meta-14.1.6-1-any +installed = tde-piklab-14.1.6-1-x86_64 +installed = tde-polkit-agent-tde-14.1.6-1-x86_64 +installed = tde-polkit-tqt-14.1.6-1-x86_64 +installed = tde-potracegui-14.1.6-1-x86_64 +installed = tde-style-baghira-14.1.6-1-x86_64 +installed = tde-style-domino-14.1.6-1-x86_64 +installed = tde-style-ia-ora-14.1.6-1-x86_64 +installed = tde-style-lipstik-14.1.6-1-x86_64 +installed = tde-style-polyester-14.1.6-1-x86_64 +installed = tde-style-qtcurve-14.1.6-1-x86_64 +installed = tde-systemsettings-14.1.6-1-x86_64 +installed = tde-tdeaccessibility-14.1.6-1-x86_64 +installed = tde-tdeaddons-14.1.6-1-x86_64 +installed = tde-tdeadmin-14.1.6-1-x86_64 +installed = tde-tdeartwork-14.1.6-1-x86_64 +installed = tde-tdebase-14.1.6-1-x86_64 +installed = tde-tdebindings-14.1.6-1-x86_64 +installed = tde-tdebluez-14.1.6-1-x86_64 +installed = tde-tdeedu-14.1.6-1-x86_64 +installed = tde-tdegames-14.1.6-1-x86_64 +installed = tde-tdegraphics-14.1.6-1-x86_64 +installed = tde-tdeio-appinfo-14.1.6-1-x86_64 +installed = tde-tdeio-ftps-14.1.6-1-x86_64 +installed = tde-tdeio-gopher-14.1.6-1-x86_64 +installed = tde-tdeio-locate-14.1.6-1-x86_64 +installed = tde-tdeio-sword-14.1.6-1-x86_64 +installed = tde-tdeknighttour-14.1.6-1-x86_64 +installed = tde-tdelibs-14.1.6-1-x86_64 +installed = tde-tdemultimedia-14.1.6-1-x86_64 +installed = tde-tdenetwork-14.1.6-1-x86_64 +installed = tde-tdenetworkmanager-14.1.6-1-x86_64 +installed = tde-tdepacman-14.1.6-1-x86_64 +installed = tde-tdepim-14.1.6-1-x86_64 +installed = tde-tdepowersave-14.1.6-1-x86_64 +installed = tde-tdesdk-14.1.6-1-x86_64 +installed = tde-tdesudo-14.1.6-1-x86_64 +installed = tde-tdetoys-14.1.6-1-x86_64 +installed = tde-tdeutils-14.1.6-1-x86_64 +installed = tde-tdevelop-14.1.6-1-x86_64 +installed = tde-tdewebdev-14.1.6-1-x86_64 +installed = tde-tdmtheme-14.1.6-1-x86_64 +installed = tde-tellico-14.1.6-1-x86_64 +installed = tde-tork-14.1.6-1-x86_64 +installed = tde-tqca-14.1.6-1-x86_64 +installed = tde-tqca-tls-14.1.6-1-x86_64 +installed = tde-tqscintilla-14.1.6-1-x86_64 +installed = tde-tqt3-14.1.6-1-x86_64 +installed = tde-tqt3-docs-14.1.6-1-x86_64 +installed = tde-tqtinterface-14.1.6-1-x86_64 +installed = tde-twin-style-crystal-14.1.6-1-x86_64 +installed = tde-twin-style-dekorator-14.1.6-1-x86_64 +installed = tde-twin-style-fahrenheit-14.1.6-1-x86_64 +installed = tde-twin-style-machbunt-14.1.6-1-x86_64 +installed = tde-twin-style-mallory-14.1.6-1-x86_64 +installed = tde-twin-style-suse2-14.1.6-1-x86_64 +installed = tde-universal-indent-gui-tqt-14.1.6-1-x86_64 +installed = tde-xdg-desktop-portal-tde-14.1.6-1-x86_64 +installed = tde-yakuake-14.1.6-1-x86_64 +installed = teams-for-linux-2.10.0-2-x86_64 +installed = tecla-50.0-1-x86_64 +installed = terminator-2.1.5-2-any +installed = terminus-font-4.49.1-8-any +installed = tesseract-5.5.2-1-x86_64 +installed = tesseract-data-afr-2:4.1.0-5-any +installed = tesseract-data-eng-2:4.1.0-5-any +installed = tesseract-data-osd-2:4.1.0-5-any +installed = tevent-1:0.17.1-2-x86_64 +installed = texinfo-7.3-1-x86_64 +installed = texlab-5.25.1-2-x86_64 +installed = texlive-basic-2026.1-1-any +installed = texlive-bibtexextra-2026.1-1-any +installed = texlive-bin-2026.0-2-x86_64 +installed = texlive-fontsextra-2026.1-1-any +installed = texlive-fontsrecommended-2026.1-1-any +installed = texlive-formatsextra-2026.1-1-any +installed = texlive-games-2026.1-1-any +installed = texlive-humanities-2026.1-1-any +installed = texlive-latex-2026.1-1-any +installed = texlive-latexextra-2026.1-1-any +installed = texlive-latexrecommended-2026.1-1-any +installed = texlive-music-2026.1-1-any +installed = texlive-pictures-2026.1-1-any +installed = texlive-plaingeneric-2026.1-1-any +installed = texlive-pstricks-2026.1-1-any +installed = texlive-publishers-2026.1-1-any +installed = theme-windows-3.11-1.1-1-any +installed = thin-provisioning-tools-1.3.2-1-x86_64 +installed = threadweaver-6.26.0-1-x86_64 +installed = thrift-0.22.0-6-x86_64 +installed = thunar-4.20.8-3-x86_64 +installed = thunar-volman-4.20.0-2-x86_64 +installed = tig-2.6.0-1-x86_64 +installed = tigervnc-1.16.2-2-x86_64 +installed = tilix-1.9.6-9-x86_64 +installed = tilix-debug-1.9.6-9-x86_64 +installed = timezonemap-0.4.5.4-1-x86_64 +installed = tinc-1.0.36-4-x86_64 +installed = tinysparql-3.11.1-1-x86_64 +installed = tinyxml-2.6.2-13-x86_64 +installed = tinyxml2-11.0.0-2-x86_64 +installed = tk-8.6.16-1-x86_64 +installed = tmux-3.6_b-2-x86_64 +installed = topgrade-17.5.1-1-x86_64 +installed = tor-0.4.9.9-1-x86_64 +installed = torsocks-2.5.0-1-x86_64 +installed = totem-43.2-5-x86_64 +installed = totem-pl-parser-3.26.7-1-x86_64 +installed = tpm2-tss-4.1.3-1-x86_64 +installed = transcode-1.1.7-49-x86_64 +installed = transmission-gtk-4.1.1-1-x86_64 +installed = tree-2.3.2-1-x86_64 +installed = tslib-1.24-1-x86_64 +installed = ttf-bitstream-vera-1.10-16-any +installed = ttf-dejavu-2.37+18+g9b5d1b2f-8-any +installed = ttf-hack-3.003-7-any +installed = ttf-inconsolata-1:3.000-5-any +installed = ttf-indic-otf-0.2-12-any +installed = ttf-liberation-2.1.5-2-any +installed = ttf-ms-fonts-2.0-13-any +installed = ttf-segoe-fluent-icons-1.0-3-any +installed = ttf-segoe-ui-variable-1.0-1-any +installed = ttf-ubuntu-font-family-1:0.83-2-any +installed = tumbler-4.20.1-1-x86_64 +installed = twolame-0.4.0-4-x86_64 +installed = tzdata-2026b-1-x86_64 +installed = uchardet-0.0.8-4-x86_64 +installed = udisks2-2.11.1-2-x86_64 +installed = unifdef-2.12-4-x86_64 +installed = unigine-valley-1.0-1-x86_64 +installed = unixodbc-2.3.14-1-x86_64 +installed = unrar-1:7.2.6-1-x86_64 +installed = unshield-1.6.2-1-x86_64 +installed = unzip-6.0-23-x86_64 +installed = upower-1.91.2-1-x86_64 +installed = usbmuxd-1.1.1-4-x86_64 +installed = usbredir-0.15.0-1-x86_64 +installed = usbutils-019-1-x86_64 +installed = usd-26.05-3-x86_64 +installed = uthash-2.3.0-3-any +installed = util-linux-2.42.1-1-x86_64 +installed = util-linux-libs-2.42.1-1-x86_64 +installed = v4l-utils-1.32.0-2-x86_64 +installed = v4l2loopback-dkms-0.15.3-1-any +installed = vala-0.56.19-1-x86_64 +installed = valgrind-3.25.1-5-x86_64 +installed = vamp-plugin-sdk-1:2.10-1-x86_64 +installed = vapoursynth-76-1-x86_64 +installed = vde2-2.3.3-8-x86_64 +installed = ventoy-bin-1.1.12-1-x86_64 +installed = verdict-1.4.5-2-x86_64 +installed = vice-3.10-2-x86_64 +installed = vid.stab-1.1.1-2-x86_64 +installed = vim-9.2.0600-1-x86_64 +installed = vim-runtime-9.2.0600-1-x86_64 +installed = virglrenderer-1.3.0-2-x86_64 +installed = virt-install-5.1.0-3-any +installed = virt-manager-5.1.0-3-any +installed = virt-viewer-11.0-4-x86_64 +installed = virtiofsd-1.13.3-1-x86_64 +installed = virtualbox-7.2.8-2-x86_64 +installed = virtualbox-guest-iso-7.2.8-1-any +installed = virtualbox-host-dkms-7.2.8-2-x86_64 +installed = virtualgl-3.1.4-1-x86_64 +installed = visual-studio-code-bin-1.123.0-5-x86_64 +installed = vivaldi-8.0.4033.44-1-x86_64 +installed = vivaldi-ffmpeg-codecs-148.0.7778.256-1-x86_64 +installed = vlc-3.0.23_2-6-x86_64 +installed = vlc-cli-3.0.23_2-6-x86_64 +installed = vlc-gui-qt-3.0.23_2-6-x86_64 +installed = vlc-plugin-a52dec-3.0.23_2-6-x86_64 +installed = vlc-plugin-alsa-3.0.23_2-6-x86_64 +installed = vlc-plugin-archive-3.0.23_2-6-x86_64 +installed = vlc-plugin-dav1d-3.0.23_2-6-x86_64 +installed = vlc-plugin-dbus-3.0.23_2-6-x86_64 +installed = vlc-plugin-dbus-screensaver-3.0.23_2-6-x86_64 +installed = vlc-plugin-faad2-3.0.23_2-6-x86_64 +installed = vlc-plugin-flac-3.0.23_2-6-x86_64 +installed = vlc-plugin-gnutls-3.0.23_2-6-x86_64 +installed = vlc-plugin-inflate-3.0.23_2-6-x86_64 +installed = vlc-plugin-journal-3.0.23_2-6-x86_64 +installed = vlc-plugin-jpeg-3.0.23_2-6-x86_64 +installed = vlc-plugin-lua-3.0.23_2-6-x86_64 +installed = vlc-plugin-matroska-3.0.23_2-6-x86_64 +installed = vlc-plugin-mpg123-3.0.23_2-6-x86_64 +installed = vlc-plugin-ogg-3.0.23_2-6-x86_64 +installed = vlc-plugin-opus-3.0.23_2-6-x86_64 +installed = vlc-plugin-png-3.0.23_2-6-x86_64 +installed = vlc-plugin-pulse-3.0.23_2-6-x86_64 +installed = vlc-plugin-shout-3.0.23_2-6-x86_64 +installed = vlc-plugin-speex-3.0.23_2-6-x86_64 +installed = vlc-plugin-tag-3.0.23_2-6-x86_64 +installed = vlc-plugin-theora-3.0.23_2-6-x86_64 +installed = vlc-plugin-twolame-3.0.23_2-6-x86_64 +installed = vlc-plugin-vorbis-3.0.23_2-6-x86_64 +installed = vlc-plugin-vpx-3.0.23_2-6-x86_64 +installed = vlc-plugin-xml-3.0.23_2-6-x86_64 +installed = vlc-plugins-base-3.0.23_2-6-x86_64 +installed = vlc-plugins-video-output-3.0.23_2-6-x86_64 +installed = vmaf-3.1.0-1-x86_64 +installed = volume_key-0.3.12-12-x86_64 +installed = vscodium-bin-1.121.03429-1-x86_64 +installed = vte-common-0.84.0-1-x86_64 +installed = vte3-0.84.0-1-x86_64 +installed = vtk-9.6.2-1-x86_64 +installed = vulkan-headers-1:1.4.350.0-1-any +installed = vulkan-icd-loader-1.4.350.0-1-x86_64 +installed = vulkan-tools-1.4.350.0-1-x86_64 +installed = w3m-0.5.6-1-x86_64 +installed = wavpack-5.9.0-1-x86_64 +installed = wayland-1.25.0-1-x86_64 +installed = wayland-protocols-1.49-1-any +installed = webapp-manager-git-1.4.4.r0.gd8ef0df-1-any +installed = webkit2gtk-2.50.6-7-x86_64 +installed = webkit2gtk-4.1-2.52.4-1-x86_64 +installed = webkitgtk-6.0-2.52.4-1-x86_64 +installed = webp-pixbuf-loader-0.2.7-2-x86_64 +installed = webrtc-audio-processing-2.1-7-x86_64 +installed = webrtc-audio-processing-1-1.3-5-x86_64 +installed = websocketpp-0.8.2-4-any +installed = wget-1.25.0-5-x86_64 +installed = which-2.25-1-x86_64 +installed = widelands-1:1.3.1-3-x86_64 +installed = wildmidi-0.4.6-1-x86_64 +installed = wine-11.10-1-x86_64 +installed = wine-gecko-2.47.4-2-x86_64 +installed = wine-mono-11.1.0-1-x86_64 +installed = winetricks-20260125-2-any +installed = wireguard-tools-1.0.20260223-1-x86_64 +installed = wireless-regdb-2026.05.30-1-any +installed = wireless_tools-30.pre9-5-x86_64 +installed = wireplumber-0.5.14-1-x86_64 +installed = wmctrl-1.07-6-x86_64 +installed = woff2-1.0.2-6-x86_64 +installed = wolfssl-5.9.1-1-x86_64 +installed = wpa_supplicant-2:2.11-5-x86_64 +installed = wps-office-all-dicts-win-languages-11.1.0.11704-0-any +installed = wps-office-bin-12.1.2.22571-1-x86_64 +installed = wps-office-mui-de-de-11.1.0.11704-1-any +installed = wscat-6.1.0-1-x86_64 +installed = wxwidgets-common-3.2.10-2-x86_64 +installed = wxwidgets-gtk3-3.2.10-2-x86_64 +installed = x264-3:0.165.r3222.b35605a-2-x86_64 +installed = x265-4.1-1-x86_64 +installed = xapian-core-1:2.0.0-2-x86_64 +installed = xapp-3.2.2-1-x86_64 +installed = xapp-symbolic-icons-1.1.0-1-any +installed = xawtv-3.107-3-x86_64 +installed = xbindkeys-1.8.7-5-x86_64 +installed = xbitmaps-1.1.4-1-any +installed = xcb-proto-1.17.0-4-any +installed = xcb-util-0.4.1-2-x86_64 +installed = xcb-util-cursor-0.1.6-1-x86_64 +installed = xcb-util-errors-1.0.1-2-x86_64 +installed = xcb-util-image-0.4.1-3-x86_64 +installed = xcb-util-keysyms-0.4.1-5-x86_64 +installed = xcb-util-renderutil-0.3.10-2-x86_64 +installed = xcb-util-wm-0.4.2-2-x86_64 +installed = xcb-util-xrm-1.3-4-x86_64 +installed = xdg-dbus-proxy-0.1.7-1-x86_64 +installed = xdg-desktop-portal-1.20.4-1-x86_64 +installed = xdg-desktop-portal-gnome-50.0-1-x86_64 +installed = xdg-desktop-portal-gtk-1.15.3-1-x86_64 +installed = xdg-desktop-portal-kde-6.6.5-1-x86_64 +installed = xdg-desktop-portal-lxqt-1.4.0-1-x86_64 +installed = xdg-desktop-portal-xapp-1.1.3-2-x86_64 +installed = xdg-user-dirs-0.20-1-x86_64 +installed = xdg-user-dirs-gtk-0.16-1-x86_64 +installed = xdg-utils-1.2.1-2-any +installed = xdotool-4.20260303.1-1-x86_64 +installed = xerces-c-3.3.0-4-x86_64 +installed = xf86-input-libinput-1.5.0-1-x86_64 +installed = xf86-video-fbdev-0.5.1-1-x86_64 +installed = xf86-video-intel-1:2.99.917+939+g4a64400e-1-x86_64 +installed = xf86-video-vesa-2.6.0-3-x86_64 +installed = xfce4-appfinder-4.20.0-2-x86_64 +installed = xfce4-panel-4.20.7-1-x86_64 +installed = xfce4-screensaver-4.20.2-1-x86_64 +installed = xfce4-session-4.20.4-1-x86_64 +installed = xfce4-settings-4.20.4-1-x86_64 +installed = xfconf-4.20.0-2-x86_64 +installed = xfdesktop-4.20.2-1-x86_64 +installed = xfsprogs-7.0.1-1-x86_64 +installed = xfwm4-4.20.0-2-x86_64 +installed = xfwm4-themes-4.10.0-6-any +installed = xine-lib-1.2.13-16-x86_64 +installed = xkeyboard-config-2.47-1-any +installed = xorg-appres-1.0.7-1-x86_64 +installed = xorg-fonts-alias-misc-1.0.6-1-any +installed = xorg-fonts-encodings-1.1.0-2-any +installed = xorg-fonts-misc-1.0.4-2-any +installed = xorg-iceauth-1.0.11-1-x86_64 +installed = xorg-mkfontscale-1.2.4-1-x86_64 +installed = xorg-server-21.1.23-1-x86_64 +installed = xorg-server-common-21.1.23-1-x86_64 +installed = xorg-server-xvfb-21.1.23-1-x86_64 +installed = xorg-setxkbmap-1.3.5-1-x86_64 +installed = xorg-xauth-1.1.5-1-x86_64 +installed = xorg-xdpyinfo-1.4.0-1-x86_64 +installed = xorg-xhost-1.0.10-1-x86_64 +installed = xorg-xinit-1.4.4-1-x86_64 +installed = xorg-xinput-1.6.4-2-x86_64 +installed = xorg-xkbcomp-1.5.0-1-x86_64 +installed = xorg-xmessage-1.0.7-2-x86_64 +installed = xorg-xmodmap-1.0.11-2-x86_64 +installed = xorg-xprop-1.2.8-1-x86_64 +installed = xorg-xrandr-1.5.4-1-x86_64 +installed = xorg-xrdb-1.2.2-2-x86_64 +installed = xorg-xset-1.2.5-2-x86_64 +installed = xorg-xsetroot-1.1.3-2-x86_64 +installed = xorg-xwayland-24.1.12-1-x86_64 +installed = xorg-xwininfo-1.1.6-2-x86_64 +installed = xorgproto-2025.1-1-any +installed = xplane-sdk-devel-4.3.0-1-any +installed = xsane-0.999-8-x86_64 +installed = xsane-gimp-0.999-8-x86_64 +installed = xsane2tess-1.0-12-any +installed = xscreensaver-6.15-1-x86_64 +installed = xterm-410-1-x86_64 +installed = xvidcore-1.3.7-3-x86_64 +installed = xxhash-0.8.3-1-x86_64 +installed = xz-5.8.3-1-x86_64 +installed = yakuake-26.04.2-1-x86_64 +installed = yaml-cpp-0.9.0-1-x86_64 +installed = yarn-1.22.22-2-any +installed = yasm-1.3.0-9-x86_64 +installed = yay-git-12.6.0.r2.g4c5fda79-1-x86_64 +installed = yaz-5.35.1-1-x86_64 +installed = yelp-49.1-1-x86_64 +installed = yelp-tools-42.1-2-any +installed = yelp-xsl-49.0-1-any +installed = youtube-dl-2021.12.17-5-any +installed = yp-tools-4.2.3-6-x86_64 +installed = yp-tools-debug-4.2.3-6-x86_64 +installed = yt-dlp-2026.03.17-1-any +installed = yt-dlp-ejs-0.8.0-1-any +installed = zbar-0.23.93-5-x86_64 +installed = zenity-4.2.2-1-x86_64 +installed = zeromq-4.3.5-3-x86_64 +installed = zimg-3.0.6-1-x86_64 +installed = zint-2.16.0-2-x86_64 +installed = zip-3.0-13-x86_64 +installed = zita-convolver-4.0.3-5-x86_64 +installed = zix-0.8.0-1-x86_64 +installed = zlib-1:1.3.2-3-x86_64 +installed = zlib-ng-2.3.3-1-x86_64 +installed = zsh-5.9.1-1-x86_64 +installed = zsh-completions-0.36.0-1-any +installed = zsh-syntax-highlighting-0.8.0-2-any +installed = zstd-1.5.7-3-x86_64 +installed = zvbi-0.2.44-1-x86_64 +installed = zxing-cpp-3.0.2-1-x86_64 +installed = zziplib-0.13.80-1-x86_64 diff --git a/uartscope-git/pkg/uartscope/.MTREE b/uartscope-git/pkg/uartscope/.MTREE new file mode 100644 index 0000000..e32b1bc Binary files /dev/null and b/uartscope-git/pkg/uartscope/.MTREE differ diff --git a/uartscope-git/pkg/uartscope/.PKGINFO b/uartscope-git/pkg/uartscope/.PKGINFO new file mode 100644 index 0000000..c09b7ae --- /dev/null +++ b/uartscope-git/pkg/uartscope/.PKGINFO @@ -0,0 +1,19 @@ +# Generated by makepkg 7.1.0 +# using fakeroot version 1.38.1 +pkgname = uartscope +pkgbase = uartscope +xdata = pkgtype=pkg +pkgver = 1.0.0.r0.gcc102c9-1 +pkgdesc = Qt6-based UART serial monitor with tag monitoring, table view and auto-reconnect +url = https://git.projekt-hirnfrei.de/diabolus/uartscope +builddate = 1780954815 +packager = Unknown Packager +size = 176146 +arch = x86_64 +license = MIT +conflict = uartscope +provides = uartscope +depend = qt6-base +depend = qt6-serialport +makedepend = cmake +makedepend = git diff --git a/uartscope-git/pkg/uartscope/usr/bin/uartscope b/uartscope-git/pkg/uartscope/usr/bin/uartscope new file mode 100755 index 0000000..4202da1 Binary files /dev/null and b/uartscope-git/pkg/uartscope/usr/bin/uartscope differ diff --git a/uartscope-git/pkg/uartscope/usr/share/applications/uartscope.desktop b/uartscope-git/pkg/uartscope/usr/share/applications/uartscope.desktop new file mode 100644 index 0000000..5c42a21 --- /dev/null +++ b/uartscope-git/pkg/uartscope/usr/share/applications/uartscope.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Name=UARTScope +Comment=UART Serial Monitor +Exec=uartscope +Icon=utilities-terminal +Terminal=false +Type=Application +Categories=Development;Utility; diff --git a/uartscope-git/src/uartscope b/uartscope-git/src/uartscope new file mode 160000 index 0000000..cc102c9 --- /dev/null +++ b/uartscope-git/src/uartscope @@ -0,0 +1 @@ +Subproject commit cc102c93eb17f7b910d8e74c3505f198bed77f10 diff --git a/uartscope-git/uartscope-1.0.0.r0.gcc102c9-1-x86_64.pkg.tar.zst b/uartscope-git/uartscope-1.0.0.r0.gcc102c9-1-x86_64.pkg.tar.zst new file mode 100644 index 0000000..9d2eb09 Binary files /dev/null and b/uartscope-git/uartscope-1.0.0.r0.gcc102c9-1-x86_64.pkg.tar.zst differ diff --git a/uartscope-git/uartscope/FETCH_HEAD b/uartscope-git/uartscope/FETCH_HEAD new file mode 100644 index 0000000..427d222 --- /dev/null +++ b/uartscope-git/uartscope/FETCH_HEAD @@ -0,0 +1,2 @@ +cc102c93eb17f7b910d8e74c3505f198bed77f10 not-for-merge branch 'main' of https://git.projekt-hirnfrei.de/diabolus/uartscope +cc102c93eb17f7b910d8e74c3505f198bed77f10 not-for-merge tag 'v1.0.0' of https://git.projekt-hirnfrei.de/diabolus/uartscope diff --git a/uartscope-git/uartscope/HEAD b/uartscope-git/uartscope/HEAD new file mode 100644 index 0000000..b870d82 --- /dev/null +++ b/uartscope-git/uartscope/HEAD @@ -0,0 +1 @@ +ref: refs/heads/main diff --git a/uartscope-git/uartscope/config b/uartscope-git/uartscope/config new file mode 100644 index 0000000..2313ec4 --- /dev/null +++ b/uartscope-git/uartscope/config @@ -0,0 +1,9 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = true +[remote "origin"] + url = https://git.projekt-hirnfrei.de/diabolus/uartscope.git + tagOpt = --no-tags + fetch = +refs/*:refs/* + mirror = true diff --git a/uartscope-git/uartscope/description b/uartscope-git/uartscope/description new file mode 100644 index 0000000..498b267 --- /dev/null +++ b/uartscope-git/uartscope/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/uartscope-git/uartscope/hooks/applypatch-msg.sample b/uartscope-git/uartscope/hooks/applypatch-msg.sample new file mode 100755 index 0000000..a5d7b84 --- /dev/null +++ b/uartscope-git/uartscope/hooks/applypatch-msg.sample @@ -0,0 +1,15 @@ +#!/bin/sh +# +# An example hook script to check the commit log message taken by +# applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. The hook is +# allowed to edit the commit message file. +# +# To enable this hook, rename this file to "applypatch-msg". + +. git-sh-setup +commitmsg="$(git rev-parse --git-path hooks/commit-msg)" +test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} +: diff --git a/uartscope-git/uartscope/hooks/commit-msg.sample b/uartscope-git/uartscope/hooks/commit-msg.sample new file mode 100755 index 0000000..f7458ef --- /dev/null +++ b/uartscope-git/uartscope/hooks/commit-msg.sample @@ -0,0 +1,74 @@ +#!/bin/sh +# +# An example hook script to check the commit log message. +# Called by "git commit" with one argument, the name of the file +# that has the commit message. The hook should exit with non-zero +# status after issuing an appropriate message if it wants to stop the +# commit. The hook is allowed to edit the commit message file. +# +# To enable this hook, rename this file to "commit-msg". + +# Uncomment the below to add a Signed-off-by line to the message. +# Doing this in a hook is a bad idea in general, but the prepare-commit-msg +# hook is more suited to it. +# +# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" + +# This example catches duplicate Signed-off-by lines and messages that +# would confuse 'git am'. + +ret=0 + +test "" = "$(grep '^Signed-off-by: ' "$1" | + sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { + echo >&2 Duplicate Signed-off-by lines. + ret=1 +} + +comment_re="$( + { + git config --get-regexp "^core\.comment(char|string)\$" || + echo '#' + } | sed -n -e ' + ${ + s/^[^ ]* // + s|[][*./\]|\\&|g + s/^auto$/[#;@!$%^&|:]/ + p + }' +)" +scissors_line="^${comment_re} -\{8,\} >8 -\{8,\}\$" +comment_line="^${comment_re}.*" +blank_line='^[ ]*$' +# Disallow lines starting with "diff -" or "Index: " in the body of the +# message. Stop looking if we see a scissors line. +line="$(sed -n -e " + # Skip comments and blank lines at the start of the file. + /${scissors_line}/q + /${comment_line}/d + /${blank_line}/d + # The first paragraph will become the subject header so + # does not need to be checked. + : subject + n + /${scissors_line}/q + /${blank_line}/!b subject + # Check the body of the message for problematic + # prefixes. + : body + n + /${scissors_line}/q + /${comment_line}/b body + /^diff -/{p;q;} + /^Index: /{p;q;} + b body + " "$1")" +if test -n "$line" +then + echo >&2 "Message contains a diff that will confuse 'git am'." + echo >&2 "To fix this indent the diff." + ret=1 +fi + +exit $ret diff --git a/uartscope-git/uartscope/hooks/fsmonitor-watchman.sample b/uartscope-git/uartscope/hooks/fsmonitor-watchman.sample new file mode 100755 index 0000000..429e0a5 --- /dev/null +++ b/uartscope-git/uartscope/hooks/fsmonitor-watchman.sample @@ -0,0 +1,168 @@ +#!/usr/bin/perl + +use strict; +use warnings; +use IPC::Open2; + +# An example hook script to integrate Watchman +# (https://facebook.github.io/watchman/) with git to speed up detecting +# new and modified files. +# +# The hook is passed a version (currently 2) and last update token +# formatted as a string and outputs to stdout a new update token and +# all files that have been modified since the update token. Paths must +# be relative to the root of the working tree and separated by a single NUL. +# +# To enable this hook, rename this file to "query-watchman" and set +# 'git config core.fsmonitor .git/hooks/query-watchman' +# +my ($version, $last_update_token) = @ARGV; + +# Uncomment for debugging +# print STDERR "$0 $version $last_update_token\n"; + +# Check the hook interface version +if ($version ne 2) { + die "Unsupported query-fsmonitor hook version '$version'.\n" . + "Falling back to scanning...\n"; +} + +my $git_work_tree = get_working_dir(); + +my $json_pkg; +eval { + require JSON::XS; + $json_pkg = "JSON::XS"; + 1; +} or do { + require JSON::PP; + $json_pkg = "JSON::PP"; +}; + +launch_watchman(); + +sub launch_watchman { + my $o = watchman_query(); + if (is_work_tree_watched($o)) { + output_result($o->{clock}, @{$o->{files}}); + } +} + +sub output_result { + my ($clockid, @files) = @_; + + # Uncomment for debugging watchman output + # open (my $fh, ">", ".git/watchman-output.out"); + # binmode $fh, ":utf8"; + # print $fh "$clockid\n@files\n"; + # close $fh; + + binmode STDOUT, ":utf8"; + print $clockid; + print "\0"; + local $, = "\0"; + print @files; +} + +sub watchman_clock { + my $response = qx/watchman clock "$git_work_tree"/; + die "Failed to get clock id on '$git_work_tree'.\n" . + "Falling back to scanning...\n" if $? != 0; + + return $json_pkg->new->utf8->decode($response); +} + +sub watchman_query { + my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty') + or die "open2() failed: $!\n" . + "Falling back to scanning...\n"; + + # In the query expression below we're asking for names of files that + # changed since $last_update_token but not from the .git folder. + # + # To accomplish this, we're using the "since" generator to use the + # recency index to select candidate nodes and "fields" to limit the + # output to file names only. Then we're using the "expression" term to + # further constrain the results. + my $last_update_line = ""; + if (substr($last_update_token, 0, 1) eq "c") { + $last_update_token = "\"$last_update_token\""; + $last_update_line = qq[\n"since": $last_update_token,]; + } + my $query = <<" END"; + ["query", "$git_work_tree", {$last_update_line + "fields": ["name"], + "expression": ["not", ["dirname", ".git"]] + }] + END + + # Uncomment for debugging the watchman query + # open (my $fh, ">", ".git/watchman-query.json"); + # print $fh $query; + # close $fh; + + print CHLD_IN $query; + close CHLD_IN; + my $response = do {local $/; }; + + # Uncomment for debugging the watch response + # open ($fh, ">", ".git/watchman-response.json"); + # print $fh $response; + # close $fh; + + die "Watchman: command returned no output.\n" . + "Falling back to scanning...\n" if $response eq ""; + die "Watchman: command returned invalid output: $response\n" . + "Falling back to scanning...\n" unless $response =~ /^\{/; + + return $json_pkg->new->utf8->decode($response); +} + +sub is_work_tree_watched { + my ($output) = @_; + my $error = $output->{error}; + if ($error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) { + my $response = qx/watchman watch "$git_work_tree"/; + die "Failed to make watchman watch '$git_work_tree'.\n" . + "Falling back to scanning...\n" if $? != 0; + $output = $json_pkg->new->utf8->decode($response); + $error = $output->{error}; + die "Watchman: $error.\n" . + "Falling back to scanning...\n" if $error; + + # Uncomment for debugging watchman output + # open (my $fh, ">", ".git/watchman-output.out"); + # close $fh; + + # Watchman will always return all files on the first query so + # return the fast "everything is dirty" flag to git and do the + # Watchman query just to get it over with now so we won't pay + # the cost in git to look up each individual file. + my $o = watchman_clock(); + $error = $o->{error}; + + die "Watchman: $error.\n" . + "Falling back to scanning...\n" if $error; + + output_result($o->{clock}, ("/")); + return 0; + } + + die "Watchman: $error.\n" . + "Falling back to scanning...\n" if $error; + + return 1; +} + +sub get_working_dir { + my $working_dir; + if ($^O =~ 'msys' || $^O =~ 'cygwin') { + $working_dir = Win32::GetCwd(); + $working_dir =~ tr/\\/\//; + } else { + require Cwd; + $working_dir = Cwd::cwd(); + } + + return $working_dir; +} diff --git a/uartscope-git/uartscope/hooks/post-update.sample b/uartscope-git/uartscope/hooks/post-update.sample new file mode 100755 index 0000000..ec17ec1 --- /dev/null +++ b/uartscope-git/uartscope/hooks/post-update.sample @@ -0,0 +1,8 @@ +#!/bin/sh +# +# An example hook script to prepare a packed repository for use over +# dumb transports. +# +# To enable this hook, rename this file to "post-update". + +exec git update-server-info diff --git a/uartscope-git/uartscope/hooks/pre-applypatch.sample b/uartscope-git/uartscope/hooks/pre-applypatch.sample new file mode 100755 index 0000000..4142082 --- /dev/null +++ b/uartscope-git/uartscope/hooks/pre-applypatch.sample @@ -0,0 +1,14 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed +# by applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-applypatch". + +. git-sh-setup +precommit="$(git rev-parse --git-path hooks/pre-commit)" +test -x "$precommit" && exec "$precommit" ${1+"$@"} +: diff --git a/uartscope-git/uartscope/hooks/pre-commit.sample b/uartscope-git/uartscope/hooks/pre-commit.sample new file mode 100755 index 0000000..29ed5ee --- /dev/null +++ b/uartscope-git/uartscope/hooks/pre-commit.sample @@ -0,0 +1,49 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed. +# Called by "git commit" with no arguments. The hook should +# exit with non-zero status after issuing an appropriate message if +# it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-commit". + +if git rev-parse --verify HEAD >/dev/null 2>&1 +then + against=HEAD +else + # Initial commit: diff against an empty tree object + against=$(git hash-object -t tree /dev/null) +fi + +# If you want to allow non-ASCII filenames set this variable to true. +allownonascii=$(git config --type=bool hooks.allownonascii) + +# Redirect output to stderr. +exec 1>&2 + +# Cross platform projects tend to avoid non-ASCII filenames; prevent +# them from being added to the repository. We exploit the fact that the +# printable range starts at the space character and ends with tilde. +if [ "$allownonascii" != "true" ] && + # Note that the use of brackets around a tr range is ok here, (it's + # even required, for portability to Solaris 10's /usr/bin/tr), since + # the square bracket bytes happen to fall in the designated range. + test $(git diff-index --cached --name-only --diff-filter=A -z $against | + LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 +then + cat <<\EOF +Error: Attempt to add a non-ASCII file name. + +This can cause problems if you want to work with people on other platforms. + +To be portable it is advisable to rename the file. + +If you know what you are doing you can disable this check using: + + git config hooks.allownonascii true +EOF + exit 1 +fi + +# If there are whitespace errors, print the offending file names and fail. +exec git diff-index --check --cached $against -- diff --git a/uartscope-git/uartscope/hooks/pre-merge-commit.sample b/uartscope-git/uartscope/hooks/pre-merge-commit.sample new file mode 100755 index 0000000..399eab1 --- /dev/null +++ b/uartscope-git/uartscope/hooks/pre-merge-commit.sample @@ -0,0 +1,13 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed. +# Called by "git merge" with no arguments. The hook should +# exit with non-zero status after issuing an appropriate message to +# stderr if it wants to stop the merge commit. +# +# To enable this hook, rename this file to "pre-merge-commit". + +. git-sh-setup +test -x "$GIT_DIR/hooks/pre-commit" && + exec "$GIT_DIR/hooks/pre-commit" +: diff --git a/uartscope-git/uartscope/hooks/pre-push.sample b/uartscope-git/uartscope/hooks/pre-push.sample new file mode 100755 index 0000000..4ce688d --- /dev/null +++ b/uartscope-git/uartscope/hooks/pre-push.sample @@ -0,0 +1,53 @@ +#!/bin/sh + +# An example hook script to verify what is about to be pushed. Called by "git +# push" after it has checked the remote status, but before anything has been +# pushed. If this script exits with a non-zero status nothing will be pushed. +# +# This hook is called with the following parameters: +# +# $1 -- Name of the remote to which the push is being done +# $2 -- URL to which the push is being done +# +# If pushing without using a named remote those arguments will be equal. +# +# Information about the commits which are being pushed is supplied as lines to +# the standard input in the form: +# +# +# +# This sample shows how to prevent push of commits where the log message starts +# with "WIP" (work in progress). + +remote="$1" +url="$2" + +zero=$(git hash-object --stdin &2 "Found WIP commit in $local_ref, not pushing" + exit 1 + fi + fi +done + +exit 0 diff --git a/uartscope-git/uartscope/hooks/pre-rebase.sample b/uartscope-git/uartscope/hooks/pre-rebase.sample new file mode 100755 index 0000000..6cbef5c --- /dev/null +++ b/uartscope-git/uartscope/hooks/pre-rebase.sample @@ -0,0 +1,169 @@ +#!/bin/sh +# +# Copyright (c) 2006, 2008 Junio C Hamano +# +# The "pre-rebase" hook is run just before "git rebase" starts doing +# its job, and can prevent the command from running by exiting with +# non-zero status. +# +# The hook is called with the following parameters: +# +# $1 -- the upstream the series was forked from. +# $2 -- the branch being rebased (or empty when rebasing the current branch). +# +# This sample shows how to prevent topic branches that are already +# merged to 'next' branch from getting rebased, because allowing it +# would result in rebasing already published history. + +publish=next +basebranch="$1" +if test "$#" = 2 +then + topic="refs/heads/$2" +else + topic=`git symbolic-ref HEAD` || + exit 0 ;# we do not interrupt rebasing detached HEAD +fi + +case "$topic" in +refs/heads/??/*) + ;; +*) + exit 0 ;# we do not interrupt others. + ;; +esac + +# Now we are dealing with a topic branch being rebased +# on top of master. Is it OK to rebase it? + +# Does the topic really exist? +git show-ref -q "$topic" || { + echo >&2 "No such branch $topic" + exit 1 +} + +# Is topic fully merged to master? +not_in_master=`git rev-list --pretty=oneline ^master "$topic"` +if test -z "$not_in_master" +then + echo >&2 "$topic is fully merged to master; better remove it." + exit 1 ;# we could allow it, but there is no point. +fi + +# Is topic ever merged to next? If so you should not be rebasing it. +only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` +only_next_2=`git rev-list ^master ${publish} | sort` +if test "$only_next_1" = "$only_next_2" +then + not_in_topic=`git rev-list "^$topic" master` + if test -z "$not_in_topic" + then + echo >&2 "$topic is already up to date with master" + exit 1 ;# we could allow it, but there is no point. + else + exit 0 + fi +else + not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` + /usr/bin/perl -e ' + my $topic = $ARGV[0]; + my $msg = "* $topic has commits already merged to public branch:\n"; + my (%not_in_next) = map { + /^([0-9a-f]+) /; + ($1 => 1); + } split(/\n/, $ARGV[1]); + for my $elem (map { + /^([0-9a-f]+) (.*)$/; + [$1 => $2]; + } split(/\n/, $ARGV[2])) { + if (!exists $not_in_next{$elem->[0]}) { + if ($msg) { + print STDERR $msg; + undef $msg; + } + print STDERR " $elem->[1]\n"; + } + } + ' "$topic" "$not_in_next" "$not_in_master" + exit 1 +fi + +<<\DOC_END + +This sample hook safeguards topic branches that have been +published from being rewound. + +The workflow assumed here is: + + * Once a topic branch forks from "master", "master" is never + merged into it again (either directly or indirectly). + + * Once a topic branch is fully cooked and merged into "master", + it is deleted. If you need to build on top of it to correct + earlier mistakes, a new topic branch is created by forking at + the tip of the "master". This is not strictly necessary, but + it makes it easier to keep your history simple. + + * Whenever you need to test or publish your changes to topic + branches, merge them into "next" branch. + +The script, being an example, hardcodes the publish branch name +to be "next", but it is trivial to make it configurable via +$GIT_DIR/config mechanism. + +With this workflow, you would want to know: + +(1) ... if a topic branch has ever been merged to "next". Young + topic branches can have stupid mistakes you would rather + clean up before publishing, and things that have not been + merged into other branches can be easily rebased without + affecting other people. But once it is published, you would + not want to rewind it. + +(2) ... if a topic branch has been fully merged to "master". + Then you can delete it. More importantly, you should not + build on top of it -- other people may already want to + change things related to the topic as patches against your + "master", so if you need further changes, it is better to + fork the topic (perhaps with the same name) afresh from the + tip of "master". + +Let's look at this example: + + o---o---o---o---o---o---o---o---o---o "next" + / / / / + / a---a---b A / / + / / / / + / / c---c---c---c B / + / / / \ / + / / / b---b C \ / + / / / / \ / + ---o---o---o---o---o---o---o---o---o---o---o "master" + + +A, B and C are topic branches. + + * A has one fix since it was merged up to "next". + + * B has finished. It has been fully merged up to "master" and "next", + and is ready to be deleted. + + * C has not merged to "next" at all. + +We would want to allow C to be rebased, refuse A, and encourage +B to be deleted. + +To compute (1): + + git rev-list ^master ^topic next + git rev-list ^master next + + if these match, topic has not merged in next at all. + +To compute (2): + + git rev-list master..topic + + if this is empty, it is fully merged to "master". + +DOC_END diff --git a/uartscope-git/uartscope/hooks/pre-receive.sample b/uartscope-git/uartscope/hooks/pre-receive.sample new file mode 100755 index 0000000..a1fd29e --- /dev/null +++ b/uartscope-git/uartscope/hooks/pre-receive.sample @@ -0,0 +1,24 @@ +#!/bin/sh +# +# An example hook script to make use of push options. +# The example simply echoes all push options that start with 'echoback=' +# and rejects all pushes when the "reject" push option is used. +# +# To enable this hook, rename this file to "pre-receive". + +if test -n "$GIT_PUSH_OPTION_COUNT" +then + i=0 + while test "$i" -lt "$GIT_PUSH_OPTION_COUNT" + do + eval "value=\$GIT_PUSH_OPTION_$i" + case "$value" in + echoback=*) + echo "echo from the pre-receive-hook: ${value#*=}" >&2 + ;; + reject) + exit 1 + esac + i=$((i + 1)) + done +fi diff --git a/uartscope-git/uartscope/hooks/prepare-commit-msg.sample b/uartscope-git/uartscope/hooks/prepare-commit-msg.sample new file mode 100755 index 0000000..10fa14c --- /dev/null +++ b/uartscope-git/uartscope/hooks/prepare-commit-msg.sample @@ -0,0 +1,42 @@ +#!/bin/sh +# +# An example hook script to prepare the commit log message. +# Called by "git commit" with the name of the file that has the +# commit message, followed by the description of the commit +# message's source. The hook's purpose is to edit the commit +# message file. If the hook fails with a non-zero status, +# the commit is aborted. +# +# To enable this hook, rename this file to "prepare-commit-msg". + +# This hook includes three examples. The first one removes the +# "# Please enter the commit message..." help message. +# +# The second includes the output of "git diff --name-status -r" +# into the message, just before the "git status" output. It is +# commented because it doesn't cope with --amend or with squashed +# commits. +# +# The third example adds a Signed-off-by line to the message, that can +# still be edited. This is rarely a good idea. + +COMMIT_MSG_FILE=$1 +COMMIT_SOURCE=$2 +SHA1=$3 + +/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" + +# case "$COMMIT_SOURCE,$SHA1" in +# ,|template,) +# /usr/bin/perl -i.bak -pe ' +# print "\n" . `git diff --cached --name-status -r` +# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; +# *) ;; +# esac + +# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" +# if test -z "$COMMIT_SOURCE" +# then +# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" +# fi diff --git a/uartscope-git/uartscope/hooks/push-to-checkout.sample b/uartscope-git/uartscope/hooks/push-to-checkout.sample new file mode 100755 index 0000000..af5a0c0 --- /dev/null +++ b/uartscope-git/uartscope/hooks/push-to-checkout.sample @@ -0,0 +1,78 @@ +#!/bin/sh + +# An example hook script to update a checked-out tree on a git push. +# +# This hook is invoked by git-receive-pack(1) when it reacts to git +# push and updates reference(s) in its repository, and when the push +# tries to update the branch that is currently checked out and the +# receive.denyCurrentBranch configuration variable is set to +# updateInstead. +# +# By default, such a push is refused if the working tree and the index +# of the remote repository has any difference from the currently +# checked out commit; when both the working tree and the index match +# the current commit, they are updated to match the newly pushed tip +# of the branch. This hook is to be used to override the default +# behaviour; however the code below reimplements the default behaviour +# as a starting point for convenient modification. +# +# The hook receives the commit with which the tip of the current +# branch is going to be updated: +commit=$1 + +# It can exit with a non-zero status to refuse the push (when it does +# so, it must not modify the index or the working tree). +die () { + echo >&2 "$*" + exit 1 +} + +# Or it can make any necessary changes to the working tree and to the +# index to bring them to the desired state when the tip of the current +# branch is updated to the new commit, and exit with a zero status. +# +# For example, the hook can simply run git read-tree -u -m HEAD "$1" +# in order to emulate git fetch that is run in the reverse direction +# with git push, as the two-tree form of git read-tree -u -m is +# essentially the same as git switch or git checkout that switches +# branches while keeping the local changes in the working tree that do +# not interfere with the difference between the branches. + +# The below is a more-or-less exact translation to shell of the C code +# for the default behaviour for git's push-to-checkout hook defined in +# the push_to_deploy() function in builtin/receive-pack.c. +# +# Note that the hook will be executed from the repository directory, +# not from the working tree, so if you want to perform operations on +# the working tree, you will have to adapt your code accordingly, e.g. +# by adding "cd .." or using relative paths. + +if ! git update-index -q --ignore-submodules --refresh +then + die "Up-to-date check failed" +fi + +if ! git diff-files --quiet --ignore-submodules -- +then + die "Working directory has unstaged changes" +fi + +# This is a rough translation of: +# +# head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX +if git cat-file -e HEAD 2>/dev/null +then + head=HEAD +else + head=$(git hash-object -t tree --stdin &2 + exit 1 +} + +unset GIT_DIR GIT_WORK_TREE +cd "$worktree" && + +if grep -q "^diff --git " "$1" +then + validate_patch "$1" +else + validate_cover_letter "$1" +fi && + +if test "$GIT_SENDEMAIL_FILE_COUNTER" = "$GIT_SENDEMAIL_FILE_TOTAL" +then + git config --unset-all sendemail.validateWorktree && + trap 'git worktree remove -ff "$worktree"' EXIT && + validate_series +fi diff --git a/uartscope-git/uartscope/hooks/update.sample b/uartscope-git/uartscope/hooks/update.sample new file mode 100755 index 0000000..c4d426b --- /dev/null +++ b/uartscope-git/uartscope/hooks/update.sample @@ -0,0 +1,128 @@ +#!/bin/sh +# +# An example hook script to block unannotated tags from entering. +# Called by "git receive-pack" with arguments: refname sha1-old sha1-new +# +# To enable this hook, rename this file to "update". +# +# Config +# ------ +# hooks.allowunannotated +# This boolean sets whether unannotated tags will be allowed into the +# repository. By default they won't be. +# hooks.allowdeletetag +# This boolean sets whether deleting tags will be allowed in the +# repository. By default they won't be. +# hooks.allowmodifytag +# This boolean sets whether a tag may be modified after creation. By default +# it won't be. +# hooks.allowdeletebranch +# This boolean sets whether deleting branches will be allowed in the +# repository. By default they won't be. +# hooks.denycreatebranch +# This boolean sets whether remotely creating branches will be denied +# in the repository. By default this is allowed. +# + +# --- Command line +refname="$1" +oldrev="$2" +newrev="$3" + +# --- Safety check +if [ -z "$GIT_DIR" ]; then + echo "Don't run this script from the command line." >&2 + echo " (if you want, you could supply GIT_DIR then run" >&2 + echo " $0 )" >&2 + exit 1 +fi + +if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then + echo "usage: $0 " >&2 + exit 1 +fi + +# --- Config +allowunannotated=$(git config --type=bool hooks.allowunannotated) +allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch) +denycreatebranch=$(git config --type=bool hooks.denycreatebranch) +allowdeletetag=$(git config --type=bool hooks.allowdeletetag) +allowmodifytag=$(git config --type=bool hooks.allowmodifytag) + +# check for no description +projectdesc=$(sed -e '1q' "$GIT_DIR/description") +case "$projectdesc" in +"Unnamed repository"* | "") + echo "*** Project description file hasn't been set" >&2 + exit 1 + ;; +esac + +# --- Check types +# if $newrev is 0000...0000, it's a commit to delete a ref. +zero=$(git hash-object --stdin &2 + echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 + exit 1 + fi + ;; + refs/tags/*,delete) + # delete tag + if [ "$allowdeletetag" != "true" ]; then + echo "*** Deleting a tag is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/tags/*,tag) + # annotated tag + if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 + then + echo "*** Tag '$refname' already exists." >&2 + echo "*** Modifying a tag is not allowed in this repository." >&2 + exit 1 + fi + ;; + refs/heads/*,commit) + # branch + if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then + echo "*** Creating a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/heads/*,delete) + # delete branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/remotes/*,commit) + # tracking branch + ;; + refs/remotes/*,delete) + # delete tracking branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a tracking branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + *) + # Anything else (is there anything else?) + echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 + exit 1 + ;; +esac + +# --- Finished +exit 0 diff --git a/uartscope-git/uartscope/info/attributes b/uartscope-git/uartscope/info/attributes new file mode 100644 index 0000000..1c897b7 --- /dev/null +++ b/uartscope-git/uartscope/info/attributes @@ -0,0 +1 @@ +* -export-subst -export-ignore diff --git a/uartscope-git/uartscope/info/exclude b/uartscope-git/uartscope/info/exclude new file mode 100644 index 0000000..a5196d1 --- /dev/null +++ b/uartscope-git/uartscope/info/exclude @@ -0,0 +1,6 @@ +# git ls-files --others --exclude-from=.git/info/exclude +# Lines that start with '#' are comments. +# For a project mostly in C, the following would be a good set of +# exclude patterns (uncomment them if you want to use them): +# *.[oa] +# *~ diff --git a/uartscope-git/uartscope/objects/pack/pack-823ae2a6cd3991a03d8df5e289b3ef39fb9cef25.idx b/uartscope-git/uartscope/objects/pack/pack-823ae2a6cd3991a03d8df5e289b3ef39fb9cef25.idx new file mode 100644 index 0000000..2e7bf1c Binary files /dev/null and b/uartscope-git/uartscope/objects/pack/pack-823ae2a6cd3991a03d8df5e289b3ef39fb9cef25.idx differ diff --git a/uartscope-git/uartscope/objects/pack/pack-823ae2a6cd3991a03d8df5e289b3ef39fb9cef25.pack b/uartscope-git/uartscope/objects/pack/pack-823ae2a6cd3991a03d8df5e289b3ef39fb9cef25.pack new file mode 100644 index 0000000..6c22fd0 Binary files /dev/null and b/uartscope-git/uartscope/objects/pack/pack-823ae2a6cd3991a03d8df5e289b3ef39fb9cef25.pack differ diff --git a/uartscope-git/uartscope/objects/pack/pack-823ae2a6cd3991a03d8df5e289b3ef39fb9cef25.rev b/uartscope-git/uartscope/objects/pack/pack-823ae2a6cd3991a03d8df5e289b3ef39fb9cef25.rev new file mode 100644 index 0000000..b678457 Binary files /dev/null and b/uartscope-git/uartscope/objects/pack/pack-823ae2a6cd3991a03d8df5e289b3ef39fb9cef25.rev differ diff --git a/uartscope-git/uartscope/packed-refs b/uartscope-git/uartscope/packed-refs new file mode 100644 index 0000000..6c563bb --- /dev/null +++ b/uartscope-git/uartscope/packed-refs @@ -0,0 +1,2 @@ +# pack-refs with: peeled fully-peeled sorted +cc102c93eb17f7b910d8e74c3505f198bed77f10 refs/heads/main diff --git a/uartscope-git/uartscope/refs/tags/v1.0.0 b/uartscope-git/uartscope/refs/tags/v1.0.0 new file mode 100644 index 0000000..f51f926 --- /dev/null +++ b/uartscope-git/uartscope/refs/tags/v1.0.0 @@ -0,0 +1 @@ +cc102c93eb17f7b910d8e74c3505f198bed77f10