Compare commits

...

17 Commits

Author SHA1 Message Date
Owen Zimmerman 9c343ae407 rel
Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>
2026-06-25 14:55:56 -05:00
Owen Zimmerman 19432abadb Merge branch 'frawhide' into owen/coreboot-utils-add-more-subpackages 2026-06-25 14:55:35 -05:00
Owen Zimmerman 7c237cb0a1 fix (coreboot-utils): file permissions (#13352) 2026-06-25 14:48:53 -05:00
Raboneko 8b1ddc7084 bump: discord-canary-openasar discord-canary discord-ptb-openasar discord-ptb falcond 2026-06-25 19:28:36 +00:00
Owen-sz ec6ce1da5e chore (coreboot-utils): add more subpackages, add more cbfstool files
Signed-off-by: Owen-sz <owen@fyralabs.com>
2026-06-25 13:20:56 -05:00
Raboneko 7d9d80e71c bump: pixi 2026-06-25 17:33:26 +00:00
Raboneko 8a2a7dd152 bump: rust-deno v2raya 2026-06-25 15:31:48 +00:00
Raboneko bc12ba9341 bump: compat-nvidia-repo-580 nvidia-driver-580 nvidia-modprobe-580 nvidia-persistenced-580 nvidia-settings-580 nvidia-xconfig-580 2026-06-25 12:34:32 +00:00
Raboneko cb0409fe37 bump: Arctis-Sound-Manager throne 2026-06-25 10:19:29 +00:00
Raboneko 1cdea97092 bump(nightly): noctalia-git libsingularity zed-nightly xray-nightly nim-nightly types-colorama cloud-hypervisor-nightly glasgow natscli 2026-06-25 03:57:12 +00:00
Raboneko fad09e8471 bump: discord-canary-openasar discord-canary ruffle-nightly rust-mise 2026-06-25 03:33:54 +00:00
Raboneko 6e33116ff6 bump: discord-canary-openasar discord-canary flutter 2026-06-24 23:52:28 +00:00
madomado 0068efdca3 add: ente ensu (#13110) 2026-06-25 01:20:31 +02:00
Owen Zimmerman 9bb69acb5e fix: rust-gitoxide (#13328) 2026-06-24 18:06:47 -05:00
Owen Zimmerman 65d2e22e9f fix: zed-preview (#13327) 2026-06-24 18:06:37 -05:00
Owen Zimmerman 4c3050f52b fix: zed (#13326) 2026-06-24 18:06:24 -05:00
Owen Zimmerman 50c53e9392 fix: signal-desktop (#13329)
Signed-off-by: Owen-sz <owen@fyralabs.com>
2026-06-24 16:05:02 -07:00
41 changed files with 270 additions and 62 deletions
@@ -4,7 +4,7 @@
%global arctis_sound_manager_services arctis-manager.service arctis-video-router.service arctis-gui.service
Name: python-%{pypi_name}
Version: 1.1.82
Version: 1.1.83
Release: 1%{?dist}
Summary: GUI for SteelSeries Arctis headsets
License: GPL-3.0-or-later
@@ -6,7 +6,7 @@
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
Name: discord-canary-openasar
Version: 1.0.1343
Version: 1.0.1346
Release: 1%{?dist}
Summary: A snappier Discord rewrite with features like further customization and theming
License: MIT AND https://discord.com/terms
+1 -1
View File
@@ -1,5 +1,5 @@
Name: discord-canary
Version: 1.0.1343
Version: 1.0.1346
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-ptb-openasar
Version: 1.0.196
Version: 1.0.197
Release: 1%{?dist}
Summary: A snappier Discord rewrite with features like further customization and theming
License: MIT AND https://discord.com/terms
+1 -1
View File
@@ -1,5 +1,5 @@
Name: discord-ptb
Version: 1.0.196
Version: 1.0.197
Release: 1%{?dist}
Summary: Free Voice and Text Chat for Gamers.
URL: https://discord.com
+5
View File
@@ -0,0 +1,5 @@
project pkg {
rpm {
spec = "golang-github-ente-io-cli.spec"
}
}
@@ -0,0 +1,75 @@
# Generated by go2rpm 1.19.0
%bcond check 0
%bcond bootstrap 0
%if %{with bootstrap}
%global debug_package %{nil}
%endif
%if %{with bootstrap}
%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^golang\\(.*\\)$
%endif
# https://github.com/ente-io/ente
%global goipath github.com/ente-io/ente/cli
%global tag cli-v0.2.3
Version: %(echo %tag | sed 's/^cli-v//')
%gometa -f
%global common_description %{expand:
The Ente CLI is a Command Line Utility for exporting data from Ente. It also does a few more things, for example, you can use it to decrypt the export from Ente Auth.}
%global golicenses LICENSE
%global godocs CODE_OF_CONDUCT.md CONTRIBUTING.md cli/README.md SECURITY.md SUPPORT.md
Name: ente
Release: 1%?dist
Summary: 💚 End-to-end encrypted cloud for everything
Packager: madonuko <mado@fyralabs.com>
License: AGPL-3.0-only
URL: ente.com
Source: %{gosource}
%description %{common_description}
%gopkg
%prep
%goprep -A
%autopatch -p1
%if %{without bootstrap}
%build
%global gomodulesmode GO111MODULE=on
cd cli
%gobuild -o %{gobuilddir}/bin/ente .
%endif
%install
cd cli
%gopkginstall
%if %{without bootstrap}
install -m 0755 -vd %{buildroot}%{_bindir}
install -m 0755 -vp %{gobuilddir}/bin/* %{buildroot}%{_bindir}/
%endif
%if %{without bootstrap}
%if %{with check}
%check
%gocheck
%endif
%endif
%if %{without bootstrap}
%files
%license LICENSE
%doc CODE_OF_CONDUCT.md CONTRIBUTING.md README.md SECURITY.md SUPPORT.md cli/README.md
%{_bindir}/ente
%endif
%gopkgfiles
%changelog
* Tue Jun 16 2026 madonuko <mado@fyralabs.com> - 0.2.3-1
- Initial package.
+10
View File
@@ -0,0 +1,10 @@
let tagobjs = get("https://api.github.com/repos/ente-io/ente/tags").json_arr();
for tagobj in tagobjs {
if tagobj.name.starts_with("cli-v") {
rpm.global("tag", tagobj.name);
if rpm.changed() {
rpm.release();
break;
}
}
}
+5
View File
@@ -0,0 +1,5 @@
project pkg {
rpm {
spec = "ensu.spec"
}
}
+9
View File
@@ -0,0 +1,9 @@
[Desktop Entry]
Name=Ensu
Comment=Ensu Desktop App
Exec=Ensu
Icon=io.ente.ensu
Terminal=false
Type=Application
Categories=Utility;
StartupNotify=true
+58
View File
@@ -0,0 +1,58 @@
%global tag ensu-v0.1.17
%global appid io.ente.ensu
%global developer "Ente"
%global org "io.ente"
%global appstream_component desktop-application
# the original version of %%_package_note_flags expects cc/gcc to parse the ld flags,
# but for wasm the `lld -flavor wasm` linker is called directly
%dnl --package-metadata={\\"type\\":\\"rpm\\",\\"name\\":\\"%name\\",\\"version\\":\\"%version-%release\\",\\"architecture\\":\\"$RPM_ARCH\\",\\"osCpe\\":\\"cpe:/o:fedoraproject:fedora:%fedora\\"}
%define _package_note_flags %nil
%undefine _package_note_status
%define terra_rustflags %build_rustflags
%bcond_with mold
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
%global _distro_extra_cxxflags -fno-permissive
Name: ensu
Version: %(echo %tag | sed 's/^ensu-v//')
Release: 1%?dist
Summary: Private, personal LLM app that runs on your device and grows with you over time
License: AGPL-3.0-only
URL: https://ente.com/ensu
Source0: https://github.com/ente-io/ente/archive/refs/tags/%tag.tar.gz
Source1: ensu.desktop
Packager: madonuko <mado@fyralabs.com>
BuildRequires: cmake %tauri_buildrequires
BuildRequires: rust-std-static-wasm32-unknown-unknown
BuildRequires: clang-devel
%description
%summary.
%prep
%autosetup -n ente-%tag
pushd web
npm ci
popd
cd rust/apps/ensu
%tauri_prep
%build
cd rust/apps/ensu
%npm_build -Bc
%install
install -Dpm755 rust/target/rpm/Ensu -t %buildroot%_bindir
%desktop_file_install %{S:1}
install -Dpm644 rust/apps/ensu/src-tauri/icons/icon.png %buildroot%_hicolordir/1024x1024/apps/ensu.png
%terra_appstream
%files
%doc README.md CONTRIBUTING.md CODE_OF_CONDUCT.md SECURITY.md SUPPORT.md
%license LICENSE
%_bindir/Ensu
%_appsdir/ensu.desktop
%_hicolordir/*/apps/ensu.png
%_metainfodir/%appid.metainfo.xml
+10
View File
@@ -0,0 +1,10 @@
let tagobjs = get("https://api.github.com/repos/ente-io/ente/tags").json_arr();
for tagobj in tagobjs {
if tagobj.name.starts_with("ensu-v") {
rpm.global("tag", tagobj.name);
if rpm.changed() {
rpm.release();
break;
}
}
}
+1 -1
View File
@@ -1,4 +1,4 @@
%global ver 2026-06-24
%global ver 2026-06-25
%global goodver %(echo %ver | sed 's/-//g')
%global __brp_mangle_shebangs %{nil}
%bcond_without mold
@@ -1,11 +0,0 @@
--- a/package.json 2026-03-23 09:45:41.545576312 +0100
+++ b/package.json 2026-03-23 09:46:51.714180613 +0100
@@ -424,7 +424,7 @@
]
},
"engines": {
- "node": "24.15.0"
+ "node": ">= 22"
},
"build": {
"appId": "org.whispersystems.signal-desktop",
+4 -1
View File
@@ -9,7 +9,6 @@ URL: https://signal.org
Source0: https://github.com/signalapp/Signal-Desktop/archive/refs/tags/v%{version}.tar.gz
Source1: signal.desktop
Source2: org.signal.Signal.metainfo.xml
Patch0: fix-runtime.patch
License: AGPL-3.0-only AND %{electron_license}
BuildRequires: pulseaudio-libs-devel
@@ -75,6 +74,7 @@ echo "Electron Builder" > %{rpmbuilddir}/webapp-tool.txt
%install
mv ./packages/mute-state-change/LICENSE ./packages/mute-state-change/LICENSE.mute-state-change
mv ./packages/windows-ucv/LICENSE ./packages/mute-state-change/LICENSE.windows-ucv
%electron_install -i signal -l -I build/icons/png
%desktop_file_install %{SOURCE1}
@@ -104,6 +104,9 @@ mv LICENSE LICENSE.signal-desktop
%{_metainfodir}/org.signal.Signal.metainfo.xml
%changelog
* Thu Jun 25 2026 Owen Zimmerman <owen@fyralabs.com>
- Fix more license name conflicts, remove patch
* Sun Jun 14 2026 june-fish <git@june.fish>
- Fix license name conflicts
@@ -1 +1 @@
v1.13.13
v1.13.14
+1 -1
View File
@@ -5,7 +5,7 @@
%global crate mise
Name: rust-mise
Version: 2026.6.13
Version: 2026.6.14
Release: 1%{?dist}
Summary: Front-end to your dev env
+2 -2
View File
@@ -2,9 +2,9 @@
%global ver 5.0.0
%global commit a5eeef13338167fb85ecf8ea7c2fabb4c5536010
%global commit 37b7448313a8a5c127c14a9db843080015492ef8
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global commitdate 20260623
%global commitdate 20260625
Name: noctalia-git
Version: %{ver}^%{commitdate}git.%{shortcommit}
@@ -1,5 +1,5 @@
%global commit a7e59124efa6eb174e7bc9b4dfa9e1ea5362669e
%global commit_date 20260621
%global commit cac94560c7d918e3d948a7a43806a10af2b1aba4
%global commit_date 20260625
%global shortcommit %(c=%{commit}; echo ${c:0:7})
Name: libsingularity
+1 -1
View File
@@ -6,7 +6,7 @@
%global crate deno
Name: rust-deno
Version: 2.8.3
Version: 2.9.0
Release: 1%{?dist}
Summary: Deno executable
+1 -1
View File
@@ -1,5 +1,5 @@
Name: flutter
Version: 3.44.3
Version: 3.44.4
Release: 1%{?dist}
Summary: SDK for crafting beautiful, fast user experiences from a single codebase
License: BSD-3-Clause
+3 -3
View File
@@ -1,7 +1,7 @@
%global commit c49a29f46179525358eb74dbce67fddb2aafa1f0
%global commit 17c0ebb0f7b8b512d99f396e543e71c1775ff6f6
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global commit_date 20260624
%global ver 1.9.0
%global commit_date 20260625
%global ver 1.10.0
%bcond_with check
%bcond_with debug_no_build
-3
View File
@@ -46,9 +46,6 @@ BuildRequires: fontconfig-devel
BuildRequires: wayland-devel
BuildRequires: libxkbcommon-x11-devel
BuildRequires: openssl-devel
%if 0%{?fedora}
BuildRequires: openssl-devel-engine
%endif
BuildRequires: libzstd-devel
BuildRequires: perl-FindBin
BuildRequires: perl-IPC-Cmd
+1 -5
View File
@@ -20,7 +20,7 @@ Name: zed
Version: 1.8.2
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
SourceLicense: Apache-2.0 AND GPL-3.0-or-later
License: ((Apache-2.0 OR MIT) AND BSD-3-Clause) AND ((MIT OR Apache-2.0) AND Unicode-3.0) AND (0BSD OR MIT OR Apache-2.0) AND (Apache-2.0 AND ISC) AND AGPL.3.0-only AND AGPL-3.0-or-later AND (Apache-2.0 OR BSL-1.0 OR MIT) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception) AND Apache-2.0 AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND (BSD-2-Clause OR MIT OR Apache-2.0) AND BSD-2-Clause AND (CC0-1.0 OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception) AND (CC0-1.0 OR Apache-2.0) AND (CC0-1.0 OR MIT-0 OR Apache-2.0) AND CC0-1.0 AND GPL-3.0-or-later AND (ISC AND (Apache-2.0 OR ISC) AND OpenSSL) AND (ISC AND (Apache-2.0 OR ISC)) AND ISC AND (MIT AND (MIT OR Apache-2.0)) AND (MIT AND BSD-3-Clause) AND (MIT OR Apache-2.0 OR CC0-1.0) AND (MIT OR Apache-2.0 OR NCSA) AND (MIT OR Apache-2.0 OR Zlib) AND (MIT OR Apache-2.0) AND (MIT OR Zlib OR Apache-2.0) AND MIT AND MPL-2.0 AND Unicode-3.0 AND (Unlicense OR MIT) AND (Zlib OR Apache-2.0 OR MIT) AND Zlib
URL: https://zed.dev/
Source0: https://github.com/zed-industries/zed/archive/refs/tags/v%{version}.tar.gz
@@ -46,9 +46,6 @@ BuildRequires: fontconfig-devel
BuildRequires: wayland-devel
BuildRequires: libxkbcommon-x11-devel
BuildRequires: openssl-devel
%if 0%{?fedora}
BuildRequires: openssl-devel-engine
%endif
BuildRequires: libzstd-devel
BuildRequires: perl-FindBin
BuildRequires: perl-IPC-Cmd
@@ -166,7 +163,6 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%appid.desktop
%files
%doc CODE_OF_CONDUCT.md
%doc README.md
%license LICENSE-AGPL
%license LICENSE-APACHE
%license LICENSE-GPL
%if %{without debug_no_build}
+1 -1
View File
@@ -1,5 +1,5 @@
%global goipath github.com/v2rayA/v2rayA
Version: 2.4.0
Version: 2.4.1
%global golicenses LICENSE
%global godocs README.md
+2 -2
View File
@@ -1,7 +1,7 @@
%global commit ac04c445bd09541cc9c35a120ee01d8a177a4d83
%global commit b12bc504c8c2879a98e4aadb1c3f14d11f86cd0d
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global ver v26.3.27
%global commit_date 20260624
%global commit_date 20260625
%global goipath github.com/XTLS/Xray-core
Version: %{ver}^%{commit_date}git.%{shortcommit}
+2 -2
View File
@@ -1,8 +1,8 @@
%global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10
%global commit d251eaedeb35f4cf9d7b0bf3f197bf67f4821600
%global commit 16b5129a1efda19ef6231312329ba66b3e7bdade
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global ver 2.3.1
%global commit_date 20260624
%global commit_date 20260625
%global debug_package %nil
Name: nim-nightly
@@ -1,5 +1,5 @@
%global commit f9e0f8ce9a933648022d618961693ee74cb8d4f4
%global commit_date 20260624
%global commit 8e6a886ca5b14742924be721d345a619762d6e93
%global commit_date 20260625
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global pypi_name types-colorama
+1 -1
View File
@@ -13,7 +13,7 @@ License: MIT OR Apache-2.0
URL: https://crates.io/crates/gitoxide
Source: %{terra_crates_source}
BuildRequires: openssl-devel-engine cmake anda-srpm-macros rust-packaging >= 21 mold
BuildRequires: openssl-devel cmake anda-srpm-macros rust-packaging >= 21 mold
%global _description %{expand:
A command-line application for interacting with git repositories.}
@@ -1,5 +1,5 @@
%global commit 755d42eec0a18025ccbb215f08e11a526310bc2c
%global commit_date 20260624
%global commit f56fa3a8654e25bcf2dd324d57e3d46b2fda5a2a
%global commit_date 20260625
%global shortcommit %(c=%{commit}; echo ${c:0:7})
Name: cloud-hypervisor-nightly
+1 -1
View File
@@ -1,5 +1,5 @@
Name: falcond
Version: 2.0.8
Version: 2.0.9
Release: 1%{?dist}
Summary: Advanced Linux Gaming Performance Daemon
License: MIT
@@ -1,5 +1,5 @@
Name: compat-nvidia-repo-580xx
Version: 580.167.08
Version: 580.173.02
Epoch: 3
Release: 1%{?dist}
Summary: Compatibility package required by official CUDA packages
@@ -11,7 +11,7 @@
%endif
Name: %{real_name}-580xx
Version: 580.167.08
Version: 580.173.02
Release: 1%{?dist}
Summary: NVIDIA's proprietary display driver for NVIDIA graphic cards
Epoch: 3
@@ -1,7 +1,7 @@
%global real_name nvidia-modprobe
Name: %{real_name}-580xx
Version: 580.167.08
Version: 580.173.02
Release: 1%{?dist}
Summary: NVIDIA kernel module loader
Epoch: 3
@@ -1,7 +1,7 @@
%global real_name nvidia-persistenced
Name: %{real_name}-580xx
Version: 580.167.08
Version: 580.173.02
Release: 1%{?dist}
Summary: A daemon to maintain persistent software state in the NVIDIA driver
Epoch: 3
@@ -1,7 +1,7 @@
%global real_name nvidia-settings
Name: %{real_name}-580xx
Version: 580.167.08
Version: 580.173.02
Release: 1%{?dist}
Summary: Configure the NVIDIA graphics driver
Epoch: 3
@@ -1,7 +1,7 @@
%global real_name nvidia-xconfig
Name: %{real_name}-580xx
Version: 580.167.08
Version: 580.173.02
Release: 1%{?dist}
Summary: NVIDIA X configuration file editor
Epoch: 3
+1 -1
View File
@@ -1,5 +1,5 @@
Name: pixi
Version: 0.71.0
Version: 0.71.1
Release: 1%{?dist}
Summary: A cross-platform, multi-language package manager
License: BSD-3-Clause
+54 -3
View File
@@ -1,6 +1,6 @@
Name: coreboot-utils
Version: 26.06
Release: 1%{?dist}
Release: 3%{?dist}
Summary: Various coreboot utilities
URL: https://doc.coreboot.org
License: BSD-3-Clause AND Apache-2.0 AND CC-BY-SA-3.0 AND GPL-2.0-only AND GPL-3.0-or-later AND ISC AND BSD-2-Clause-Patent AND BSD-4-Clause-UC AND CC-PDDC AND GPL-2.0-or-later AND HPND-sell-varient AND LGPL-2.1-or-later AND BSD-2-Clause AND CC-BY-4.0 AND GPL-3.0-only AND HPND AND X11 AND MIT
@@ -124,6 +124,12 @@ Obsoletes: abuild <= 25.06
%description abuild
%summary.
%package acpi
Summary: Walk through all ACPI tables with their addresses
Requires: coreboot-utils = %{evr}
%description acpi
%summary.
%package amdfwtool
Summary: Create AMD Firmware combination
Requires: coreboot-utils = %{evr}
@@ -193,9 +199,18 @@ Requires: coreboot-utils = %{evr}
%summary.
%endif
%package cavium
Summary: Devicetree_convert Tool to convert a DTB to a static C file
Requires: coreboot-utils = %{evr}
Provides: %{name}-devicetree_convert
Provides: %{name}-devicetree-convert
%description cavium
%summary.
%package cbfstool
Summary: Management utility for CBFS formatted ROM images
Requires: coreboot-utils = %{evr}
Requires: python3-pytest
Conflicts: cbfstool <= 25.06
Obsoletes: cbfstool <= 25.06
%description cbfstool
@@ -567,7 +582,9 @@ popd
popd
%install
install -Dm 777 util/abuild/abuild %{buildroot}%{_bindir}/abuild
install -Dm 755 util/abuild/abuild %{buildroot}%{_bindir}/abuild
install -Dm 755 util/acpi/acpidump-all %{buildroot}%{_bindir}/acpidump-all
install -Dm 755 util/amdfwtool/amdfwtool %{buildroot}%{_bindir}/amdfwtool
install -Dm 755 util/amdfwtool/amdfwread %{buildroot}%{_bindir}/amdfwread
@@ -582,7 +599,7 @@ install -Dm 755 util/apcb/apcb_edit.py %{buildroot}%{_bindir}/apcb_edit.py
install -Dm 755 util/apcb/apcb_v3a_edit.py %{buildroot}%{_bindir}/apcb_v3a_edit.py
install -Dm 755 util/apcb/apcb_v3_edit.py %{buildroot}%{_bindir}/apcb_v3_edit.py
install -Dm 777 util/archive/archive %{buildroot}%{_bindir}/archive
install -Dm 755 util/archive/archive %{buildroot}%{_bindir}/archive
install -Dm 755 %{_builddir}/autoport %{buildroot}%{_bindir}/autoport
@@ -596,7 +613,18 @@ install -Dm 755 util/board_status/set_up_live_image.sh %{buildroot}%{_bindir}/se
install -Dm 755 util/bucts/bucts %{buildroot}%{_bindir}/bucts
%endif
install -Dm 755 util/cavium/devicetree_convert.py %{buildroot}%{_bindir}/devicetree_convert
install -Dm 755 util/cbfstool/cbfstool %{buildroot}%{_bindir}/cbfstool
install -Dm 755 util/cbfstool/cbfs-compression-tool %{buildroot}%{_bindir}/cbfs-compression-tool
install -Dm 755 util/cbfstool/cse_fpt %{buildroot}%{_bindir}/cse_fpt
install -Dm 755 util/cbfstool/cse_serger %{buildroot}%{_bindir}/cse_serger
install -Dm 755 util/cbfstool/elogtool %{buildroot}%{_bindir}/elogtool
install -Dm 755 util/cbfstool/fmaptool %{buildroot}%{_bindir}/fmaptool
install -Dm 755 util/cbfstool/ifittool %{buildroot}%{_bindir}/ifittool
install -Dm 755 util/cbfstool/ifwitool %{buildroot}%{_bindir}/ifwitool
install -Dm 755 util/cbfstool/rmodtool %{buildroot}%{_bindir}/rmodtool
install -Dm 755 util/cbfstool/test %{buildroot}%{_bindir}/cbfstool-test
install -Dm 755 util/cbfstool/tests/conftest.py %{buildroot}%{_bindir}/conftest.py
install -Dm 755 util/cbfstool/tests/elogtool_test.py %{buildroot}%{_bindir}/elogtool_test.py
@@ -759,6 +787,8 @@ cp Documentation/util/smmstoretool/index.md %{buildroot}%{_pkgdocdir}/smmstoreto
%{__ln_s} -f %{_bindir}/getrevision %{buildroot}%{_bindir}/getrevision.sh
%{__ln_s} -f %{_bindir}/set_up_live_image %{buildroot}%{_bindir}/set_up_live_image.sh
%{__ln_s} -f %{_bindir}/devicetree_convert %{buildroot}%{_bindir}/devicetree_convert.py
%{__ln_s} -f %{_bindir}/conftest.py %{buildroot}%{_bindir}/conftest
%{__ln_s} -f %{_bindir}/elogtool_test.py %{buildroot}%{_bindir}/elogtool_test
@@ -815,6 +845,10 @@ cp Documentation/util/smmstoretool/index.md %{buildroot}%{_pkgdocdir}/smmstoreto
%files abuild
%{_bindir}/abuild
%files acpi
%{_bindir}/acpidump-all
%doc util/acpi/*.md
%files all
%files amdfwtool
@@ -870,8 +904,22 @@ cp Documentation/util/smmstoretool/index.md %{buildroot}%{_pkgdocdir}/smmstoreto
%doc util/bucts/*.md
%endif
%files cavium
%{_bindir}/devicetree_convert
%{_bindir}/devicetree_convert.py
%doc util/cavium/*.md
%files cbfstool
%{_bindir}/cbfstool
%{_bindir}/cbfs-compression-tool
%{_bindir}/cse_fpt
%{_bindir}/cse_serger
%{_bindir}/elogtool
%{_bindir}/fmaptool
%{_bindir}/ifittool
%{_bindir}/ifwitool
%{_bindir}/rmodtool
%{_bindir}/cbfstool-test
%doc util/cbfstool/description.md
%files cbfstool-tests
@@ -1127,6 +1175,9 @@ cp Documentation/util/smmstoretool/index.md %{buildroot}%{_pkgdocdir}/smmstoreto
%doc util/xcompile/description.md
%changelog
* Thu Jun 25 2026 Owen Zimmerman <owen@fyralabs.com>
- Add more subpackages, add more cbfstool files
* Mon Jun 22 2026 Owen Zimmerman <owen@fyralabs.com>
- Update for 26.06, build archive subpackage
+2 -2
View File
@@ -1,5 +1,5 @@
%global commit 9c2f0170d0461a6bbd15fa5f1c975433ba29747d
%global commit_date 20260616
%global commit a3f065521af4dbe1e7a8d861f0caf32dc8fd407a
%global commit_date 20260625
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global pypi_name glasgow
+2 -2
View File
@@ -1,7 +1,7 @@
# https://github.com/nats-io/natscli
%global goipath github.com/nats-io/natscli
%global commit 565da5e43bc513c1a91576511dc0a98104eeae79
%global commit_date 20260624
%global commit 885fc11ab69468935d1575c85b4dc14cb5809010
%global commit_date 20260625
%global shortcommit %{sub %{commit} 1 7}
%gometa -f