mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-04 19:02:19 +00:00
Compare commits
52 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e80ad9669d | |||
| 237fb216c9 | |||
| fd998800c0 | |||
| 6b45a7f598 | |||
| ccc63bc233 | |||
| a377136aae | |||
| e81251e859 | |||
| 0027057fa6 | |||
| b1c1577e5a | |||
| 08f9baac53 | |||
| 09b93937d6 | |||
| e3ec90b5cc | |||
| 26e05c9d5a | |||
| 3f33c63ace | |||
| 219a531185 | |||
| d14132cb38 | |||
| 2eb475181d | |||
| 73705739ee | |||
| bdcc78dd0e | |||
| 6ba3d0ff10 | |||
| 36775fa469 | |||
| ccb25ee948 | |||
| cc4337c775 | |||
| 0101592351 | |||
| 551d4888cc | |||
| 27ba585bb7 | |||
| 95b85adc13 | |||
| 5a9a0f0fa2 | |||
| 5fb59d1f0d | |||
| 23eb38c664 | |||
| 1fcf18c3f2 | |||
| 5359a1afdb | |||
| 47c4d26592 | |||
| 7b5a05066f | |||
| 46514db20a | |||
| 14eea54182 | |||
| ffc673f0cb | |||
| 4fbe8f615b | |||
| 45f547a0e6 | |||
| 44e5d13f50 | |||
| f82825de56 | |||
| 0b11e50133 | |||
| 52c2d7b79b | |||
| 8d436f2f4a | |||
| 51baede608 | |||
| b7527cc220 | |||
| 807d0e2adc | |||
| 08c65900b4 | |||
| 59ccf2c5bc | |||
| 1da6d0111b | |||
| 7a9c8760db | |||
| 7e3e872a79 |
@@ -2,9 +2,6 @@
|
||||
"name": "Terra Devcontainer",
|
||||
"image": "ghcr.io/terrapkg/builder:frawhide",
|
||||
"runArgs": ["--privileged"],
|
||||
"features": {
|
||||
"ghcr.io/devcontainers/features/common-utils:2": {}
|
||||
},
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
|
||||
@@ -33,7 +33,7 @@ jobs:
|
||||
- name: Set workspace as safe
|
||||
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Generate build matrix
|
||||
|
||||
@@ -24,7 +24,7 @@ jobs:
|
||||
dnf5 swap -y --setopt=install_weak_deps=False systemd-standalone-sysusers systemd
|
||||
dnf5 install -y --setopt=install_weak_deps=False curl wget git-core openssl-devel cargo podman fuse-overlayfs dnf5-plugins rpmbuild script
|
||||
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
with:
|
||||
ref: f${{ matrix.version }}
|
||||
fetch-depth: 1
|
||||
|
||||
@@ -32,7 +32,7 @@ jobs:
|
||||
options: --cap-add=SYS_ADMIN --privileged
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Setup Git
|
||||
|
||||
@@ -51,7 +51,7 @@ jobs:
|
||||
options: --cap-add=SYS_ADMIN --privileged
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: "Checkout code"
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
@@ -73,6 +73,6 @@ jobs:
|
||||
# Upload the results to GitHub's code scanning dashboard (optional).
|
||||
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
|
||||
- name: "Upload to code-scanning"
|
||||
uses: github/codeql-action/upload-sarif@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
|
||||
uses: github/codeql-action/upload-sarif@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4
|
||||
with:
|
||||
sarif_file: results.sarif
|
||||
|
||||
@@ -24,7 +24,7 @@ jobs:
|
||||
options: --cap-add=SYS_ADMIN --privileged
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
with:
|
||||
ref: ${{ matrix.branch }}
|
||||
fetch-depth: 0
|
||||
|
||||
@@ -20,7 +20,7 @@ jobs:
|
||||
container:
|
||||
image: ghcr.io/terrapkg/builder:frawhide
|
||||
steps:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
- name: Push to subatomic
|
||||
run: |
|
||||
branch=${{ github.ref_name }}
|
||||
|
||||
@@ -16,7 +16,7 @@ jobs:
|
||||
options: --cap-add=SYS_ADMIN --privileged
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }}
|
||||
|
||||
@@ -16,7 +16,7 @@ jobs:
|
||||
options: --cap-add=SYS_ADMIN --privileged
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }}
|
||||
|
||||
@@ -16,7 +16,7 @@ jobs:
|
||||
options: --cap-add=SYS_ADMIN --privileged
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }}
|
||||
|
||||
@@ -13,7 +13,7 @@ This monorepo contains the package manifests for all packages in Terra.
|
||||
|
||||
## Installation
|
||||
|
||||
The latest detailed instructions are available in our Devdocs: https://developer.fyralabs.com/terra/installing
|
||||
The latest detailed instructions are available in our docs: https://docs.terrapkg.com/usage/installing
|
||||
|
||||
### Fedora
|
||||
|
||||
@@ -56,13 +56,13 @@ sudo dnf install --nogpgcheck --repofrompath 'terra,https://repos.fyralabs.com/t
|
||||
|
||||
First of all, thanks for being interested in contributing to Terra! If you have any questions about contributing, please [join our chats](https://wiki.ultramarine-linux.org/en/community/community/).
|
||||
|
||||
- [Contribution Guide](https://developer.fyralabs.com/terra/contributing)
|
||||
- [FAQ](https://developer.fyralabs.com/terra/faq)
|
||||
- [Guidelines](https://developer.fyralabs.com/terra/guidelines)
|
||||
- [Contribution Guide](https://docs.terrapkg.com/contributing/getting-started)
|
||||
- [FAQ](https://docs.terrapkg.com/reference/faq)
|
||||
- [Guidelines](https://docs.terrapkg.com/contributing/guidelines)
|
||||
|
||||
## Documentation
|
||||
|
||||
Our documentation can be found on our [Devdocs](https://developer.fyralabs.com/terra/).
|
||||
Our documentation can be found on our [docs site](https://docs.terrapkg.com).
|
||||
|
||||
## Searching Packages
|
||||
|
||||
@@ -72,6 +72,6 @@ Our documentation can be found on our [Devdocs](https://developer.fyralabs.com/t
|
||||
|
||||
Feel free to reach out by [joining our community](https://wiki.ultramarine-linux.org/en/community/community/). We're always happy to help!
|
||||
|
||||
- [Contribution Guide](https://developer.fyralabs.com/terra/contributing)
|
||||
- [FAQ](https://developer.fyralabs.com/terra/faq)
|
||||
- [Guidelines](https://developer.fyralabs.com/terra/guidelines)
|
||||
- [Contribution Guide](https://docs.terrapkg.com/contributing/getting-started)
|
||||
- [FAQ](https://docs.terrapkg.com/reference/faq)
|
||||
- [Guidelines](https://docs.terrapkg.com/contributing/guidelines)
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "bazzite-updater.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
%global appid io.github.rfrench3.bazzite-updater
|
||||
|
||||
Name: bazzite-updater
|
||||
Version: 0.7.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Update your Bazzite system
|
||||
|
||||
License: GPL-2.0-or-later AND BSD-3-Clause AND CC0-1.0
|
||||
URL: https://github.com/rfrench3/bazzite-updater
|
||||
Source0: %{url}/archive/refs/tags/%{version}.tar.gz
|
||||
|
||||
Packager: Robert French <frenchrobertm@outlook.com>
|
||||
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: libappstream-glib
|
||||
BuildRequires: systemd-rpm-macros
|
||||
|
||||
BuildRequires: cmake
|
||||
BuildRequires: extra-cmake-modules
|
||||
BuildRequires: kf6-rpm-macros
|
||||
BuildRequires: cmake(SDL3)
|
||||
BuildRequires: cmake(Qt6Core)
|
||||
BuildRequires: cmake(Qt6Gui)
|
||||
BuildRequires: cmake(Qt6Qml)
|
||||
BuildRequires: cmake(Qt6QuickControls2)
|
||||
BuildRequires: cmake(Qt6Svg)
|
||||
BuildRequires: cmake(Qt6Widgets)
|
||||
|
||||
BuildRequires: cmake(KF6Kirigami)
|
||||
BuildRequires: cmake(KF6CoreAddons)
|
||||
BuildRequires: cmake(KF6Config)
|
||||
BuildRequires: cmake(KF6I18n)
|
||||
BuildRequires: cmake(KF6IconThemes)
|
||||
BuildRequires: cmake(KF6KirigamiAddons)
|
||||
|
||||
Requires: kf6-kirigami%{?_isa}
|
||||
Requires: kf6-kirigami-addons%{?_isa}
|
||||
Requires: kf6-qqc2-desktop-style%{?_isa}
|
||||
Requires: which%{?_isa}
|
||||
Requires: qt6-controllable%{?_isa}
|
||||
Requires: uupd%{?_isa}
|
||||
Requires: hicolor-icon-theme
|
||||
|
||||
Provides: bazzite-updater = %{evr}
|
||||
|
||||
%description
|
||||
This is a convenient, easy-to-use interface for updating your Bazzite system.
|
||||
- Simple and powerful
|
||||
- Full support for all input types (keyboard/mouse, controller, touchscreen)
|
||||
|
||||
%prep
|
||||
%autosetup
|
||||
|
||||
%conf
|
||||
%cmake
|
||||
|
||||
%build
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%check
|
||||
appstream-util validate-relax --nonet %{buildroot}%{_kf6_metainfodir}/%{appid}.*.xml || :
|
||||
desktop-file-validate %{buildroot}%{_kf6_datadir}/applications/%{appid}.desktop
|
||||
|
||||
%files
|
||||
%license LICENSES/{BSD-3-Clause.txt,CC0-1.0.txt,GPL-2.0-or-later.txt}
|
||||
%doc README.md
|
||||
%{_bindir}/bazzite-updater
|
||||
%{_appsdir}/%{appid}.desktop
|
||||
%{_metainfodir}/%{appid}.*.xml
|
||||
%{_scalableiconsdir}/%{appid}.svg
|
||||
|
||||
%changelog
|
||||
* Thu Feb 05 2026 Robert French
|
||||
- Initial rpm build of Bazzite Updater
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(gh("rfrench3/bazzite-updater"));
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-canary-openasar
|
||||
Version: 1.0.1174
|
||||
Version: 1.0.1193
|
||||
Release: 1%{?dist}
|
||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||
License: MIT AND https://discord.com/terms
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: discord-canary
|
||||
Version: 1.0.1174
|
||||
Version: 1.0.1193
|
||||
Release: 1%{?dist}
|
||||
Summary: Free Voice and Text Chat for Gamers
|
||||
URL: discord.com
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-openasar
|
||||
Version: 1.0.140
|
||||
Version: 1.0.141
|
||||
Release: 1%{?dist}
|
||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||
License: MIT AND https://discord.com/terms
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: discord
|
||||
Version: 1.0.140
|
||||
Version: 1.0.141
|
||||
Release: 1%{?dist}
|
||||
Summary: Free Voice and Text Chat for Gamers
|
||||
URL: https://discord.com
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: feishin
|
||||
Version: 1.12.1
|
||||
Version: 1.13.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A modern self-hosted music player
|
||||
License: GPL-3.0
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
%global crate halloy
|
||||
|
||||
Name: halloy
|
||||
Version: 2026.7
|
||||
Version: 2026.7.1
|
||||
Release: 1%{?dist}
|
||||
Summary: An open-source IRC client written in Rust, with the Iced GUI library
|
||||
Packager: Yoong jin <solomoncyj@gmail.com>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global pure_protobuf_version 2.0.0
|
||||
|
||||
Name: komikku
|
||||
Version: 50.4.0
|
||||
Version: 50.5.0
|
||||
%forgemeta
|
||||
Release: 1%{?dist}
|
||||
Summary: A manga reader for GNOME
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 9ac2f6b627bb4cbed62e3aeb76009ffff77bae70
|
||||
%global commit_date 20260529
|
||||
%global commit 43ad9637ba468bc71e3a73fc9204813148156e4e
|
||||
%global commit_date 20260604
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global debug_package %nil
|
||||
%global __strip /bin/true
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Disable X11 for RHEL 10+
|
||||
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
|
||||
|
||||
%global commit 74271a7d80f6c59185699d0d6d2d0b64bcbe90ae
|
||||
%global commit 1d82932ccebd562a3edb85581c93d89d5c904b26
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260531
|
||||
%global commit_date 20260604
|
||||
%global ver 0.41.0
|
||||
|
||||
Name: mpv-nightly
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global metainfo_commit 6599eae1839ec24e04a4f8805a3517f432190df6
|
||||
%global metainfo_commit 47f57d55cc9897a31ac8d0a6411def15cddfe1c4
|
||||
|
||||
Name: proton-vpn-gtk-app
|
||||
Version: 4.16.4
|
||||
Version: 4.16.5
|
||||
Release: 1%{?dist}
|
||||
Summary: Official ProtonVPN Linux app
|
||||
License: GPL-3.0-only
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
%global ver 2026-05-31
|
||||
%global ver 2026-06-04
|
||||
%global goodver %(echo %ver | sed 's/-//g')
|
||||
%global __brp_mangle_shebangs %{nil}
|
||||
%bcond_without mold
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
Name: signal-desktop
|
||||
%electronmeta -aD
|
||||
Version: 8.12.0
|
||||
Version: 8.13.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A private messenger for Windows, macOS, and Linux
|
||||
URL: https://signal.org
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: spotify-launcher
|
||||
Version: 0.6.5
|
||||
Release: 3%?dist
|
||||
Version: 0.6.6
|
||||
Release: 1%{?dist}
|
||||
Summary: Client for spotify's apt repository in Rust
|
||||
License: Apache-2.0 AND MIT AND ((Apache-2.0 OR MIT) AND BSD-3-Clause) AND ((MIT OR Apache-2.0) AND Unicode-3.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-3-Clause AND CDLA-Permissive-2.0 AND ISC AND (ISC AND (Apache-2.0 OR ISC)) AND (ISC AND (Apache-2.0 OR ISC) AND OpenSSL) AND (MIT OR Apache-2.0) AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND MPL-2.0 AND Unicode-3.0 AND (Unlicense OR MIT) AND Zlib
|
||||
Packager: veuxit <erroor234@gmail.com>
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
%global realname subtitleedit
|
||||
|
||||
Name: %realname.bin
|
||||
Version: 4.0.15
|
||||
Release: 1%?dist
|
||||
Version: 4.0.16
|
||||
Release: 1%{?dist}
|
||||
Summary: An advanced subtitle editor and converter
|
||||
License: GPL-3.0-only
|
||||
URL: https://www.nikse.dk/SubtitleEdit
|
||||
|
||||
@@ -1 +1 @@
|
||||
v1.13.12
|
||||
v1.13.13
|
||||
@@ -3,7 +3,7 @@
|
||||
%global crate anda
|
||||
|
||||
Name: anda
|
||||
Version: 0.6.0
|
||||
Version: 0.7.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Andaman Build toolchain
|
||||
SourceLicense: MIT
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global crate mise
|
||||
|
||||
Name: rust-mise
|
||||
Version: 2026.5.17
|
||||
Version: 2026.6.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Front-end to your dev env
|
||||
|
||||
|
||||
@@ -1,4 +1 @@
|
||||
let versions = get("https://muon.build/releases/").json().keys();
|
||||
versions.sort();
|
||||
versions.pop();
|
||||
rpm.version(versions.pop());
|
||||
rpm.version(sourcehut("~lattis/muon"));
|
||||
|
||||
@@ -14,7 +14,7 @@ BuildRequires: meson
|
||||
BuildRequires: vala
|
||||
BuildRequires: intltool
|
||||
|
||||
BuildRequires: pkgconfig(budgie-1.0)
|
||||
BuildRequires: pkgconfig(budgie-3.0)
|
||||
BuildRequires: pkgconfig(gee-0.8)
|
||||
BuildRequires: pkgconfig(gnome-settings-daemon)
|
||||
BuildRequires: pkgconfig(json-glib-1.0)
|
||||
@@ -25,6 +25,9 @@ BuildRequires: pkgconfig(libnma)
|
||||
BuildRequires: pkgconfig(libnotify)
|
||||
BuildRequires: pkgconfig(libsoup-2.4)
|
||||
BuildRequires: pkgconfig(libwnck-3.0)
|
||||
BuildRequires: pkgconfig(libpeas-2)
|
||||
BuildRequires: pkgconfig(libxfce4windowing-0)
|
||||
BuildRequires: pkgconfig(gtk-layer-shell-0)
|
||||
|
||||
BuildRequires: pkgconfig(appstream)
|
||||
BuildRequires: pkgconfig(granite)
|
||||
@@ -129,13 +132,6 @@ Summary: Shows the time in a Fuzzy Way
|
||||
%description -n budgie-applet-fuzzyclock
|
||||
%{summary}
|
||||
|
||||
%package -n budgie-applet-hotcorners
|
||||
Requires: budgie-extras-common
|
||||
Summary: Applet providing hotcorners capabilities for the Budgie Desktop
|
||||
%description -n budgie-applet-hotcorners
|
||||
The hotcorners applet allow user defined commands to be executed
|
||||
when the mouse cursor is pushed into a corner of the main desktop.
|
||||
|
||||
%package -n budgie-applet-kangaroo
|
||||
Requires: budgie-extras-common
|
||||
Summary: Applet to allow quick file-browsing
|
||||
@@ -144,15 +140,6 @@ The kangaroo applet allows for quick & easy browsing, across
|
||||
(possibly) many directory layers, without having to do a single mouse
|
||||
click.
|
||||
|
||||
%package -n budgie-applet-keyboard-autoswitch
|
||||
Requires: budgie-extras-common
|
||||
Summary: Applet adding the ability to set a different keyboard layout per application
|
||||
%description -n budgie-applet-keyboard-autoswitch
|
||||
The Keyboard Auto Switcher applet provides the user the ability to set
|
||||
a different keyboard layout per application. Exceptions to the default
|
||||
layout can be set by simply choosing a different layout using the
|
||||
Keyboard Layout applet.
|
||||
|
||||
%package -n budgie-applet-network-manager
|
||||
Requires: budgie-extras-common
|
||||
Summary: A fork of Wingpanel Network Indicator, ported to budgie desktop
|
||||
@@ -181,12 +168,11 @@ Summary: Applet displays files recently accessed for the Budgie Desktop
|
||||
The recentlyused applet displays the users files that have been opened
|
||||
or created within a configurable period of time.
|
||||
|
||||
%package -n budgie-applet-rotation-lock
|
||||
%package -n budgie-applet-screencast
|
||||
Requires: budgie-extras-common
|
||||
Summary: Applet to lock or unlock the screen rotation
|
||||
%description -n budgie-applet-rotation-lock
|
||||
The Rotation Lock applet provides the user an easy way to lock or
|
||||
unlock the screen rotation.
|
||||
Summary: Applet wrapper around wf-recorder
|
||||
%description -n budgie-applet-screencast
|
||||
Applet wrapper around wf-recorder. Allows recording of whole screen displays or areas.
|
||||
|
||||
%package -n budgie-applet-showtime
|
||||
Requires: budgie-extras-common
|
||||
@@ -227,31 +213,6 @@ Summary: Applet to display the weather and forecast
|
||||
The weathershow applet displays daily and three hourly weather
|
||||
forecasts on both the desktop and a Popover.
|
||||
|
||||
%package -n budgie-applet-window-shuffler
|
||||
Requires: budgie-extras-common
|
||||
Requires: budgie-extras-daemon
|
||||
Summary: Budgie Window Shuffler
|
||||
%description -n budgie-applet-window-shuffler
|
||||
%{summary}
|
||||
|
||||
%package -n budgie-applet-workspace-stopwatch
|
||||
Requires: budgie-extras-common
|
||||
Summary: An applet to keep track of usage per workspace
|
||||
%description -n budgie-applet-workspace-stopwatch
|
||||
Workspace Timer Applet is an applet to keep track of usage per workspace, e.g.
|
||||
to find out how much minutes/hours were actually spent on a job. Workspaces can
|
||||
be freely named, custom names and all data are rmembered, also after
|
||||
logout/restart, until the RESET button is pressed. The log file is updated
|
||||
onworkspace switch/clicking the icon for popup or else every 30 seconds. Time
|
||||
during suspend is automatically retracted from a workspace' time.
|
||||
|
||||
%package -n budgie-applet-wpreviews
|
||||
Requires: budgie-extras-common
|
||||
Requires: budgie-extras-daemon
|
||||
Summary: Applet providing window previews capabilities for the Budgie Desktop
|
||||
%description -n budgie-applet-wpreviews
|
||||
The Previews applet shows an overview of windows in an expose like way.
|
||||
|
||||
%package -n budgie-applet-wswitcher
|
||||
Requires: budgie-extras-common
|
||||
Requires: budgie-extras-daemon
|
||||
@@ -266,8 +227,14 @@ workspaces.
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
find . -name "meson.build" -exec sed -i "s/dependency('budgie-1.0')/dependency('budgie-3.0')/g" {} +
|
||||
find . -name "meson.build" -exec sed -i "s/dependency('libpeas-1.0')/dependency('libpeas-2')/g" {} +
|
||||
find . -name "meson.build" -exec sed -i "s/dependency('libpeas-gtk-1.0')/dependency('libpeas-2')/g" {} +
|
||||
|
||||
%conf
|
||||
%meson -Dfor-wayland=true
|
||||
|
||||
%build
|
||||
%meson
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
@@ -282,7 +249,6 @@ rm -f %{buildroot}%{_bindir}/quickchar
|
||||
|
||||
%{__ln_s} -fv %{_bindir}/quickchar %{_libdir}/quickchar/quickchar
|
||||
|
||||
|
||||
%files
|
||||
|
||||
%files common
|
||||
@@ -294,103 +260,91 @@ rm -f %{buildroot}%{_bindir}/quickchar
|
||||
%{_bindir}/budgie-extras-daemon
|
||||
%{_libdir}/budgie-extras-daemon/invoke.py
|
||||
%{_datadir}/budgie-desktop/layouts/*.layout
|
||||
%{_datadir}/budgie-extras-daemon
|
||||
%{_mandir}/man1/budgie-extras-daemon.1.gz
|
||||
|
||||
%files -n budgie-applet-app-launcher
|
||||
%{_datadir}/pixmaps/budgie-app-launcher*.svg
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-app-launcher
|
||||
%{_metainfodir}/org.ubuntubudgie.applauncher.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-applications-menu
|
||||
%{_libdir}/budgie-desktop/plugins/applications-menu
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.budgie-appmenu.gschema.xml
|
||||
#%%{_datadir}/glib-2.0/schemas/io.elementary.desktop.wingpanel.applications-menu.gschema.xml
|
||||
|
||||
%files -n budgie-applet-brightness-controller
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-brightness-controller
|
||||
%{_datadir}/pixmaps/budgie-brightness-controller-1-symbolic.svg
|
||||
%{_metainfodir}/org.ubuntubudgie.brightnesscontroller.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-clockworks
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-clockworks
|
||||
%{_datadir}/glib-2.0/schemas/*budgie-clockworks*.xml
|
||||
%{_datadir}/pixmaps/budgie-clockworks*.svg
|
||||
%{_metainfodir}/org.ubuntubudgie.clockworks.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-countdown
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-countdown
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.budgie-countdown.gschema.xml
|
||||
%{_datadir}/pixmaps/budgie-countdown-symbolic.svg
|
||||
%{_datadir}/pixmaps/cr_*.png
|
||||
%{_metainfodir}/org.ubuntubudgie.countdown.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-dropby
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-dropby
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.budgie-dropby.gschema.xml
|
||||
%{_datadir}/pixmaps/budgie-dropby*.svg
|
||||
%{_metainfodir}/org.ubuntubudgie.dropby.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-fuzzyclock
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-fuzzyclock
|
||||
|
||||
%files -n budgie-applet-hotcorners
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-hotcorners
|
||||
%config %{_sysconfdir}/xdg/autostart/org.ubuntubudgie.budgie-extras.HotCorners-autostart.desktop
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.budgie-extras.HotCorners.gschema.xml
|
||||
%{_datadir}/applications/org.ubuntubudgie.budgie-extras.HotCorners.desktop
|
||||
%{_datadir}/budgie-hotcorners
|
||||
/usr/libexec/budgie-hotcorners/
|
||||
|
||||
%{_datadir}/pixmaps/budgie-hotcorners-symbolic.svg
|
||||
%{_datadir}/pixmaps/budgie-hotcgui-*.svg
|
||||
%{_datadir}/icons/hicolor/scalable/apps/org.ubuntubudgie.budgie-extras.hotcorners.svg
|
||||
%{_metainfodir}/org.ubuntubudgie.fuzzyclock.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-kangaroo
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-kangaroo
|
||||
%{_datadir}/pixmaps/budgie-foldertrack-symbolic.svg
|
||||
|
||||
%files -n budgie-applet-keyboard-autoswitch
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-keyboard-autoswitch
|
||||
%{_datadir}/pixmaps/budgie-keyboard-autoswitch-symbolic.svg
|
||||
%{_metainfodir}/org.ubuntubudgie.kangaroo.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-network-manager
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-network-manager
|
||||
|
||||
%files -n budgie-applet-quickchar
|
||||
%config %{_sysconfdir}/xdg/autostart/quickchar-autostart.desktop
|
||||
%ghost %{_bindir}/quickchar
|
||||
%{_libdir}/quickchar
|
||||
%{_datadir}/applications/org.ubuntubudgie.quickchar.desktop
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.quickchar.gschema.xml
|
||||
%{_datadir}/quickchar/chardata
|
||||
%{_datadir}/icons/hicolor/scalable/apps/org.ubuntubudgie.quickchar.svg
|
||||
%{_mandir}/man1/quickchar.1.gz
|
||||
%{_datadir}/metainfo/org.ubuntubudgie.quickchar.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-quicknote
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-quicknote
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.quicknote.gschema.xml
|
||||
%{_datadir}/pixmaps/budgie-quicknote-symbolic.svg
|
||||
%{_metainfodir}/org.ubuntubudgie.quicknote.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-recentlyused
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-recentlyused
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.budgie-recentlyused.gschema.xml
|
||||
%{_metainfodir}/org.ubuntubudgie.recentlyused.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-rotation-lock
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-rotation-lock
|
||||
%{_datadir}/pixmaps/budgie-rotation-*.svg
|
||||
%files -n budgie-applet-screencast
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-screencast/BudgieScreencast.plugin
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-screencast/libbudgie-screencast.so
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.budgie-screencast.gschema.xml
|
||||
%{_datadir}/pixmaps/budgie-screencast-symbolic.svg
|
||||
|
||||
%files -n budgie-applet-showtime
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-showtime
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.budgie-showtime.gschema.xml
|
||||
%{_libdir}/budgie-desktop/raven-plugins/org.ubuntubudgie.raven.widget.budgie-showtime/*
|
||||
%{_datadir}/pixmaps/showtimenew-symbolic.svg
|
||||
%{_metainfodir}/org.ubuntubudgie.showtime.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-takeabreak
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-takeabreak
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.takeabreak.gschema.xml
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.raven.widget.budgie-showtime.gschema.xml
|
||||
%{_datadir}/pixmaps/takeabreak*.svg
|
||||
%{_metainfodir}/org.ubuntubudgie.takeabreak.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-visualspace
|
||||
%config %{_sysconfdir}/xdg/autostart/visualspace-autostart.desktop
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-visualspace
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.budgie-visualspace.gschema.xml
|
||||
%{_datadir}/pixmaps/visualspace-symbolic.svg
|
||||
%{_metainfodir}/org.ubuntubudgie.visualspace.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-wallstreet
|
||||
%config %{_sysconfdir}/xdg/autostart/wallstreet-autostart.desktop
|
||||
@@ -406,42 +360,18 @@ rm -f %{buildroot}%{_bindir}/quickchar
|
||||
%{_datadir}/budgie-desktop/budgie-weathershow/weather_icons/*
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.weathershow.gschema.xml
|
||||
%{_datadir}/pixmaps/budgie-wticon-symbolic.svg
|
||||
|
||||
%files -n budgie-applet-window-shuffler
|
||||
%config %{_sysconfdir}/xdg/autostart/layoutspopup-autostart.desktop
|
||||
%config %{_sysconfdir}/xdg/autostart/dragsnap-autostart.desktop
|
||||
%config %{_sysconfdir}/xdg/autostart/shuffler*.desktop
|
||||
%{_libdir}/budgie-window-shuffler
|
||||
%{_datadir}/applications/org.ubuntubudgie.shufflercontrol.desktop
|
||||
%{_datadir}/icons/hicolor/scalable/apps/org.ubuntubudgie.shuffler-control.svg
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.windowshuffler.gschema.xml
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.budgie-shufflerapplet.gschema.xml
|
||||
%{_datadir}/pixmaps/shuffler-*.svg
|
||||
%{_datadir}/pixmaps/shufflerapplet-*.svg
|
||||
%{_datadir}/pixmaps/dragsnapimg*.svg
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-window-shuffler/ShufflerAPplet.plugin
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-window-shuffler/libshufflerapplet.so
|
||||
%{_datadir}/metainfo/org.ubuntubudgie.shufflercontrol.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-workspace-stopwatch
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-workspace-stopwatch
|
||||
%{_datadir}/pixmaps/budgie-wstopwatch-symbolic.svg
|
||||
|
||||
%files -n budgie-applet-wpreviews
|
||||
%config %{_sysconfdir}/xdg/autostart/previews-*.desktop
|
||||
%{_libdir}/budgie-previews
|
||||
%{_datadir}/applications/org.ubuntubudgie.previewscontrols.desktop
|
||||
%{_datadir}/metainfo/org.ubuntubudgie.previewscontrols.metainfo.xml
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.budgie-wpreviews.gschema.xml
|
||||
%{_datadir}/pixmaps/budgie_wpreviews_*.png
|
||||
%{_datadir}/icons/hicolor/scalable/apps/org.ubuntubudgie.budgiewpreviews.svg
|
||||
%{_metainfodir}/org.ubuntubudgie.weathershow.metainfo.xml
|
||||
|
||||
%files -n budgie-applet-wswitcher
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-wswitcher
|
||||
%{_libdir}/budgie-desktop/raven-plugins/org.ubuntubudgie.raven.widget.budgie-wswitcher/*
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.budgie-wswitcher.gschema.xml
|
||||
%{_datadir}/pixmaps/budgie-wsw-symbolic.svg
|
||||
%{_metainfodir}/org.ubuntubudgie.wswitcher.metainfo.xml
|
||||
|
||||
%changelog
|
||||
* Tue Jun 02 2026 Owen Zimmerman <owen@fyralabs.com> - 2.2.3-1
|
||||
- Update for 2.2.3
|
||||
|
||||
* Thu Jun 09 2022 Cappy Ishihara <cappy@cappuchino.xyz> - 1.4.0-1
|
||||
- Updated to 1.4.0
|
||||
- Added requirements for Workspace Overview
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: driftwm
|
||||
Version: 0.8.1
|
||||
Version: 0.9.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A trackpad-first infinite canvas Wayland compositor
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
%global realname hyprutils
|
||||
%global ver 0.13.1
|
||||
|
||||
%global commit 3cd3972b2ee658a14d2610d8494e09259e530124
|
||||
%global commit_date 20260523
|
||||
%global commit 40ede2e7bdec80ba5d4c443160d905e9f841ae5f
|
||||
%global commit_date 20260601
|
||||
%global shortcommit %{sub %commit 1 7}
|
||||
|
||||
Name: %realname.nightly
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-system-settings
|
||||
%global commit 0583175c167ef52678fbd3ba78cc3510695cfdc6
|
||||
%global commit d3692d48fc3c3223c428ac0db56f4dc111f1f620
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-system-settings
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 434d1d8bcf68058e8fd44db75bb1b468abaad3e3
|
||||
%global commit_date 20260531
|
||||
%global commit db60bd92c5abb64b441c0f4c0112c9bcc00b034a
|
||||
%global commit_date 20260604
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
Name: libsingularity
|
||||
@@ -19,6 +19,7 @@ BuildRequires: pkgconfig(gee-0.8)
|
||||
BuildRequires: pkgconfig(json-glib-1.0)
|
||||
BuildRequires: pkgconfig(libpeas-2)
|
||||
BuildRequires: pkgconfig(libsoup-3.0)
|
||||
BuildRequires: pkgconfig(gtksourceview-5)
|
||||
|
||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
@@ -49,6 +50,7 @@ A GTK4 application and widget framework for the Singularity Desktop Environment.
|
||||
%{_libdir}/libsingularity.so.0.1.0
|
||||
%{_datadir}/vala/vapi/singularity-1.0.vapi
|
||||
%{_datadir}/vala/vapi/libsingularity-1.0.vapi
|
||||
%{_datadir}/vala/vapi/singularity-1.0.deps
|
||||
|
||||
%changelog
|
||||
* Sat May 16 2026 Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 751ccb251d9fb2c472e193bc478c3b928e3514c9
|
||||
%global commit_date 20260405
|
||||
%global commit e7c64817f0e68df1b190f0c3a544b530c71c46b0
|
||||
%global commit_date 20260603
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global goipath github.com/singularityos-lab/vetro
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
%global __requires_exclude ^libaaudio\\.so.*|^libandroid\\.so.*|^libmediandk\\.so.*|^liblog\\.so.*|^libc\\.so.*|^libm\\.so.*|^libdl\\.so.*|^libcrypt\\.so.*|^libstdc\\+\\+\\.so.*|^libncursesw\\.so.*|^libtinfo\\.so.*|^libnsl\\.so.*|^libpanelw\\.so.*$
|
||||
|
||||
Name: android-studio-canary
|
||||
Version: 2026.1.2.4
|
||||
Version: 2026.1.2.5
|
||||
Release: 1%{?dist}
|
||||
Summary: Official IDE for Android development (Canary build)
|
||||
License: Apache-2.0
|
||||
@@ -24,7 +24,7 @@ Packager: veuxit <erroor234@gmail.com>
|
||||
ExclusiveArch: x86_64
|
||||
URL: https://developer.android.com/studio/preview
|
||||
|
||||
%define suffixS quail2-canary4
|
||||
%define suffixS quail2-canary5
|
||||
|
||||
Source0: https://dl.google.com/dl/android/studio/ide-zips/%{version}/android-studio-%{suffixS}-linux.tar.gz
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
%global __requires_exclude ^libaaudio\\.so.*|^libandroid\\.so.*|^libmediandk\\.so.*|^liblog\\.so.*|^libc\\.so.*|^libm\\.so.*|^libdl\\.so.*|^libcrypt\\.so.*|^libstdc\\+\\+\\.so.*|^libncursesw\\.so.*|^libtinfo\\.so.*|^libnsl\\.so.*|^libpanelw\\.so.*$
|
||||
|
||||
Name: android-studio
|
||||
Version: 2025.3.4.7
|
||||
Version: 2026.1.1.8
|
||||
Release: 1%{?dist}
|
||||
Summary: Official IDE for Android development
|
||||
License: Apache-2.0
|
||||
@@ -24,7 +24,7 @@ Packager: veuxit <erroor234@gmail.com>, like-engels <higashikataengels@icl
|
||||
ExclusiveArch: x86_64
|
||||
URL: https://developer.android.com/studio
|
||||
|
||||
%define suffixS panda4-patch1
|
||||
%define suffixS quail1
|
||||
|
||||
Source0: https://dl.google.com/dl/android/studio/ide-zips/%{version}/android-studio-%{suffixS}-linux.tar.gz
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global crate deno
|
||||
|
||||
Name: rust-deno
|
||||
Version: 2.8.1
|
||||
Version: 2.8.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Deno executable
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: flutter
|
||||
Version: 3.44.0
|
||||
Version: 3.44.1
|
||||
Release: 1%{?dist}
|
||||
Summary: SDK for crafting beautiful, fast user experiences from a single codebase
|
||||
License: BSD-3-Clause
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 2c62d182cec246764ff725096a70b9ef44996f7f
|
||||
%global commit bfe633a9487892ff3d27ed727db540267f22ef90
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global fulldate 2026-05-30
|
||||
%global fulldate 2026-06-03
|
||||
%global commit_date %(echo %{fulldate} | sed 's/-//g')
|
||||
%global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
|
||||
%global ver 1.3.2
|
||||
|
||||
@@ -12,8 +12,8 @@
|
||||
|
||||
# Naming variable as something other than "commit" is necessary
|
||||
# to stop %%gometa from putting commit hash in release
|
||||
%global commit_hash 0b551d813fe21b9ab6f03fc97672fa8b89531a82
|
||||
%global commit_date 20260529
|
||||
%global commit_hash b75cfc79a175524839492053dab80fcee18b41bf
|
||||
%global commit_date 20260602
|
||||
%global shortcommit %{sub %{commit_hash} 1 7}
|
||||
%global ver 2.0.15
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%bcond bootstrap 0
|
||||
|
||||
Name: yarnpkg-berry
|
||||
Version: 4.15.0
|
||||
Release: 2%{?dist}
|
||||
Version: 4.16.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Active development version of Yarn
|
||||
License: BSD-2-Clause
|
||||
URL: https://yarnpkg.com
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit 09165c15dc5d1fea93604231eaf30ca4c25f1cd6
|
||||
%global commit 96165ec62647cb5db0a5cf1c57214f2970c6eda4
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260531
|
||||
%global ver 1.6.0
|
||||
%global commit_date 20260604
|
||||
%global ver 1.7.0
|
||||
|
||||
%bcond_with check
|
||||
%bcond_with debug_no_build
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
%global debug_package %{nil}
|
||||
%endif
|
||||
|
||||
%global ver 1.5.3-pre
|
||||
%global ver 1.6.0-pre
|
||||
# Exclude input files from mangling
|
||||
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
%global rustflags_debuginfo 0
|
||||
|
||||
Name: zed
|
||||
Version: 1.4.4
|
||||
Version: 1.5.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Zed is a high-performance, multiplayer code editor
|
||||
SourceLicense: AGPL-3.0-only AND Apache-2.0 AND GPL-3.0-or-later
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
%global ver v1.7.1
|
||||
%global ver v1.7.2
|
||||
|
||||
Name: geist-font
|
||||
Version: %(echo %ver | sed 's/^geist@//')
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global crate anime-game-launcher
|
||||
%global appid moe.launcher.an-anime-game-launcher
|
||||
Name: %{crate}
|
||||
Version: 3.19.5
|
||||
Version: 3.19.6
|
||||
Release: 1%{?dist}
|
||||
Summary: An Anime Game Launcher for Linux with automatic patching and telemetry disabling
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global crate honkers-railway-launcher
|
||||
%global appid moe.launcher.the-honkers-railway-launcher
|
||||
Name: %{crate}
|
||||
Version: 1.15.0
|
||||
Version: 1.15.1
|
||||
Release: 1%{?dist}
|
||||
Summary: The Honkers Railway launcher for Linux with automatic patching and telemetry disabling
|
||||
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
%global name_pretty %{quote:Prism Launcher (Nightly)}
|
||||
%global appid org.prismlauncher.PrismLauncher-nightly
|
||||
|
||||
%global commit f5d7e76ac4865aed7d033b25a9129913e1f1b520
|
||||
%global commit dd5261f7ad8cc7f0cb179464639e95d100603a09
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global commit_date 20260528
|
||||
%global commit_date 20260604
|
||||
%global snapshot_info %{commit_date}.%{shortcommit}
|
||||
|
||||
# Change this variables if you want to use custom keys
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
# GLIBCXX_ASSERTIONS is known to break RPCS3
|
||||
%global build_cflags %(echo "%{__build_flags_lang_c}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags}
|
||||
%global build_cxxflags %(echo "%{__build_flags_lang_cxx}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags}
|
||||
%global commit ecf77ecef0c190b6adf4619447cda165aa5ebad5
|
||||
%global ver 0.0.40-19415
|
||||
%global commit 9a2243bfcbecc7e94d55c856ea26e383c948f681
|
||||
%global ver 0.0.41-19433
|
||||
|
||||
Name: rpcs3
|
||||
Version: %(echo %{ver} | sed 's/-/^/g')
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
Name: steamos-manager-powerstation
|
||||
Version: 0~%{commitdate}.git%{shortcommit}
|
||||
Release: 1%{?dist}
|
||||
Release: 3%{?dist}
|
||||
Summary: SteamOS Manager is a system daemon that aims to abstract Steam's interactions with the operating system
|
||||
License: MIT AND (MIT OR Apache-2.0) AND Unicode-3.0 AND (Apache-2.0 OR BSL-1.0) AND Apache-2.0 OR MIT AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (BSD-3-Clause OR MIT OR Apache-2.0) AND ISC AND (LGPL-2.1 OR MIT OR Apache-2.0) AND MIT AND (MIT OR Apache-2.0) AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (Unlicense OR MIT) AND (Zlib OR Apache-2.0 OR MIT)
|
||||
URL: https://github.com/OpenGamingCollective/steamos-manager
|
||||
@@ -58,7 +58,6 @@ make -f /usr/share/selinux/devel/Makefile -C data/selinux steamos_manager.pp
|
||||
%install
|
||||
%{cargo_license_online -a} > LICENSE.dependencies
|
||||
%make_install
|
||||
rm %{buildroot}%{_unitdir}/sddm.service.d/reset-oneshot-boot.conf # steamOS specific
|
||||
rm %{buildroot}%{_userunitdir}/orca.service # not used by anyone apparently, steamOS specific(?)
|
||||
install -D -m644 data/selinux/steamos_manager.pp %{buildroot}%{_datadir}/selinux/packages/steamos_manager.pp
|
||||
install -d %{buildroot}%{_userunitdir}/gamescope-session-plus.service.wants/steamos-manager.service
|
||||
@@ -101,6 +100,7 @@ fi
|
||||
%{_datadir}/steamos-manager/platform.toml
|
||||
%{_prefix}/lib/steamos-manager
|
||||
%{_unitdir}/steamos-manager.service
|
||||
%{_unitdir}/sddm.service.d/reset-oneshot-boot.conf
|
||||
%{_userunitdir}/steamos-manager.service
|
||||
%{_userunitdir}/steamos-manager-configure-cecd.service
|
||||
%{_userunitdir}/steamos-manager-session-cleanup.service
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
policy_module(steamos_manager, 1.0.0)
|
||||
policy_module(steamos_manager, 1.0.1)
|
||||
|
||||
########################################
|
||||
# Init
|
||||
@@ -22,6 +22,12 @@ init_dbus_chat(steamos_manager_t)
|
||||
# Query systemd and overall system status (init_t:system status)
|
||||
init_status(steamos_manager_t)
|
||||
|
||||
# D-Bus
|
||||
gen_require(`
|
||||
type systemd_unit_file_t;
|
||||
')
|
||||
allow steamos_manager_t systemd_unit_file_t:service status;
|
||||
|
||||
########################################
|
||||
# Process permissions
|
||||
########################################
|
||||
@@ -75,16 +81,16 @@ domain_read_all_domains_state(steamos_manager_t)
|
||||
# Tracefs and debugfs
|
||||
########################################
|
||||
|
||||
# ftrace access: /sys/kernel/tracing/instances/steamos-manager/
|
||||
# debugfs access: /sys/kernel/debug/ath11k/
|
||||
# ftrace access
|
||||
# debugfs access
|
||||
kernel_read_debugfs(steamos_manager_t)
|
||||
kernel_manage_debugfs(steamos_manager_t)
|
||||
|
||||
gen_require(`
|
||||
type tracefs_t;
|
||||
')
|
||||
allow steamos_manager_t tracefs_t:dir search;
|
||||
allow steamos_manager_t tracefs_t:dir write;
|
||||
allow steamos_manager_t tracefs_t:dir { search write getattr setattr read open create add_name remove_name rmdir };
|
||||
allow steamos_manager_t tracefs_t:file { getattr setattr create open read write append unlink };
|
||||
|
||||
########################################
|
||||
# Cgroup access
|
||||
@@ -93,6 +99,12 @@ allow steamos_manager_t tracefs_t:dir write;
|
||||
# Search the cgroup hierarchy under /sys/fs/cgroup
|
||||
fs_search_cgroup_dirs(steamos_manager_t)
|
||||
|
||||
# Read cgroup interface files
|
||||
gen_require(`
|
||||
type cgroup_t;
|
||||
')
|
||||
allow steamos_manager_t cgroup_t:file { getattr open read };
|
||||
|
||||
########################################
|
||||
# Device access
|
||||
########################################
|
||||
@@ -110,11 +122,34 @@ optional_policy(`
|
||||
gen_require(`
|
||||
type hidraw_device_t;
|
||||
')
|
||||
allow steamos_manager_t hidraw_device_t:chr_file { open read write getattr ioctl };
|
||||
allow steamos_manager_t hidraw_device_t:chr_file { open read write getattr ioctl watch watch_reads };
|
||||
')
|
||||
|
||||
optional_policy(`
|
||||
gen_require(`
|
||||
type usb_device_t;
|
||||
')
|
||||
allow steamos_manager_t usb_device_t:chr_file { getattr watch watch_reads };
|
||||
')
|
||||
|
||||
# /dev/input/event* — inputplumber
|
||||
dev_rw_input_dev(steamos_manager_t)
|
||||
dev_getattr_all_chr_files(steamos_manager_t)
|
||||
dev_getattr_all_blk_files(steamos_manager_t)
|
||||
|
||||
optional_policy(`
|
||||
gen_require(`
|
||||
type hugetlbfs_t;
|
||||
')
|
||||
allow steamos_manager_t hugetlbfs_t:dir getattr;
|
||||
')
|
||||
|
||||
optional_policy(`
|
||||
gen_require(`
|
||||
type proc_kcore_t;
|
||||
')
|
||||
allow steamos_manager_t proc_kcore_t:file getattr;
|
||||
')
|
||||
|
||||
# Udev events via netlink socket
|
||||
allow steamos_manager_t self:netlink_kobject_uevent_socket { create bind getattr read setopt };
|
||||
@@ -184,6 +219,17 @@ corecmd_exec_shell(steamos_manager_t)
|
||||
# Execute libraries/scripts under /usr/lib/ paths
|
||||
libs_exec_lib_files(steamos_manager_t)
|
||||
|
||||
optional_policy(`
|
||||
gen_require(`
|
||||
type dmidecode_exec_t;
|
||||
')
|
||||
can_exec(steamos_manager_t, dmidecode_exec_t)
|
||||
')
|
||||
|
||||
optional_policy(`
|
||||
sysnet_exec_ifconfig(steamos_manager_t)
|
||||
')
|
||||
|
||||
########################################
|
||||
# Network and IPC
|
||||
########################################
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: steamos-manager
|
||||
Version: 26.2.0
|
||||
Version: 26.3.0
|
||||
Release: 1%{?dist}
|
||||
Summary: SteamOS Manager is a system daemon that aims to abstract Steam's interactions with the operating system.
|
||||
License: MIT AND (MIT OR Apache-2.0) AND Unicode-3.0 AND Apache-2.0 OR BSL-1.0 AND Apache-2.0 OR MIT AND Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT AND BSD-3-Clause OR MIT OR Apache-2.0 AND ISC AND LGPL-2.1 OR MIT OR Apache-2.0 AND MIT AND MIT OR Apache-2.0 AND MIT OR Apache-2.0 OR LGPL-2.1-or-later AND Unlicense OR MIT AND Zlib OR Apache-2.0 OR MIT
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
# https://github.com/nektos/act
|
||||
%global goipath github.com/nektos/act
|
||||
Version: 0.2.88
|
||||
Version: 0.2.89
|
||||
|
||||
%gometa -f
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
# https://github.com/jesseduffield/lazygit
|
||||
%global goipath github.com/jesseduffield/lazygit
|
||||
Version: 0.62.1
|
||||
Version: 0.62.2
|
||||
|
||||
%gometa -f
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit 455f6bc2d5915be0465d66fe6d7d06974c2729d3
|
||||
%global commit fdb9b616fc0edf8fb4c3285870388947b92669fc
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver v26.3.27
|
||||
%global commit_date 20260531
|
||||
%global commit_date 20260603
|
||||
|
||||
%global goipath github.com/XTLS/Xray-core
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Disabled because compiled without debug
|
||||
|
||||
%global goipath github.com/XTLS/Xray-core
|
||||
Version: 26.5.9
|
||||
Version: 26.6.1
|
||||
|
||||
%global golicenses LICENSE
|
||||
%global godocs README.md SECURITY.md CODE_OF_CONDUCT.md
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%define _binaries_in_noarch_packages_terminate_build 0
|
||||
|
||||
Name: kotlin-native
|
||||
Version: 2.3.21
|
||||
Version: 2.4.0
|
||||
Release: 1%{?dist}
|
||||
Summary: LLVM backend for the Kotlin compiler
|
||||
ExclusiveArch: x86_64
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
BuildArch: noarch
|
||||
Name: kotlin
|
||||
Version: 2.3.21
|
||||
Version: 2.4.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Statically typed programming language
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10
|
||||
%global commit 7813bd8b92824cacec9cddb5152f8c9ed645e03c
|
||||
%global commit c8e805a2fae2291c306943cbe3eb2fa7a0410c7c
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 2.3.1
|
||||
%global commit_date 20260530
|
||||
%global commit_date 20260604
|
||||
%global debug_package %nil
|
||||
|
||||
Name: nim-nightly
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
%global _desc Fast PyTorch based DSP for audio and 1D signals.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 0.2.7
|
||||
Release: 1%?dist
|
||||
Version: 0.2.8
|
||||
Release: 1%{?dist}
|
||||
Summary: Fast PyTorch based DSP for audio and 1D signals
|
||||
License: MIT
|
||||
URL: https://github.com/adefossez/julius
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global _desc Send usage data from your Python code to PostHog.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 7.16.2
|
||||
Version: 7.17.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Send usage data from your Python code to PostHog
|
||||
License: MIT
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
%global __requires_exclude ^python3\\.14dist\\(proton-vpn-local-agent\\)$
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 5.2.3
|
||||
Version: 5.2.4
|
||||
Release: 1%{?dist}
|
||||
Summary: A facade to the other Proton VPN components
|
||||
License: GPL-3.0-Only
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
%global _desc Proton VPN local agent written in Rust.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 1.6.2
|
||||
Version: 1.6.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Proton VPN local agent written in Rust
|
||||
License: GPL-3.0-only
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global _desc The model-definition framework for state-of-the-art machine learning models.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 5.9.0
|
||||
Version: 5.10.1
|
||||
Release: 1%{?dist}
|
||||
Summary: The model-definition framework for state-of-the-art machine learning models
|
||||
License: Apache-2.0
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
%global _desc Twisted-based asynchronous Tor control protocol implementation. Includes unit-tests, examples, state-tracking code and configuration abstraction.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 24.8.0
|
||||
Release: 1%?dist
|
||||
Version: 26.6.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Twisted-based asynchronous Tor control protocol implementation. Includes unit-tests, examples, state-tracking code and configuration abstraction
|
||||
License: MIT
|
||||
URL: https://github.com/meejah/txtorcon
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 54bea668cb7c976500c1e1f890351c8cdaabd080
|
||||
%global commit_date 20260531
|
||||
%global commit 5767e1e747159160fbf872c5e70e126127b12278
|
||||
%global commit_date 20260604
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global pypi_name types-colorama
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%define __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
%global crate zoi-rs
|
||||
%global crate_version 1.15.0
|
||||
%global crate_version 1.16.1
|
||||
|
||||
Name: rust-zoi-rs
|
||||
Version: %(echo %crate_version | sed 's/-/~/g')
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
version=0.17.0-dev.633+9c5655093
|
||||
version=0.17.0-dev.667+0569f1f6a
|
||||
|
||||
mirrors=()
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%define llvm_compat 22
|
||||
%endif
|
||||
%global llvm_version 22.0.0
|
||||
%global ver 0.17.0-dev.633+9c5655093
|
||||
%global ver 0.17.0-dev.667+0569f1f6a
|
||||
%bcond bootstrap 1
|
||||
%bcond docs %{without bootstrap}
|
||||
%bcond test 1
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
%global zig_cache_dir %{builddir}/zig-cache
|
||||
|
||||
Name: zig-master
|
||||
Version: 0.17.0~dev.633+9c5655093
|
||||
Version: 0.17.0~dev.667+0569f1f6a
|
||||
Release: 2%{?dist}
|
||||
Summary: Master builds of the Zig language
|
||||
License: MIT AND NCSA AND LGPL-2.1-or-later AND LGPL-2.1-or-later WITH GCC-exception-2.0 AND GPL-2.0-or-later AND GPL-2.0-or-later WITH GCC-exception-2.0 AND BSD-3-Clause AND Inner-Net-2.0 AND ISC AND LicenseRef-Fedora-Public-Domain AND GFDL-1.1-or-later AND ZPL-2.1
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%bcond_with tests
|
||||
|
||||
Name: apparmor
|
||||
Version: 5.0.0
|
||||
Version: 5.0.1~rc1
|
||||
Release: 1%{?dist}
|
||||
Summary: AppArmor userspace components
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit d8738f97ed01f4d87f668df35fa7bbad795c9e49
|
||||
%global shortcommit d8738f9
|
||||
%global commit_date 20260523
|
||||
%global commit 271851bbc07748100382ae7caf6ef71c70c01bfc
|
||||
%global shortcommit 271851b
|
||||
%global commit_date 20260602
|
||||
|
||||
Name: astal
|
||||
Version: 0^%commit_date.%commit
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
|
||||
%global commit d8738f97ed01f4d87f668df35fa7bbad795c9e49
|
||||
%global commit 271851bbc07748100382ae7caf6ef71c70c01bfc
|
||||
%global shortcommit %{sub %commit 1 7}
|
||||
%global commit_date 20260523
|
||||
%global commit_date 20260602
|
||||
|
||||
Name: astal
|
||||
Version: 0^%commit_date.%shortcommit
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%global debug_package %nil
|
||||
|
||||
%global commit 96664e69b1ecdb76e824be1d9e8f475b76dd08cf
|
||||
%global commit 549b81b43b46c0f361680561a626bf0e7b79dcbd
|
||||
%global shortcommit %(c=%commit; echo ${c:0:7})
|
||||
%global commit_date 20260504
|
||||
%global commit_date 20260603
|
||||
|
||||
%global _desc %{expand:
|
||||
A C library that may be linked into a C/C++ program to produce symbolic backtraces.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: libde265
|
||||
Summary: Open H.265 video codec implementation
|
||||
Version: 1.1.0
|
||||
Version: 1.1.1
|
||||
Release: 1%{?dist}
|
||||
License: LGPL-3.0-or-later
|
||||
URL: https://www.libde265.org/
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "qt6-controllable.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
%global appid io.github.rfrench3.controllable
|
||||
|
||||
Name: qt6-controllable
|
||||
Version: 0.2.0
|
||||
Release: 1%{?dist}
|
||||
Summary: QML module for controller support
|
||||
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://github.com/rfrench3/controllable
|
||||
Source0: %{url}/archive/refs/tags/%{version}.tar.gz
|
||||
|
||||
Packager: Robert French <frenchrobertm@outlook.com>
|
||||
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: libappstream-glib
|
||||
BuildRequires: cmake
|
||||
BuildRequires: extra-cmake-modules
|
||||
BuildRequires: kf6-rpm-macros
|
||||
|
||||
BuildRequires: cmake(SDL3)
|
||||
BuildRequires: cmake(Qt6Core)
|
||||
BuildRequires: cmake(Qt6Gui)
|
||||
BuildRequires: cmake(Qt6Qml)
|
||||
BuildRequires: cmake(Qt6QuickControls2)
|
||||
|
||||
BuildRequires: cmake(KF6I18n)
|
||||
|
||||
Requires: kf6-ki18n
|
||||
|
||||
Provides: qt6-controllable = %{evr}
|
||||
|
||||
%description
|
||||
A QML module that provides support for controllers.
|
||||
|
||||
%prep
|
||||
%autosetup -n controllable-%{version}
|
||||
|
||||
%conf
|
||||
%cmake
|
||||
|
||||
%build
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%check
|
||||
appstream-util validate-relax --nonet %{buildroot}%{_kf6_metainfodir}/%{orgname}.*.xml || :
|
||||
|
||||
%files
|
||||
%license LICENSE.txt
|
||||
%doc README.md
|
||||
%{_kf6_metainfodir}/%{appid}.*.xml
|
||||
%{_kf6_libdir}/libqt6-controllable.so
|
||||
%{_kf6_qmldir}/io/github/rfrench3/controllable/*
|
||||
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue May 12 2026 Robert French
|
||||
- Initial tests for rpm package
|
||||
* Sun Apr 26 2026 Robert French
|
||||
- First day of splitting this module off of bazzite updater
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(gh("rfrench3/controllable"));
|
||||
@@ -1,7 +1,7 @@
|
||||
%global _distro_extra_cflags -Wno-discarded-qualifiers -Wno-maybe-uninitialized
|
||||
|
||||
Name: quickjs-ng
|
||||
Version: 0.15.0
|
||||
Version: 0.15.1
|
||||
Release: 1%{?dist}
|
||||
License: MIT
|
||||
Summary: A mighty JavaScript engine
|
||||
@@ -33,7 +33,7 @@ Requires: %{name}-libs%{_isa} = %evr
|
||||
%pkg_devel_files
|
||||
|
||||
%files devel
|
||||
%{_libdir}/cmake/quickjs/*.cmake
|
||||
%{_libdir}/cmake/qjs/*.cmake
|
||||
|
||||
|
||||
%package examples
|
||||
|
||||
+11
-7
@@ -1,8 +1,13 @@
|
||||
%global commit r55
|
||||
%global date 20110821
|
||||
|
||||
%global _pkg_extra_cflags "-Wno-int-conversion -Wno-declaration-missing-parameter-type"
|
||||
|
||||
Name: xavs
|
||||
Version: 0.1.55
|
||||
Release: 1%{?dist}
|
||||
Version: 0.1.55^%{date}svn%{commit}
|
||||
Release: 2%{?dist}
|
||||
Summary: AVS1 (First-generation AVS Standards) library
|
||||
License: GPLv2
|
||||
License: GPL-2.0-only
|
||||
URL: https://xavs.sourceforge.net/
|
||||
Patch0: %{name}-cflags.patch
|
||||
BuildRequires: autoconf
|
||||
@@ -10,7 +15,7 @@ BuildRequires: automake
|
||||
BuildRequires: gcc
|
||||
BuildRequires: libtool
|
||||
BuildRequires: subversion
|
||||
#BuildRequires: yasm
|
||||
%dnl BuildRequires: yasm
|
||||
|
||||
%description
|
||||
AVS is a complete standard system including system, video, audio, and digital
|
||||
@@ -35,7 +40,7 @@ The %{name}-devel package contains libraries and header files for
|
||||
developing applications that use %{name}.
|
||||
|
||||
%prep
|
||||
svn co https://svn.code.sf.net/p/xavs/code/trunk %{name}
|
||||
svn co -r %{commit} https://svn.code.sf.net/p/xavs/code/trunk %{name}
|
||||
%setup -T -D -n %{name}
|
||||
%autopatch -p1
|
||||
|
||||
@@ -43,8 +48,7 @@ svn co https://svn.code.sf.net/p/xavs/code/trunk %{name}
|
||||
%configure \
|
||||
--disable-asm \
|
||||
--enable-pic \
|
||||
--enable-shared \
|
||||
--extra-cflags="-Wno-int-conversion -Wno-declaration-missing-parameter-type"
|
||||
--enable-shared
|
||||
|
||||
%build
|
||||
%make_build
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: tail-tray
|
||||
Version: 0.2.32
|
||||
Version: 0.2.33
|
||||
Release: 1%{?dist}
|
||||
Summary: Tailscale tray menu and UI for the KDE Plasma Desktop
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit 971f4e2fb13ab9b1eb0f73dad370036b36316707
|
||||
%global commit ce795c92b3d708df445fbae09e5c7fab7ec2eb6a
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 20260531040030
|
||||
%global commit_date 20260531
|
||||
%global ver 20260603121550
|
||||
%global commit_date 20260604
|
||||
|
||||
Name: v2ray-domain-list-community
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
%bcond docs 0
|
||||
|
||||
Name: LCEVCdec
|
||||
Version: 4.0.3
|
||||
Release: 1%{?dist}
|
||||
Version: 4.1.0
|
||||
Release: 2%{?dist}
|
||||
Summary: MPEG-5 LCEVC Decoder
|
||||
License: BSD-3-Clause-Clear
|
||||
URL: https://docs.v-nova.com/v-nova/lcevc/lcevc-sdk-overview
|
||||
|
||||
@@ -1 +1 @@
|
||||
7.1.2
|
||||
8.1.1
|
||||
|
||||
@@ -7,5 +7,6 @@ project pkg {
|
||||
labels {
|
||||
mock = 1
|
||||
subrepo = "multimedia"
|
||||
updbranch = 1
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.165
|
||||
0^20250910git0480cb0
|
||||
@@ -1 +1 @@
|
||||
4.1
|
||||
4.2
|
||||
@@ -108,7 +108,7 @@ Name: ffmpeg
|
||||
%global pkg_name %{name}%{?pkg_suffix}
|
||||
|
||||
Version: 8.1.1
|
||||
Release: 1%{?dist}
|
||||
Release: 3%{?dist}
|
||||
Epoch: 1
|
||||
Summary: A complete solution to record, convert and stream audio and video
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: gpu-screen-recorder
|
||||
Version: 5.13.8
|
||||
Version: 5.13.9
|
||||
Release: 1%{?dist}
|
||||
Summary: A shadowplay-like screen recorder for Linux
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.165
|
||||
0^20250910git0480cb0
|
||||
@@ -1 +1 @@
|
||||
4.1
|
||||
4.2
|
||||
@@ -1,8 +1,8 @@
|
||||
%global majorminor 1.0
|
||||
|
||||
Name: gstreamer1-plugins-ugly
|
||||
Version: 1.28.2
|
||||
Release: 1%{?dist}
|
||||
Version: 1.28.3
|
||||
Release: 2%{?dist}
|
||||
Epoch: 2
|
||||
Summary: GStreamer streaming media framework "ugly" plugins
|
||||
License: LGPL-2.0-or-later and LGPL-2.0-only
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit d73e324a6cf283810c9629558a9bdec237dfb37b
|
||||
%global commit 7111255cef4d520dbe5cd4b661fbb18b29564850
|
||||
%global shortcommit %{sub %{commit} 1 7}
|
||||
%global commit_date 20260523
|
||||
%global commit_date 20260531
|
||||
|
||||
Name: vgmstream
|
||||
Version: 0~%{commit_date}git.%shortcommit
|
||||
|
||||
@@ -7,5 +7,6 @@ project pkg {
|
||||
labels {
|
||||
mock = 1
|
||||
subrepo = "multimedia"
|
||||
nightly = 1
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
let domain = `code.videolan.org`;
|
||||
let c = gitlab_commit(domain, "536", "master");
|
||||
|
||||
rpm.global("commit", c);
|
||||
|
||||
if rpm.changed() {
|
||||
rpm.release();
|
||||
rpm.global("commit_date", date());
|
||||
rpm.global("api_version", find(`#define X264_BUILD ([\d]+)`, get(`https://${domain}/videolan/x264/-/raw/${c}/x264.h`), 1));
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user