mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-20 10:30:39 +00:00
Compare commits
41 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8d532df42c | |||
| 4e0af74262 | |||
| e4a4a6caba | |||
| c942779da8 | |||
| f84308b02e | |||
| ae170009ff | |||
| 3aa382d9fd | |||
| be9bc0d096 | |||
| 1aa6a1c1c1 | |||
| 107c771cb2 | |||
| 14001cbb71 | |||
| dc15e1e675 | |||
| 2128bde256 | |||
| d87e8d9d42 | |||
| 3d443cfe71 | |||
| 045ea2080e | |||
| cde0d643d7 | |||
| 058dda85e2 | |||
| c155b632de | |||
| 09050f244c | |||
| 6889968620 | |||
| f274fda030 | |||
| ca4a7d8373 | |||
| 301f470fda | |||
| 1dba060957 | |||
| 50eaa100a7 | |||
| b166317d0c | |||
| 756254e09a | |||
| da86f4d6d6 | |||
| 4201279877 | |||
| 8bde54bc16 | |||
| f9fa7efc81 | |||
| 21e33b9bfa | |||
| 9561429385 | |||
| 5a1ee18acf | |||
| 38fe2370f6 | |||
| bafc595016 | |||
| 1ca1c6a510 | |||
| 948268c681 | |||
| f87a9abea0 | |||
| c397eb7fc1 |
@@ -0,0 +1,49 @@
|
||||
%global debug_package %{nil}
|
||||
|
||||
%ifarch x86_64
|
||||
%global op_arch amd64
|
||||
%elifarch aarch64
|
||||
%global op_arch arm64
|
||||
%endif
|
||||
|
||||
Name: 1password-cli
|
||||
Version: 2.34.1
|
||||
Release: 1%{?dist}
|
||||
Summary: 1Password command-line tool
|
||||
|
||||
Packager: Cappy Ishihara <cappy@fyralabs.com>
|
||||
|
||||
License: LicenseRef-1Password-Proprietary
|
||||
URL: https://developer.1password.com/docs/cli/
|
||||
Source0: https://cache.agilebits.com/dist/1P/op2/pkg/v%{version}/op_linux_%{op_arch}_v%{version}.zip
|
||||
Source1: 1password-cli.sysusers
|
||||
ExclusiveArch: x86_64 aarch64
|
||||
|
||||
BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: unzip
|
||||
Recommends: 1password
|
||||
Recommends: polkit
|
||||
|
||||
%description
|
||||
1Password CLI brings 1Password to your terminal.
|
||||
|
||||
%prep
|
||||
%autosetup -c
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
install -Dm0755 op %{buildroot}%{_bindir}/op
|
||||
chmod 2755 %{buildroot}%{_bindir}/op
|
||||
install -Dm0644 %{SOURCE1} %{buildroot}%{_sysusersdir}/%{name}.conf
|
||||
|
||||
%pre
|
||||
%sysusers_create_package %{name} %{SOURCE1}
|
||||
|
||||
%files
|
||||
%attr(2755,root,onepassword-cli) %{_bindir}/op
|
||||
%{_sysusersdir}/%{name}.conf
|
||||
|
||||
%changelog
|
||||
* Fri Jun 19 2026 Cappy Ishihara <cappy@cappuchino.xyz>
|
||||
- Initial Package
|
||||
@@ -0,0 +1 @@
|
||||
g onepassword-cli -
|
||||
@@ -0,0 +1,6 @@
|
||||
project pkg {
|
||||
arches = ["x86_64", "aarch64"]
|
||||
rpm {
|
||||
spec = "1password-cli.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
let html = get("https://app-updates.agilebits.com/product_history/CLI2");
|
||||
let versions = [];
|
||||
|
||||
for matches in find_all(`op_linux_amd64_v([\d]+\.[\d]+\.[\d]+)\.zip`, html) {
|
||||
versions += matches[1];
|
||||
}
|
||||
|
||||
versions.dedup();
|
||||
|
||||
let latest = "";
|
||||
let latest_major = 0;
|
||||
let latest_minor = 0;
|
||||
let latest_patch = 0;
|
||||
|
||||
for version in versions {
|
||||
let parts = version.split(".");
|
||||
let major = parts[0].parse_int();
|
||||
let minor = parts[1].parse_int();
|
||||
let patch = parts[2].parse_int();
|
||||
|
||||
if latest == "" ||
|
||||
major > latest_major ||
|
||||
major == latest_major && minor > latest_minor ||
|
||||
major == latest_major && minor == latest_minor && patch > latest_patch {
|
||||
latest = version;
|
||||
latest_major = major;
|
||||
latest_minor = minor;
|
||||
latest_patch = patch;
|
||||
}
|
||||
}
|
||||
|
||||
if latest == "" {
|
||||
print("E: no 1Password CLI version found");
|
||||
terminate();
|
||||
}
|
||||
|
||||
rpm.version(latest);
|
||||
@@ -0,0 +1,105 @@
|
||||
%global debug_package %{nil}
|
||||
%global policy_owners unix-group:wheel
|
||||
%global appdir %{_datadir}/1password
|
||||
|
||||
%ifarch x86_64
|
||||
%global tararch x64
|
||||
%elifarch aarch64
|
||||
%global tararch arm64
|
||||
%endif
|
||||
|
||||
Name: 1password
|
||||
Version: 8.12.24
|
||||
Release: 1%{?dist}
|
||||
Summary: Password manager and secure wallet
|
||||
|
||||
Packager: Cappy Ishihara <cappy@fyralabs.com>
|
||||
|
||||
License: LicenseRef-1Password-Proprietary
|
||||
URL: https://1password.com
|
||||
Source0: https://downloads.1password.com/linux/tar/stable/%{_arch}/%{name}-%{version}.%{tararch}.tar.gz
|
||||
Source1: https://downloads.1password.com/linux/tar/stable/%{_arch}/%{name}-%{version}.%{tararch}.tar.gz.sig
|
||||
Source2: 1password.sysusers
|
||||
ExclusiveArch: x86_64 aarch64
|
||||
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: systemd-rpm-macros
|
||||
Requires: desktop-file-utils
|
||||
Requires: gtk3
|
||||
Requires: hicolor-icon-theme
|
||||
Requires: nss
|
||||
Requires: polkit
|
||||
Requires: xdg-utils
|
||||
|
||||
%description
|
||||
%{summary}
|
||||
|
||||
%prep
|
||||
%autosetup -n %{name}-%{version}.%{tararch}
|
||||
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
# Install icons
|
||||
install -Dm0644 resources/icons/hicolor/32x32/apps/1password.png -t %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/
|
||||
install -Dm0644 resources/icons/hicolor/64x64/apps/1password.png -t %{buildroot}%{_datadir}/icons/hicolor/64x64/apps/
|
||||
install -Dm0644 resources/icons/hicolor/256x256/apps/1password.png -t %{buildroot}%{_datadir}/icons/hicolor/256x256/apps/
|
||||
install -Dm0644 resources/icons/hicolor/512x512/apps/1password.png -t %{buildroot}%{_datadir}/icons/hicolor/512x512/apps/
|
||||
|
||||
sed 's|${POLICY_OWNERS}|%{policy_owners}|g' \
|
||||
com.1password.1Password.policy.tpl > com.1password.1Password.policy
|
||||
install -Dm0644 com.1password.1Password.policy -t %{buildroot}%{_datadir}/polkit-1/actions/
|
||||
install -Dm0644 resources/custom_allowed_browsers -t %{buildroot}%{_sysconfdir}/1password/
|
||||
install -Dm0644 resources/custom_allowed_browsers -t %{buildroot}%{_datadir}/doc/1password/examples/
|
||||
sed -i 's|^Exec=/opt/1Password/1password|Exec=%{_bindir}/1password|' resources/1password.desktop
|
||||
desktop-file-install --dir=%{buildroot}%{_datadir}/applications resources/1password.desktop
|
||||
install -Dm0644 %{SOURCE2} %{buildroot}%{_sysusersdir}/%{name}.conf
|
||||
|
||||
# Install application payload under /usr for immutable-system compatibility.
|
||||
mkdir -p %{buildroot}%{appdir}
|
||||
cp -a . %{buildroot}%{appdir}/
|
||||
rm -f %{buildroot}%{appdir}/com.1password.1Password.policy \
|
||||
%{buildroot}%{appdir}/com.1password.1Password.policy.tpl \
|
||||
%{buildroot}%{appdir}/after-install.sh \
|
||||
%{buildroot}%{appdir}/after-remove.sh \
|
||||
%{buildroot}%{appdir}/install.sh \
|
||||
%{buildroot}%{appdir}/install_biometrics_policy.sh
|
||||
|
||||
mkdir -p %{buildroot}%{_bindir}
|
||||
ln -sr %{buildroot}%{appdir}/%{name} %{buildroot}%{_bindir}/%{name}
|
||||
chmod 4755 %{buildroot}%{appdir}/chrome-sandbox
|
||||
chmod 2755 %{buildroot}%{appdir}/1Password-BrowserSupport
|
||||
if [ -f %{buildroot}%{appdir}/onepassword-mcp ]; then
|
||||
chmod 2755 %{buildroot}%{appdir}/onepassword-mcp
|
||||
fi
|
||||
find %{buildroot}%{appdir} -type f \
|
||||
! -name chrome-sandbox \
|
||||
! -name 1Password-BrowserSupport \
|
||||
! -name onepassword-mcp \
|
||||
-printf '/%%P\n' | sed "s|^/|%{appdir}/|" > app.files
|
||||
|
||||
%pre
|
||||
%sysusers_create_package %{name} %{SOURCE2}
|
||||
|
||||
%files -f app.files
|
||||
%{_bindir}/%{name}
|
||||
%dir %{appdir}
|
||||
%attr(4755,root,root) %{appdir}/chrome-sandbox
|
||||
%attr(2755,root,onepassword) %{appdir}/1Password-BrowserSupport
|
||||
%attr(2755,root,onepassword-mcp) %{appdir}/onepassword-mcp
|
||||
%{_datadir}/icons/hicolor/32x32/apps/1password.png
|
||||
%{_datadir}/icons/hicolor/64x64/apps/1password.png
|
||||
%{_datadir}/icons/hicolor/256x256/apps/1password.png
|
||||
%{_datadir}/icons/hicolor/512x512/apps/1password.png
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
%{_datadir}/polkit-1/actions/com.1password.1Password.policy
|
||||
%{_sysusersdir}/%{name}.conf
|
||||
%config(noreplace) %{_sysconfdir}/1password/custom_allowed_browsers
|
||||
%{_datadir}/doc/1password/
|
||||
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jun 19 2026 Cappy Ishihara <cappy@cappuchino.xyz>
|
||||
- Initial Package
|
||||
@@ -0,0 +1,2 @@
|
||||
g onepassword -
|
||||
g onepassword-mcp -
|
||||
@@ -0,0 +1,7 @@
|
||||
project pkg {
|
||||
arches = ["x86_64", "aarch64"]
|
||||
rpm {
|
||||
spec = "1password.spec"
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
let xml = get("https://releases.1password.com/linux/stable/index.xml");
|
||||
|
||||
let latest = "";
|
||||
let latest_major = 0;
|
||||
let latest_minor = 0;
|
||||
let latest_patch = 0;
|
||||
|
||||
for title in find_all(`<title>[^<]*</title>`, xml) {
|
||||
let matches = find_all(`[\d]+\.[\d]+\.[\d]+`, title[0]);
|
||||
if matches.len() == 0 {
|
||||
continue;
|
||||
}
|
||||
|
||||
let version = matches[0][0];
|
||||
let parts = version.split(".");
|
||||
let major = parts[0].parse_int();
|
||||
let minor = parts[1].parse_int();
|
||||
let patch = parts[2].parse_int();
|
||||
|
||||
if latest == "" ||
|
||||
major > latest_major ||
|
||||
major == latest_major && minor > latest_minor ||
|
||||
major == latest_major && minor == latest_minor && patch > latest_patch {
|
||||
latest = version;
|
||||
latest_major = major;
|
||||
latest_minor = minor;
|
||||
latest_patch = patch;
|
||||
}
|
||||
}
|
||||
|
||||
if latest == "" {
|
||||
print("E: no 1Password version found");
|
||||
terminate();
|
||||
}
|
||||
|
||||
rpm.version(latest);
|
||||
@@ -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.74
|
||||
Version: 1.1.79
|
||||
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.1289
|
||||
Version: 1.0.1317
|
||||
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.1289
|
||||
Version: 1.0.1317
|
||||
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.195
|
||||
Version: 1.0.196
|
||||
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-ptb
|
||||
Version: 1.0.195
|
||||
Version: 1.0.196
|
||||
Release: 1%{?dist}
|
||||
Summary: Free Voice and Text Chat for Gamers.
|
||||
URL: https://discord.com
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#? https://github.com/flameshot-org/flameshot/blob/master/packaging/rpm/fedora/flameshot.spec
|
||||
|
||||
%global ver 13.3.0
|
||||
%global commit c47870ac95cdce9e63c19198b1f1c0bf57504cf6
|
||||
%global ver 14.0.0
|
||||
%global commit 550d4fae96dbea937d92a236605538f489e7b413
|
||||
%global shortcommit %{sub %{commit} 1 7}
|
||||
%global commit_date 20260615
|
||||
%global commit_date 20260620
|
||||
%global devel_name QtColorWidgets
|
||||
%global _distro_extra_cflags -fuse-ld=mold
|
||||
%global _distro_extra_cxxflags -fuse-ld=mold
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Name: fontviewer
|
||||
Epoch: 1
|
||||
Version: 1.2.0
|
||||
Release: 1%?dist
|
||||
Version: 1.3.0
|
||||
Release: 1%{?dist}
|
||||
Summary: View and install fonts
|
||||
|
||||
License: GPL-2.0
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
%endif
|
||||
|
||||
Name: helium-browser-bin
|
||||
Version: 0.13.3.1
|
||||
Version: 0.13.4.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Private, fast, and honest web browser based on Chromium
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global pure_protobuf_version 2.0.0
|
||||
|
||||
Name: komikku
|
||||
Version: 50.6.0
|
||||
Version: 50.7.0
|
||||
%forgemeta
|
||||
Release: 1%{?dist}
|
||||
Summary: A manga reader for GNOME
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "kontainer.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
%global appid io.github.DenysMb.Kontainer
|
||||
|
||||
Name: kontainer
|
||||
Version: 1.4.1
|
||||
Release: 1%?dist
|
||||
Summary: A Kirigami Distrobox GUI
|
||||
URL: https://github.com/DenysMb/Kontainer
|
||||
Source0: %{url}/archive/refs/tags/%{version}.tar.gz
|
||||
|
||||
License: GPL-3.0-or-later AND MIT AND CC0-1.0
|
||||
BuildRequires: cmake >= 3.20
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: extra-cmake-modules
|
||||
BuildRequires: pkgconfig(Qt6Quick)
|
||||
BuildRequires: kf6-kirigami-devel
|
||||
BuildRequires: kf6-ki18n-devel
|
||||
BuildRequires: kf6-kcoreaddons-devel
|
||||
BuildRequires: kf6-kiconthemes-devel
|
||||
BuildRequires: kf6-qqc2-desktop-style
|
||||
BuildRequires: kf6-kio-devel
|
||||
BuildRequires: kf6-kirigami-addons-devel
|
||||
BuildRequires: kf6-kirigami-addons
|
||||
|
||||
Requires: kf6-kirigami-addons
|
||||
Requires: kf6-qqc2-desktop-style
|
||||
Requires: distrobox
|
||||
|
||||
Packager: Cayden Granger <caydengranger@safri.cloud>
|
||||
|
||||
%description
|
||||
Graphical user interface for Distrobox container management.
|
||||
|
||||
A native KDE application for managing Distrobox containers with ease.
|
||||
|
||||
%prep
|
||||
%autosetup -n Kontainer-%{version}
|
||||
|
||||
%conf
|
||||
%cmake
|
||||
|
||||
%build
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%find_lang kontainer
|
||||
|
||||
%files -f kontainer.lang
|
||||
%license LICENSES/
|
||||
%doc README.md
|
||||
%{_bindir}/kontainer
|
||||
%{_appsdir}/%{appid}.desktop
|
||||
%{_scalableiconsdir}/%{appid}.svg
|
||||
%{_metainfodir}/%{appid}.metainfo.xml
|
||||
|
||||
%changelog
|
||||
* Fri Jun 19 2026 Cayden Granger <caydengranger@safri.cloud>
|
||||
- Initial package
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(gh_tag("DenysMb/Kontainer"))
|
||||
@@ -1,9 +1,9 @@
|
||||
# Disable X11 for RHEL 10+
|
||||
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
|
||||
|
||||
%global commit 53796ca2ea82bd960b0907c89231e773dc381502
|
||||
%global commit 2d5dfb343aeac72e4ee7303dbf34347a0ff4425d
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260617
|
||||
%global commit_date 20260618
|
||||
%global ver 0.41.0
|
||||
|
||||
Name: mpv-nightly
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
%global ver 2026-06-17
|
||||
%global ver 2026-06-20
|
||||
%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.14.0
|
||||
Version: 8.15.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A private messenger for Windows, macOS, and Linux
|
||||
URL: https://signal.org
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: gradle
|
||||
Version: 9.5.1
|
||||
Version: 9.6.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Powerful build system for the JVM
|
||||
URL: https://gradle.org/
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
%global commit bd8475a3f103360945450a9fa8e8cf32034527b6
|
||||
%global commit_date 20260610
|
||||
%global commit fd9ad168cd5e5c8bb326262fc5983912b42dc500
|
||||
%global commit_date 20260618
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global extension multi-monitors-bar
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: plasma6-applet-appgrid
|
||||
Version: 1.9.1
|
||||
Release: 2%{?dist}
|
||||
Version: 1.9.2
|
||||
Release: 1%{?dist}
|
||||
Summary: A modern application launcher for KDE Plasma
|
||||
# Main code: GPL-2.0-or-later
|
||||
# dev.xarbit.appgrid.metainfo.xml: CC0-1.0
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-app-launch
|
||||
%global commit c40aaeecbc1a1634f961ed6ce2b5f5cb0e5196e3
|
||||
%global commit d32f39df026806150ffcdc1dcabf08c74aa3f621
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-app-launch
|
||||
Version: 0.1.12
|
||||
Release: 1%?dist
|
||||
Version: 0.2.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Provides the Lomiri App Launch user space daemon
|
||||
License: GPL-3.0
|
||||
URL: https://gitlab.com/ubports/development/core/lomiri-app-launch
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-download-manager
|
||||
%global commit 0939d480c72871b3270cc529e16902fd41bfdda5
|
||||
%global commit 72b77e657d71f4a0b1b979d27321b7a909ff5ad7
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-download-manager
|
||||
Version: 0.3.1
|
||||
Version: 0.3.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Upload Download Manager for Lomiri
|
||||
License: LGPLv3
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-indicator-network
|
||||
%global commit 5c72fe38523e70377205cfa31c929d20fa8b29ac
|
||||
%global commit 3a7597e25d13e587188a33c881caa6ed4f055267
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-indicator-network
|
||||
Version: 1.2.0
|
||||
Release: 1%?dist
|
||||
Version: 1.99.0
|
||||
Release: 1%{?dist}
|
||||
Summary: The Network indicator for Ubuntu Touch
|
||||
License: GPL-3.0 AND LGPL-3.0
|
||||
URL: https://gitlab.com/ubports/development/core/lomiri-indicator-network
|
||||
|
||||
+2
-2
@@ -1,9 +1,9 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-settings-components
|
||||
%global commit 7bfc33d16ca234af8c88477cfbb2a95f3b7d8c9a
|
||||
%global commit 3fcff0a27374d675702671564018b10d3627bd1b
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-settings-components
|
||||
Version: 1.2.0
|
||||
Version: 1.2.1
|
||||
Release: 1%{?dist}
|
||||
Summary: The system settings components for Lomiri
|
||||
License: GPLv3 AND LGPLv3
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-system-settings
|
||||
%global commit e6b254aec0b827849bccab1337c3ca030168f892
|
||||
%global commit 611f0bdfc80f7934cf890b703a0b2ec112626a27
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-system-settings
|
||||
Version: 1.3.2
|
||||
Release: 1%?dist
|
||||
Version: 1.4.0
|
||||
Release: 1%{?dist}
|
||||
Summary: The system settings application for Lomiri
|
||||
License: GPLv3
|
||||
URL: https://gitlab.com/ubports/development/core/lomiri-system-settings
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-ui-toolkit
|
||||
%global commit 32d39be4d36abc5de7dc3cc8ab2aecb74a7505ce
|
||||
%global commit 74d94596a8b273dc02dc6d5a44d614a16bb2383b
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-ui-toolkit
|
||||
Version: 1.3.5906
|
||||
Version: 1.3.5907
|
||||
Release: 1%{?dist}
|
||||
Summary: QML components to ease the creation of beautiful applications in QML for Lomiri
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri
|
||||
%global commit 39840a77525e57f29cde9d6773bd2742feae2486
|
||||
%global commit d1bd01080e905154e9e8492673c8887ad5d87b7c
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri
|
||||
Version: 0.5.0
|
||||
Release: 1%?dist
|
||||
Version: 0.6.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A convergent desktop environment by Ubports
|
||||
|
||||
License: GPLv3 AND LGPLv3
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
%global ver 5.0.0
|
||||
|
||||
%global commit 6b0e16179645e15693efd94f51109d22b199418c
|
||||
%global commit a7af75821ed8aa9e199b0d8044362dc882c78fbc
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260608
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 3aae7f9a42a25b79fc7e01e6e3782d7dff43c174
|
||||
%global commit_date 20260616
|
||||
%global commit 51ad7203edccbf9c40b68928cb5fe8ae1298a5be
|
||||
%global commit_date 20260619
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
Name: libsingularity
|
||||
|
||||
@@ -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.7
|
||||
Version: 2026.1.3.1
|
||||
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-canary7
|
||||
%define suffixS quail3-canary1
|
||||
|
||||
Source0: https://dl.google.com/dl/android/studio/ide-zips/%{version}/android-studio-%{suffixS}-linux.tar.gz
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
%bcond test 0
|
||||
|
||||
Name: nodejs-%{npm_name}
|
||||
Version: 12.0.1
|
||||
Version: 12.0.4
|
||||
Release: 1%{?dist}
|
||||
Summary: Backport GitHub commits
|
||||
SourceLicense: Apache-2.0
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%global crate create-tauri-app
|
||||
|
||||
Name: rust-create-tauri-app
|
||||
Version: 4.7.0
|
||||
Release: 2%?dist
|
||||
Version: 4.7.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Rapidly scaffold out a new tauri app project
|
||||
License: Apache-2.0 OR MIT
|
||||
URL: https://crates.io/crates/create-tauri-app
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit e8e7fea103ab8bff5384673a60e04b59939738dd
|
||||
%global commit f9c52d0cd9d0da0cd970a5863b94c655c285d83e
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global fulldate 2026-06-16
|
||||
%global fulldate 2026-06-18
|
||||
%global commit_date %(echo %{fulldate} | sed 's/-//g')
|
||||
%global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
|
||||
%global ver 1.3.2
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit 45afbac0a5ab0d396e316ce0247fd41330c94d88
|
||||
%global commit 9f56a4df515c9989bf0baa71c2150408cce0608e
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260617
|
||||
%global ver 1.8.0
|
||||
%global commit_date 20260620
|
||||
%global ver 1.9.0
|
||||
|
||||
%bcond_with check
|
||||
%bcond_with debug_no_build
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
%global debug_package %{nil}
|
||||
%endif
|
||||
|
||||
%global ver 1.7.2-pre
|
||||
%global ver 1.8.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.6.3
|
||||
Version: 1.7.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
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
project pkg {
|
||||
arches = ["x86_64"]
|
||||
rpm {
|
||||
spec = "source-han-sans-fonts.spec"
|
||||
}
|
||||
labels {
|
||||
weekly = 6
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
%define debug_package %nil
|
||||
%global ver 2.005R
|
||||
|
||||
Name: source-han-sans-fonts
|
||||
Version: %(echo %ver | sed -E 's/R$//')
|
||||
Release: 1%?dist
|
||||
Summary: Source Han Sans | 思源黑体 | 思源黑體 | 思源黑體 香港 | 源ノ角ゴシック | 본고딕
|
||||
License: OFL-1.1
|
||||
URL: https://github.com/adobe-fonts/source-han-sans
|
||||
Source0: %url/releases/download/%ver/03_SourceHanSansOTC.zip
|
||||
Packager: madonuko <mado@fyralabs.com>
|
||||
BuildArch: noarch
|
||||
BuildRequires: unzip
|
||||
|
||||
%description
|
||||
Source Han Sans is a set of OpenType Pan-CJK fonts.
|
||||
|
||||
This package ships the Static OTC versions.
|
||||
|
||||
%prep
|
||||
unzip %{S:0}
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
install -Dpm644 OTC/SourceHanSans-*.ttc -t %buildroot%_datadir/fonts/%name
|
||||
|
||||
%files
|
||||
%license LICENSE.txt
|
||||
%_datadir/fonts/%name/
|
||||
|
||||
%changelog
|
||||
* Sat Jun 20 2026 madonuko <mado@fyralabs.com> - 2.005-1
|
||||
- Initial package.
|
||||
@@ -0,0 +1 @@
|
||||
rpm.global("ver", gh("adobe-fonts/source-han-sans"));
|
||||
@@ -0,0 +1,9 @@
|
||||
project pkg {
|
||||
arches = ["x86_64"]
|
||||
rpm {
|
||||
spec = "source-han-serif-fonts.spec"
|
||||
}
|
||||
labels {
|
||||
weekly = 6
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
%define debug_package %nil
|
||||
%global ver 2.003R
|
||||
|
||||
Name: source-han-serif-fonts
|
||||
Version: %(echo %ver | sed -E 's/R$//')
|
||||
Release: 1%?dist
|
||||
Summary: Source Han Serif | 思源宋体 | 思源宋體 | 思源宋體 香港 | 源ノ明朝 | 본명조
|
||||
License: OFL-1.1
|
||||
URL: https://github.com/adobe-fonts/source-han-serif
|
||||
Source0: %url/releases/download/%ver/03_SourceHanSerifOTC.zip
|
||||
Packager: madonuko <mado@fyralabs.com>
|
||||
BuildArch: noarch
|
||||
BuildRequires: unzip
|
||||
|
||||
%description
|
||||
Source Han Serif is a set of OpenType Pan-CJK fonts.
|
||||
|
||||
This package ships the Static OTC versions.
|
||||
|
||||
%prep
|
||||
unzip %{S:0}
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
install -Dpm644 OTC/SourceHanSerif-*.ttc -t %buildroot%_datadir/fonts/%name
|
||||
|
||||
%files
|
||||
%license LICENSE.txt
|
||||
%_datadir/fonts/%name/
|
||||
|
||||
%changelog
|
||||
* Sat Jun 20 2026 madonuko <mado@fyralabs.com> - 2.005R-1
|
||||
- Initial package.
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(gh("adobe-fonts/source-han-serif"));
|
||||
@@ -1,7 +1,7 @@
|
||||
%global __brp_mangle_shebangs %{nil}
|
||||
|
||||
Name: inputplumber
|
||||
Version: 0.77.5
|
||||
Version: 0.77.6
|
||||
Release: 1%{?dist}
|
||||
Summary: Open source input router and remapper daemon for Linux
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
%global name_pretty %{quote:Prism Launcher (Nightly)}
|
||||
%global appid org.prismlauncher.PrismLauncher-nightly
|
||||
|
||||
%global commit 5f59aa58294b24e178e30a408230dda3d98ea5b0
|
||||
%global commit f654ce821291b8b8db1f52850dec9e48ede1866f
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global commit_date 20260612
|
||||
%global commit_date 20260618
|
||||
%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 e429f8cf05926852ed63949cad652bf1de5869a4
|
||||
%global ver 0.0.41-19488
|
||||
%global commit e32d19ffac500c6194f93b0338a4a64c51399b38
|
||||
%global ver 0.0.41-19499
|
||||
|
||||
Name: rpcs3
|
||||
Version: %(echo %{ver} | sed 's/-/^/g')
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit 153468dc86e8d2cdd5e1908f68c17faf2d0b4b47
|
||||
%global commit be8009c62509322682299bfbe969a62cee03f4d5
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver v26.3.27
|
||||
%global commit_date 20260617
|
||||
%global commit_date 20260620
|
||||
|
||||
%global goipath github.com/XTLS/Xray-core
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
%global _desc A framework for package management.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 0.12.33
|
||||
Release: 2%?dist
|
||||
Version: 0.12.34
|
||||
Release: 1%{?dist}
|
||||
Summary: A framework for package management
|
||||
License: BSD-3-Clause
|
||||
URL: https://pkgcore.github.io/pkgcore
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global _desc Send usage data from your Python code to PostHog.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 7.19.1
|
||||
Version: 7.19.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Send usage data from your Python code to PostHog
|
||||
License: MIT
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
%global _desc Command-line client for the Public.com Trading API.
|
||||
|
||||
Name: python-%{real_name}
|
||||
Version: 1.1.0
|
||||
Release: 2%?dist
|
||||
Version: 1.2.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Command-line client for the Public.com Trading API
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/PublicDotCom/publicdotcom-cli
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
%global _desc A Python SDK for interacting with the Public Trading API, providing a simple and intuitive interface for trading operations, market data retrieval, and account management.
|
||||
|
||||
Name: python-%{real_name}
|
||||
Version: 0.1.16
|
||||
Version: 0.1.17
|
||||
Release: 1%{?dist}
|
||||
Summary: Python SDK for interacting with the Public Trading API
|
||||
License: Apache-2.0
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
%global _desc A python library that implements optimized versions of common functionality.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 0.11.0
|
||||
Release: 2%?dist
|
||||
Version: 0.11.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Implements optimized versions of common functionality
|
||||
License: BSD-3-Clause
|
||||
URL: https://pkgcore.github.io/snakeoil
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 5e927a88f7c37b2592371a419cf4dd355a3ae4b7
|
||||
%global commit_date 20260617
|
||||
%global commit fb2af6606cf8fa85a8bf06c0d1f5689327d4b6fc
|
||||
%global commit_date 20260620
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global pypi_name types-colorama
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
%global crate bottom
|
||||
|
||||
Name: rust-bottom
|
||||
Version: 0.12.3
|
||||
Release: 1%?dist
|
||||
Version: 0.13.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Customizable cross-platform graphical process/system monitor for the terminal
|
||||
|
||||
License: MIT
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: fresh
|
||||
Version: 0.4.0
|
||||
Version: 0.4.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Text editor for your terminal: easy, powerful and fast
|
||||
URL: https://getfresh.dev
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%define __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
%global crate zoi-rs
|
||||
%global crate_version 1.18.5
|
||||
%global crate_version 1.18.6
|
||||
|
||||
Name: rust-zoi-rs
|
||||
Version: %(echo %crate_version | sed 's/-/~/g')
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
version=0.17.0-dev.864+3deb86baf
|
||||
version=0.17.0-dev.902+7255f3e72
|
||||
|
||||
mirrors=()
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%define llvm_compat 22
|
||||
%endif
|
||||
%global llvm_version 22.0.0
|
||||
%global ver 0.17.0-dev.864+3deb86baf
|
||||
%global ver 0.17.0-dev.902+7255f3e72
|
||||
%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.864+3deb86baf
|
||||
Version: 0.17.0~dev.892+54537285c
|
||||
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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 948805f6e8cf7f8c08eba06ab1db1eef0e75e3a0
|
||||
%global shortcommit 948805f
|
||||
%global commit_date 20260613
|
||||
%global commit 1c762bf4cf2f7e2aab1648d562dc98d2abc6e6ec
|
||||
%global shortcommit 1c762bf
|
||||
%global commit_date 20260619
|
||||
|
||||
Name: astal
|
||||
Version: 0^%commit_date.%commit
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
|
||||
%global commit 948805f6e8cf7f8c08eba06ab1db1eef0e75e3a0
|
||||
%global commit 1c762bf4cf2f7e2aab1648d562dc98d2abc6e6ec
|
||||
%global shortcommit %{sub %commit 1 7}
|
||||
%global commit_date 20260613
|
||||
%global commit_date 20260619
|
||||
|
||||
Name: astal
|
||||
Version: 0^%commit_date.%shortcommit
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
%forgemeta
|
||||
|
||||
Name: cmake-extras
|
||||
Version: 1.9
|
||||
Release: 2%?dist
|
||||
Version: 1.10
|
||||
Release: 1%{?dist}
|
||||
Summary: A collection of add-ons for the CMake build tool
|
||||
License: GPL-3.0-or-later
|
||||
URL: https://gitlab.com/ubports/development/core/cmake-extras
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: libusermetrics
|
||||
Version: 1.4.1
|
||||
Release: 2%?dist
|
||||
Version: 1.4.2
|
||||
Release: 1%{?dist}
|
||||
Summary: library for retrieving anonymous metrics about users
|
||||
License: GPL-3.0-or-later AND LGPL-3.0-or-later AND LGPL-2.1-or-later
|
||||
URL: https://gitlab.com/ubports/development/core/libusermetrics
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit 9f9d8faf3a68541fb9e9e8245b103a6cab54df19
|
||||
%global commit dccbbd62a026752603f3205a12de0f2ff7ff2ab0
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 20260616073835
|
||||
%global commit_date 20260617
|
||||
%global ver 20260620002456
|
||||
%global commit_date 20260620
|
||||
|
||||
Name: v2ray-domain-list-community
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit ce6485980843245f8dc13ec0d0b2258fb04435d2
|
||||
%global commit 519243fd551caf9b118d2a34c95699ce15cd74eb
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 202605120112
|
||||
%global commit_date 20260512
|
||||
%global ver 202606191114
|
||||
%global commit_date 20260620
|
||||
|
||||
%global year %{gsub %commit_date %%d%%d%%d%%d$ %{quote:}}
|
||||
%global month %{gsub %commit_date %%d%%d%%d%%d(%%d%%d)%%d%%d %%1}
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
Name: LCEVCdec
|
||||
Version: 4.2.0
|
||||
Release: 1%{?dist}
|
||||
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 @@
|
||||
8.1.1
|
||||
8.1.2
|
||||
|
||||
@@ -1 +1 @@
|
||||
4.0.3
|
||||
4.2.0
|
||||
|
||||
@@ -1 +1 @@
|
||||
5.2.43
|
||||
5.5.23
|
||||
@@ -107,8 +107,8 @@
|
||||
Name: ffmpeg
|
||||
%global pkg_name %{name}%{?pkg_suffix}
|
||||
|
||||
Version: 8.1.1
|
||||
Release: 3%{?dist}
|
||||
Version: 8.1.2
|
||||
Release: 2%{?dist}
|
||||
Epoch: 1
|
||||
Summary: A complete solution to record, convert and stream audio and video
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
@@ -1 +1 @@
|
||||
8.1.1
|
||||
8.1.2
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: gstreamer1-plugin-libav
|
||||
Version: 1.28.4
|
||||
Release: 1%{?dist}
|
||||
Release: 2%{?dist}
|
||||
Epoch: 1
|
||||
Summary: GStreamer Libav plugin
|
||||
License: LGPL-2.0-or-later
|
||||
|
||||
@@ -4,12 +4,12 @@
|
||||
%global asus_system_units asusd.service asus-shutdown.service
|
||||
|
||||
Name: asusctl
|
||||
Version: 6.3.8
|
||||
Release: 2%{?dist}
|
||||
Version: 1.0.1
|
||||
Release: 1%{?dist}
|
||||
Epoch: 1
|
||||
Summary: A control daemon, CLI tools, and a collection of crates for interacting with ASUS ROG laptops
|
||||
URL: https://gitlab.com/asus-linux/asusctl
|
||||
Source0: %url/-/archive/%version/asusctl-%version.tar.gz
|
||||
URL: https://github.com/OpenGamingCollective/asusctl
|
||||
Source0: %{url}/archive/refs/tags/%{version}.tar.gz
|
||||
Source1: %{appid}.metainfo.xml
|
||||
License: MPL-2.0 AND (MIT OR Apache-2.0) AND NCSA AND Unicode-3.0 AND (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND MIT AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR MIT) AND (Apache-2.0 OR Zlib) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-2-Clause (BSD-2-Clause OR Apache-2.0 OR MIT) AND (BSD-3-Clause OR Apache-2.0) AND BSD-3-Clause AND BSL-1.0 AND (CC0-1.0 OR Apache-2.0) AND (GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0) AND ISC AND MIT AND Zlib AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Apache-2.0 OR Zlib) AND Unlicense AND (Zlib OR Apache-2.0 OR MIT)
|
||||
BuildRequires: anda-srpm-macros
|
||||
@@ -45,7 +45,7 @@ A one-stop-shop GUI tool for asusd/asusctl. It aims to provide most controls,
|
||||
a notification service, and ability to run in the background.
|
||||
|
||||
%prep
|
||||
%autosetup -n asusctl-%version
|
||||
%autosetup
|
||||
%cargo_prep_online
|
||||
|
||||
%build
|
||||
@@ -111,8 +111,11 @@ mkdir -p %{buildroot}%{_sysconfdir}/asusd
|
||||
%{_metainfodir}/%{appid}.metainfo.xml
|
||||
|
||||
%changelog
|
||||
* Thu Jun 18 2026 Owen Zimmerman <owen@fyralabs.com> - 6.3.8-3
|
||||
- Switch to OGC upstream
|
||||
|
||||
* Wed Jun 17 2026 Owen Zimmerman <owen@fyralabs.com> - 6.3.8-2
|
||||
- define %{asus_system_units} to make rhe spec a bit cleaner
|
||||
- Define %{asus_system_units} to make rhe spec a bit cleaner
|
||||
- and only call %%systemd_* once
|
||||
|
||||
* Fri May 08 2026 Owen Zimmerman <owen@fyralabs.com> - 6.3.7-3
|
||||
|
||||
@@ -1 +1,2 @@
|
||||
rpm.version(gitlab("20328305"));
|
||||
rpm.version(gh_tag("OpenGamingCollective/asusctl"));
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit fd4a923c3787e7903971f45b62a0f594c608f846
|
||||
%global commit_date 20260617
|
||||
%global commit b0610f3e9109274730d6b7044f6d7b6603eaac3f
|
||||
%global commit_date 20260620
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
Name: cloud-hypervisor-nightly
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%global buildforkernels akmod
|
||||
%global debug_package %{nil}
|
||||
%global commit e9f7e01d0483c8596614b2f803c51ebb672ddc6c
|
||||
%global commit 0d5ba31069ead844e231ed1ac637ac8ef571d63a
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260617
|
||||
%global commit_date 20260618
|
||||
%global modulename intel-ipu6
|
||||
# Actual "release" version, currently unused as the release versions are back and forth on if on if they use 1.0.0 or 1.0.1
|
||||
%global ver 1.0.1
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global debug_package %{nil}
|
||||
%global commit e9f7e01d0483c8596614b2f803c51ebb672ddc6c
|
||||
%global commit 0d5ba31069ead844e231ed1ac637ac8ef571d63a
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260617
|
||||
%global commit_date 20260618
|
||||
%global modulename intel-ipu6
|
||||
# Actual "release" version, currently unused as the release versions are back and forth on if on if they use 1.0.0 or 1.0.1
|
||||
%global ver 1.0.1
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global debug_package %{nil}
|
||||
%global commit e9f7e01d0483c8596614b2f803c51ebb672ddc6c
|
||||
%global commit 0d5ba31069ead844e231ed1ac637ac8ef571d63a
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260617
|
||||
%global commit_date 20260618
|
||||
# Actual "release" version, currently unused as the release versions are back and forth on if on if they use 1.0.0 or 1.0.1
|
||||
# Use this if they ever stop doing that I guess
|
||||
%global ver 1.0.1
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: pion
|
||||
Version: 0.1.0
|
||||
Version: 0.1.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Binder IPC Linux userspace root service
|
||||
License: MIT AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (Unlicense OR MIT)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 13d50ce4bbcf574dddfd222bc1d42dfc1949fb32
|
||||
%global commit f5e46f7fe7d7a804c422d8e981c5825402d8dac6
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260617
|
||||
%global commitdate 20260618
|
||||
%global ver 1.1.1
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ This build actually enables caching to remote storage.}
|
||||
%bcond dist %["%{_target_cpu}" == "x86_64"]
|
||||
|
||||
Name: terra-sccache
|
||||
Version: 0.15.0
|
||||
Version: 0.16.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Remote caching enabled builds of sccache
|
||||
SourceLicense: Apache-2.0 AND (Apache-2.0 OR MIT)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: anda-srpm-macros
|
||||
Version: 0.3.10
|
||||
Version: 0.3.11
|
||||
Release: 1%{?dist}
|
||||
Summary: SRPM macros for extra Fedora packages
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: terra-scripts
|
||||
Version: 0.2.0
|
||||
Version: 0.2.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Helpful scripts for contributing to Terra
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%global tag 2025-08-21
|
||||
%global tag 2026-06-19
|
||||
|
||||
Name: fluent-icon-theme
|
||||
Version: 20250821
|
||||
Release: 4%?dist
|
||||
Version: 20260619
|
||||
Release: 1%{?dist}
|
||||
Summary: Fluent icon theme for linux desktops
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
@@ -1 +1 @@
|
||||
25
|
||||
35
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit bf51523edbf825054c1bee6efe02a09aaeda394f
|
||||
%global commit_date 20260528
|
||||
%global commit 4f560eccd0acc9c192f31077c2b3202422cb24fb
|
||||
%global commit_date 20260619
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
Name: tela-icon-theme
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%define debug_package %{nil}
|
||||
|
||||
Name: cloudflare-speed-cli
|
||||
Version: 1.0.5
|
||||
Version: 1.0.6
|
||||
Release: 1%{?dist}
|
||||
Summary: CLI for internet speed test via cloudflare
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%define debug_package %nil
|
||||
|
||||
Name: coreboot-utils
|
||||
Version: 26.03
|
||||
Version: 26.06
|
||||
Release: 1%{?dist}
|
||||
Summary: Various coreboot utilities
|
||||
URL: https://doc.coreboot.org
|
||||
|
||||
@@ -1,104 +0,0 @@
|
||||
diff --git a/gf2.cpp b/gf2.cpp
|
||||
index 116f1d0..2d21a07 100644
|
||||
--- a/gf2.cpp
|
||||
+++ b/gf2.cpp
|
||||
@@ -1528,68 +1528,68 @@ void InterfaceAddBuiltinWindowsAndCommands() {
|
||||
interfaceDataViewers.Add({ "Add bitmap...", BitmapAddDialog });
|
||||
|
||||
interfaceCommands.Add({ .label = "Run\tShift+F5",
|
||||
- { .code = UI_KEYCODE_FKEY(5), .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "r" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(5), .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "r" } });
|
||||
interfaceCommands.Add({ .label = "Run paused\tCtrl+F5",
|
||||
- { .code = UI_KEYCODE_FKEY(5), .ctrl = true, .invoke = CommandSendToGDB, .cp = (void *) "start" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(5), .ctrl = true, .invoke = CommandSendToGDB, .cp = (void *) "start" } });
|
||||
interfaceCommands.Add({ .label = "Kill\tF3",
|
||||
- { .code = UI_KEYCODE_FKEY(3), .invoke = CommandSendToGDB, .cp = (void *) "kill" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(3), .invoke = CommandSendToGDB, .cp = (void *) "kill" } });
|
||||
interfaceCommands.Add({ .label = "Restart GDB\tCtrl+R",
|
||||
- { .code = UI_KEYCODE_LETTER('R'), .ctrl = true, .invoke = CommandSendToGDB, .cp = (void *) "gf-restart-gdb" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_LETTER('R'), .ctrl = true, .invoke = CommandSendToGDB, .cp = (void *) "gf-restart-gdb" } });
|
||||
interfaceCommands.Add({ .label = "Load Last Coredump\tCtrl+Shift+R",
|
||||
- { .code = UI_KEYCODE_LETTER('R'), .ctrl = true, .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "gf-load-last-coredump" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_LETTER('R'), .ctrl = true, .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "gf-load-last-coredump" } });
|
||||
interfaceCommands.Add({ .label = "Connect\tF4",
|
||||
- { .code = UI_KEYCODE_FKEY(4), .invoke = CommandSendToGDB, .cp = (void *) "target remote :1234" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(4), .invoke = CommandSendToGDB, .cp = (void *) "target remote :1234" } });
|
||||
interfaceCommands.Add({ .label = "Continue\tF5",
|
||||
- { .code = UI_KEYCODE_FKEY(5), .invoke = CommandSendToGDB, .cp = (void *) "c" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(5), .invoke = CommandSendToGDB, .cp = (void *) "c" } });
|
||||
interfaceCommands.Add({ .label = "Step over\tF10",
|
||||
- { .code = UI_KEYCODE_FKEY(10), .invoke = CommandSendToGDB, .cp = (void *) "gf-next" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(10), .invoke = CommandSendToGDB, .cp = (void *) "gf-next" } });
|
||||
interfaceCommands.Add({ .label = "Step out of block\tShift+F10",
|
||||
- { .code = UI_KEYCODE_FKEY(10), .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "gf-step-out-of-block" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(10), .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "gf-step-out-of-block" } });
|
||||
interfaceCommands.Add({ .label = "Step in\tF11",
|
||||
- { .code = UI_KEYCODE_FKEY(11), .invoke = CommandSendToGDB, .cp = (void *) "gf-step" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(11), .invoke = CommandSendToGDB, .cp = (void *) "gf-step" } });
|
||||
interfaceCommands.Add({ .label = "Step into outer\tShift+F8",
|
||||
- { .code = UI_KEYCODE_FKEY(8), .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "gf-step-into-outer" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(8), .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "gf-step-into-outer" } });
|
||||
interfaceCommands.Add({ .label = "Step out\tShift+F11",
|
||||
- { .code = UI_KEYCODE_FKEY(11), .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "finish" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(11), .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "finish" } });
|
||||
interfaceCommands.Add({ .label = "Reverse continue\tCtrl+Shift+F5",
|
||||
- { .code = UI_KEYCODE_FKEY(5), .ctrl = true, .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "reverse-continue" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(5), .ctrl = true, .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "reverse-continue" } });
|
||||
interfaceCommands.Add({ .label = "Reverse step over\tCtrl+Shift+F10",
|
||||
- { .code = UI_KEYCODE_FKEY(10), .ctrl = true, .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "reverse-next" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(10), .ctrl = true, .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "reverse-next" } });
|
||||
interfaceCommands.Add({ .label = "Reverse step in\tCtrl+Shift+F11",
|
||||
- { .code = UI_KEYCODE_FKEY(11), .ctrl = true, .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "reverse-step" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(11), .ctrl = true, .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "reverse-step" } });
|
||||
interfaceCommands.Add({ .label = "Pause\tF8",
|
||||
- { .code = UI_KEYCODE_FKEY(8), .invoke = CommandPause } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(8), .invoke = CommandPause } });
|
||||
interfaceCommands.Add({ .label = "Toggle breakpoint\tF9",
|
||||
- { .code = UI_KEYCODE_FKEY(9), .invoke = CommandToggleBreakpoint } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(9), .invoke = CommandToggleBreakpoint } });
|
||||
if (vimServerEnabled) {
|
||||
interfaceCommands.Add({ .label = "Sync with gvim\tF2",
|
||||
- { .code = UI_KEYCODE_FKEY(2), .invoke = CommandSyncWithGvim } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_FKEY(2), .invoke = CommandSyncWithGvim } });
|
||||
}
|
||||
interfaceCommands.Add({ .label = "Ask GDB for PWD\tCtrl+Shift+P",
|
||||
- { .code = UI_KEYCODE_LETTER('P'), .ctrl = true, .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "gf-get-pwd" } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_LETTER('P'), .ctrl = true, .shift = true, .invoke = CommandSendToGDB, .cp = (void *) "gf-get-pwd" } });
|
||||
interfaceCommands.Add({ .label = "Toggle disassembly\tCtrl+D",
|
||||
- { .code = UI_KEYCODE_LETTER('D'), .ctrl = true, .invoke = CommandToggleDisassembly } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_LETTER('D'), .ctrl = true, .invoke = CommandToggleDisassembly } });
|
||||
interfaceCommands.Add({ .label = "Set disassembly mode\tCtrl+M",
|
||||
- { .code = UI_KEYCODE_LETTER('M'), .ctrl = true, .invoke = CommandSetDisassemblyMode } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_LETTER('M'), .ctrl = true, .invoke = CommandSetDisassemblyMode } });
|
||||
interfaceCommands.Add({ .label = "Add watch",
|
||||
- { .invoke = CommandAddWatch } });
|
||||
+ .shortcut = { .invoke = CommandAddWatch } });
|
||||
interfaceCommands.Add({ .label = "Inspect line",
|
||||
- { .code = UI_KEYCODE_BACKTICK, .invoke = CommandInspectLine } });
|
||||
- interfaceCommands.Add({ .label = "Copy Layout to Clipboard", { .invoke = CopyLayoutToClipboard } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_BACKTICK, .invoke = CommandInspectLine } });
|
||||
+ interfaceCommands.Add({ .label = "Copy Layout to Clipboard", .shortcut = { .invoke = CopyLayoutToClipboard } });
|
||||
interfaceCommands.Add({ .label = nullptr,
|
||||
- { .code = UI_KEYCODE_LETTER('E'), .ctrl = true, .invoke = CommandWatchAddEntryForAddress } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_LETTER('E'), .ctrl = true, .invoke = CommandWatchAddEntryForAddress } });
|
||||
interfaceCommands.Add({ .label = nullptr,
|
||||
- { .code = UI_KEYCODE_LETTER('G'), .ctrl = true, .invoke = CommandWatchViewSourceAtAddress } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_LETTER('G'), .ctrl = true, .invoke = CommandWatchViewSourceAtAddress } });
|
||||
interfaceCommands.Add({ .label = nullptr,
|
||||
- { .code = UI_KEYCODE_LETTER('B'), .ctrl = true, .invoke = CommandToggleFillDataTab } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_LETTER('B'), .ctrl = true, .invoke = CommandToggleFillDataTab } });
|
||||
interfaceCommands.Add({ .label = nullptr,
|
||||
- { .code = UI_KEYCODE_LETTER('P'), .ctrl = true, .shift = false, .invoke = CommandPreviousCommand } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_LETTER('P'), .ctrl = true, .shift = false, .invoke = CommandPreviousCommand } });
|
||||
interfaceCommands.Add({ .label = nullptr,
|
||||
- { .code = UI_KEYCODE_LETTER('N'), .ctrl = true, .shift = false, .invoke = CommandNextCommand } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_LETTER('N'), .ctrl = true, .shift = false, .invoke = CommandNextCommand } });
|
||||
interfaceCommands.Add({ .label = nullptr,
|
||||
- { .code = UI_KEYCODE_LETTER('L'), .ctrl = true, .shift = false, .invoke = CommandClearOutput } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_LETTER('L'), .ctrl = true, .shift = false, .invoke = CommandClearOutput } });
|
||||
interfaceCommands.Add({ .label = nullptr,
|
||||
- { .code = UI_KEYCODE_LETTER('U'), .ctrl = true, .shift = false, .invoke = [](void*){ UITextboxClear(textboxInput, false); } } });
|
||||
+ .shortcut = { .code = UI_KEYCODE_LETTER('U'), .ctrl = true, .shift = false, .invoke = [](void*){ UITextboxClear(textboxInput, false); } } });
|
||||
|
||||
msgReceivedData = ReceiveMessageRegister(MsgReceivedData);
|
||||
msgReceivedControl = ReceiveMessageRegister(MsgReceivedControl);
|
||||
@@ -14,7 +14,6 @@ Summary: A GDB frontend for Linux
|
||||
License: MIT
|
||||
URL: %{forgeurl}
|
||||
Source0: %{forgesource}
|
||||
Patch0: 01-fix-designated-initializers.patch
|
||||
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: freetype-devel
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: kittyCAD-cli
|
||||
Version: 0.2.177
|
||||
Version: 0.2.178
|
||||
Release: 1%{?dist}
|
||||
Summary: The Zoo command line tool for KittyCAD
|
||||
URL: https://github.com/KittyCAD/cli
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
Name: neovim-default-editor
|
||||
# Version, release, and epoch are inherited from the editor package just like other default editors
|
||||
Version: 0.12.3
|
||||
Release: 1%{?dist}
|
||||
Version: 0.6.0
|
||||
Release: 5%{?dist}
|
||||
Epoch: 0
|
||||
# Inherited from Neovim itself
|
||||
License: Apache-2.0 AND Vim AND MIT
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit b8cfbdc5b6ea2f4f22faf46141255c4adfe34229
|
||||
%global commit_date 20260613
|
||||
%global commit 61371fa6d93463c5451131f7bb68ae145aaf1e7a
|
||||
%global commit_date 20260618
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
Name: rpi-utils
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: shadowenv
|
||||
Version: 3.4.0
|
||||
Release: 1%?dist
|
||||
Version: 3.5.1
|
||||
Release: 1%{?dist}
|
||||
License: MIT
|
||||
Summary: Reversible directory-local environment variable manipulations
|
||||
URL: https://shopify.github.io/shadowenv/
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: rust-tauri
|
||||
Version: 2.11.2
|
||||
Version: 2.11.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Command line interface for building Tauri apps
|
||||
License: Apache-2.0 OR MIT
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user