mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 17:11:56 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d3e436f492 | |||
| 8e7991534a | |||
| 769cfe08a7 |
@@ -6,10 +6,3 @@ A clear and concise description of why you want this package. Would this provide
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the package submission here. Link to any relavent issues.
|
||||
|
||||
**Checklist**
|
||||
- [] This package is maintained OR there is a valid reason to add it (e.g. python dependency)
|
||||
- [] I have tested at least the `x86_64` version of the package
|
||||
- [] I have read through any relevant [Terra](https://developer.fyralabs.com/terra) and [Fedora packaging](https://docs.fedoraproject.org/en-US/packaging-guidelines/) documentation/policies/guidelines
|
||||
- [] I have made sure there are no security issues with this package to the best of my ability
|
||||
- [] I have made sure this is not in Fedora (unless adding to the [extras repo](https://developer.fyralabs.com/terra/installing#extras)).
|
||||
|
||||
@@ -51,7 +51,7 @@ jobs:
|
||||
image: ghcr.io/terrapkg/appstream-generator:main
|
||||
steps:
|
||||
- name: Download artifacts
|
||||
uses: actions/download-artifact@v8
|
||||
uses: actions/download-artifact@v7
|
||||
with:
|
||||
merge-multiple: true
|
||||
path: ./artifacts
|
||||
@@ -69,18 +69,6 @@ jobs:
|
||||
--basename=test \
|
||||
--veto-ignore=missing-parents \
|
||||
--veto-ignore=missing-info 2>&1 | tee asb.log
|
||||
|
||||
- name: Run appstreamcli validate
|
||||
run: |
|
||||
echo "## AppStream MetaInfo Validation" >> $GITHUB_STEP_SUMMARY
|
||||
echo "" >> $GITHUB_STEP_SUMMARY
|
||||
echo '```xml' >> $GITHUB_STEP_SUMMARY
|
||||
for file in output/test.xml.gz; do
|
||||
appstreamcli validate $file >> $GITHUB_STEP_SUMMARY || true
|
||||
echo "" >> $GITHUB_STEP_SUMMARY
|
||||
done
|
||||
echo '```' >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Export logs
|
||||
id: export_logs
|
||||
run: |
|
||||
|
||||
@@ -99,7 +99,7 @@ jobs:
|
||||
x=${NAME//\//@}
|
||||
echo "name=$x" >> $GITHUB_OUTPUT
|
||||
|
||||
- uses: actions/upload-artifact@v7
|
||||
- uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: ${{ steps.art.outputs.name }}
|
||||
compression-level: 0 # The RPMs are already compressed :p
|
||||
|
||||
@@ -1,70 +0,0 @@
|
||||
name: Update GPG keys
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
update-gpg-keys:
|
||||
runs-on: ubuntu-24.04-arm
|
||||
strategy:
|
||||
matrix:
|
||||
branch:
|
||||
- frawhide
|
||||
- f44
|
||||
- f43
|
||||
- f42
|
||||
- el10
|
||||
container:
|
||||
image: ghcr.io/terrapkg/builder:frawhide
|
||||
options: --cap-add=SYS_ADMIN --privileged
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }}
|
||||
|
||||
- name: Install SSH signing key & set up Git repository
|
||||
run: |
|
||||
mkdir -p ${{ runner.temp }}
|
||||
echo "${{ secrets.SSH_SIGNING_KEY }}" > ${{ runner.temp }}/signing_key
|
||||
chmod 0700 ${{ runner.temp }}/signing_key
|
||||
git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
||||
|
||||
- name: Update GPG keys
|
||||
env: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
for branch in $(sed -n 's/- \(f.*\)/\1/p;s/- \(el.*\)/\1/p' .github/workflows/update-branch.yml | tr -d ' '); do
|
||||
if [[ $branch == f* ]]; then
|
||||
export releasever=${branch/f/}
|
||||
else
|
||||
export releasever=$branch
|
||||
fi
|
||||
|
||||
curl -s https://repos.fyralabs.com/terra$releasever/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever
|
||||
curl -s https://repos.fyralabs.com/terra$releasever-source/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-source
|
||||
if [[ $releasever != el* ]]; then
|
||||
curl -s https://repos.fyralabs.com/terra$releasever-extras/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-extras
|
||||
curl -s https://repos.fyralabs.com/terra$releasever-extras-source/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-extras-source
|
||||
curl -s https://repos.fyralabs.com/terra$releasever-mesa/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-mesa
|
||||
curl -s https://repos.fyralabs.com/terra$releasever-mesa-source/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-mesa-source
|
||||
curl -s https://repos.fyralabs.com/terra$releasever-multimedia/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-multimedia
|
||||
curl -s https://repos.fyralabs.com/terra$releasever-multimedia-source/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-multimedia-source
|
||||
curl -s https://repos.fyralabs.com/terra$releasever-nvidia/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-nvidia
|
||||
curl -s https://repos.fyralabs.com/terra$releasever-nvidia-source/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-nvidia-source
|
||||
fi
|
||||
done
|
||||
anda update --filters keys=1 --labels branch=${{ matrix.branch }}
|
||||
|
||||
- name: Save
|
||||
run: |
|
||||
if [[ `git status --porcelain` ]]; then
|
||||
git config user.name "Raboneko"
|
||||
git config user.email "raboneko@fyralabs.com"
|
||||
git config gpg.format "ssh"
|
||||
git config user.signingkey "${{ runner.temp }}/signing_key"
|
||||
git commit -S -a -m "bump(manual): terra-gpg-keys"
|
||||
git push -u origin --all
|
||||
fi
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: bitwarden-cli.bin
|
||||
Version: 2026.2.0
|
||||
Release: 1%{?dist}
|
||||
Version: 2026.1.0
|
||||
Release: 2%?dist
|
||||
Summary: Bitwarden command-line client
|
||||
License: GPL-3.0-only
|
||||
URL: https://bitwarden.com
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
%endif
|
||||
|
||||
Name: bitwarden-cli
|
||||
Version: 2026.2.0
|
||||
Release: 1%{?dist}
|
||||
Version: 2026.1.0
|
||||
Release: 1%?dist
|
||||
Summary: Bitwarden command-line client
|
||||
License: GPL-3.0-only
|
||||
URL: https://bitwarden.com
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-canary-openasar
|
||||
Version: 0.0.889
|
||||
Release: 1%{?dist}
|
||||
Version: 0.0.885
|
||||
Release: 1%?dist
|
||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||
License: MIT AND https://discord.com/terms
|
||||
URL: https://github.com/GooseMod/OpenAsar
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-canary
|
||||
Version: 0.0.889
|
||||
Release: 1%{?dist}
|
||||
Version: 0.0.885
|
||||
Release: 1%?dist
|
||||
Summary: Free Voice and Text Chat for Gamers
|
||||
URL: discord.com
|
||||
Source0: https://dl-canary.discordapp.net/apps/linux/%{version}/discord-canary-%{version}.tar.gz
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-ptb-openasar
|
||||
Version: 0.0.181
|
||||
Release: 1%{?dist}
|
||||
Version: 0.0.179
|
||||
Release: 1%?dist
|
||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||
License: MIT AND https://discord.com/terms
|
||||
URL: https://github.com/GooseMod/OpenAsar
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-ptb
|
||||
Version: 0.0.181
|
||||
Release: 1%{?dist}
|
||||
Version: 0.0.179
|
||||
Release: 1%?dist
|
||||
Summary: Free Voice and Text Chat for Gamers.
|
||||
URL: https://discord.com
|
||||
Source0: https://dl-ptb.discordapp.net/apps/linux/%{version}/discord-ptb-%{version}.tar.gz
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
%global commit f345e496b4edafe84d3fe6fd9150c92c7de93b72
|
||||
%global commit_date 20260306
|
||||
%global commit 9e23d0120c0da40ec6e734756a6252783ac93039
|
||||
%global commit_date 20260302
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
Name: envision-nightly
|
||||
Version: %commit_date.%shortcommit
|
||||
Release: 1%{?dist}
|
||||
Release: 1%?dist
|
||||
Summary: UI for building, configuring and running Monado, the open source OpenXR runtime
|
||||
SourceLicense: AGPL-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 AGPL-3.0-or-later 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 AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND ISC AND (MIT OR Apache-2.0) AND (MIT OR Zlib OR Apache-2.0) AND MIT AND Unicode-3.0 AND (Unlicense OR MIT) AND Zlib
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "terra-firefox.spec"
|
||||
}
|
||||
labels {
|
||||
large = 1
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,9 +1,9 @@
|
||||
#? https://github.com/flameshot-org/flameshot/blob/master/packaging/rpm/fedora/flameshot.spec
|
||||
|
||||
%global ver 13.3.0
|
||||
%global commit bb6e504e842b9197897469428ffccbbd61cbe831
|
||||
%global commit 4a32a7e86a15a67456d628e79d77d86cb7db2e7e
|
||||
%global shortcommit %{sub %{commit} 1 7}
|
||||
%global commit_date 20260306
|
||||
%global commit_date 20260303
|
||||
%global devel_name QtColorWidgets
|
||||
%global _distro_extra_cflags -fuse-ld=mold
|
||||
%global _distro_extra_cxxflags -fuse-ld=mold
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
%global commit d0dc4f84002f09609b6a6142ebff64dd20bf5f61
|
||||
%global commit 45f3fcfa70d482ae1ac94ec9a2e78f3d941a37e5
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260306
|
||||
%global ver 2.1.0^
|
||||
%global commit_date 20260304
|
||||
%global ver 2.0.1^
|
||||
%global base_name goofcord
|
||||
%global git_name GoofCord
|
||||
%global appid io.github.milkshiift.GoofCord
|
||||
|
||||
Name: %{base_name}-nightly
|
||||
Version: %{ver}%{commit_date}.git.%{shortcommit}
|
||||
Release: 1%{?dist}
|
||||
Release: 1%?dist
|
||||
License: OSL-3.0
|
||||
Summary: A privacy-minded Legcord fork.
|
||||
Group: Applications/Internet
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
%global appid io.github.milkshiift.GoofCord
|
||||
|
||||
Name: goofcord
|
||||
Version: 2.1.1
|
||||
Release: 1%{?dist}
|
||||
Version: 2.0.1
|
||||
Release: 2%{?dist}
|
||||
License: OSL-3.0
|
||||
Summary: A privacy-minded Legcord fork.
|
||||
Group: Applications/Internet
|
||||
@@ -19,7 +19,7 @@ Packager: Gilver E. <roachy@fyralabs.com>
|
||||
A highly configurable and privacy minded Discord client.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n %{git_name}-%{version}
|
||||
%autosetup -n %{git_name}-%{version}
|
||||
%ifarch %{arm64} armv7hl armv7l
|
||||
sed -i '/\"x64\",/d' electron-builder.ts
|
||||
%endif
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 3adce3c9b5a31e37c7f340afdcf2629859faa9c2
|
||||
%global commit_date 20260305
|
||||
%global commit 21e4345ad9493f3ae8814828009e326453430c5d
|
||||
%global commit_date 20260303
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global debug_package %nil
|
||||
%global __strip /bin/true
|
||||
|
||||
@@ -33,7 +33,6 @@ Why?
|
||||
%autosetup
|
||||
|
||||
%build
|
||||
%set_javascript_build_flags
|
||||
EXTRA_TAGS=gtk4 wails3 build
|
||||
|
||||
%install
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
# Disable X11 for RHEL 10+
|
||||
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
|
||||
|
||||
%global commit 3b55bc9795a4ab6cf04d1611f4839330cf5c1990
|
||||
%global commit c401ef9c3b005deb24afec1d0b5d1cb4cea72d14
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260306
|
||||
%global commit_date 20260303
|
||||
%global ver 0.41.0
|
||||
|
||||
Name: mpv-nightly
|
||||
Version: %ver^%commit_date.%shortcommit
|
||||
Release: 1%{?dist}
|
||||
Release: 1%?dist
|
||||
|
||||
License: GPL-2.0-or-later AND LGPL-2.1-or-later
|
||||
Summary: Movie player playing most video formats and DVDs
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: proton-vpn-gtk-app
|
||||
Version: 4.14.2
|
||||
Release: 1%{?dist}
|
||||
Version: 4.14.1
|
||||
Release: 2%?dist
|
||||
Summary: Official ProtonVPN Linux app
|
||||
License: GPL-3.0-only
|
||||
URL: https://protonvpn.com/download-linux
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
%global ver 2026-03-06
|
||||
%global ver 2026-03-04
|
||||
%global goodver %(echo %ver | sed 's/-//g')
|
||||
%global __brp_mangle_shebangs %{nil}
|
||||
%bcond_without mold
|
||||
@@ -9,7 +9,7 @@ language. Ruffle targets both the desktop and the web using WebAssembly.}
|
||||
|
||||
Name: ruffle-nightly
|
||||
Version: %goodver
|
||||
Release: 1%{?dist}
|
||||
Release: 1%?dist
|
||||
Summary: A Flash Player emulator written in Rust
|
||||
License: Apache-2.0 OR MIT
|
||||
URL: https://ruffle.rs/
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
Name: signal-desktop
|
||||
%electronmeta -aD
|
||||
Version: 8.1.0
|
||||
Release: 1%?dist
|
||||
Version: 8.0.0
|
||||
Release: 3%?dist
|
||||
Summary: A private messenger for Windows, macOS, and Linux
|
||||
URL: https://signal.org
|
||||
Source0: https://github.com/signalapp/Signal-Desktop/archive/refs/tags/v%{version}.tar.gz
|
||||
|
||||
@@ -1 +1 @@
|
||||
v1.13.13
|
||||
v1.13.03
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
%global commit 911134bb3a8c7153095dc9d3b53af6a097a9d719
|
||||
%global commit_date 20260306
|
||||
%global commit 93bd38c27325f8c9c0fbe4114ee061cfa6970cb7
|
||||
%global commit_date 20260228
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global extension multi-monitors-bar
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
Name: gnome-shell-extension-%{extension}
|
||||
Version: 0~%{commit_date}git.%{shortcommit}
|
||||
Release: 1%{?dist}
|
||||
Release: 1%?dist
|
||||
Summary: Add multiple monitors overview and panel for GNOME Shell. This is an updated fork with GNOME 46 compatibility
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://github.com/FrederykAbryan/multi-monitors-bar_fapv2
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%define archive unity_7.7.1+26.04.20260306-0ubuntu1.tar.xz
|
||||
%define archive unity_7.7.0+23.04.20230222.2-0ubuntu9.tar.xz
|
||||
|
||||
Name: unity-shell
|
||||
Version: 7.7.1
|
||||
Release: 1%{?dist}
|
||||
Version: 7.7.0
|
||||
Release: 1%?dist
|
||||
Summary: Unity is a shell that sings
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "mangowm.spec"
|
||||
}
|
||||
}
|
||||
@@ -1,63 +0,0 @@
|
||||
%global mangowc_ver 0.12.5-1
|
||||
|
||||
Name: mangowm
|
||||
Version: 0.12.5
|
||||
Release: 2%{?dist}
|
||||
Summary: A modern, lightweight, high-performance Wayland compositor built on dwl
|
||||
License: GPL-3.0-or-later AND MIT AND X11 AND CC0-1.0
|
||||
Packager: metcya <metcya@gmail.com>
|
||||
URL: https://github.com/mangowm/mango
|
||||
Source: %{url}/archive/%{version}.tar.gz
|
||||
|
||||
BuildRequires: meson
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: pkgconfig(xcb)
|
||||
BuildRequires: pkgconfig(xcb-icccm)
|
||||
BuildRequires: pkgconfig(wayland-protocols)
|
||||
BuildRequires: pkgconfig(wayland-server)
|
||||
BuildRequires: pkgconfig(wlroots-0.19)
|
||||
BuildRequires: pkgconfig(xkbcommon)
|
||||
BuildRequires: pkgconfig(libinput)
|
||||
BuildRequires: pkgconfig(wayland-client)
|
||||
BuildRequires: pkgconfig(libpcre2-8)
|
||||
BuildRequires: pkgconfig(scenefx-0.4)
|
||||
|
||||
Conflicts: mangowc < %{mangowc_ver}
|
||||
Obsoletes: mangowc < %{mangowc_ver}
|
||||
Provides: mangowc = %{mangowc_ver}
|
||||
|
||||
%description
|
||||
MangoWM is a modern, lightweight, high-performance Wayland compositor built on
|
||||
dwl — crafted for speed, flexibility, and a customizable desktop experience.
|
||||
|
||||
%prep
|
||||
%autosetup -n mango-%{version}
|
||||
|
||||
%build
|
||||
%meson
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
|
||||
%files
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%license LICENSE.wlroots
|
||||
%license LICENSE.tinywl
|
||||
%license LICENSE.sway
|
||||
%license LICENSE.dwm
|
||||
%license LICENSE.dwl
|
||||
%{_bindir}/mango
|
||||
%{_bindir}/mmsg
|
||||
%{_sysconfdir}/mango/config.conf
|
||||
%{_datadir}/wayland-sessions/mango.desktop
|
||||
%{_datadir}/xdg-desktop-portal/mango-portals.conf
|
||||
|
||||
%changelog
|
||||
* Wed Mar 04 2026 metcya <metcya@gmail.com> - 0.12.5-1
|
||||
- Rename to mangowm
|
||||
|
||||
* Wed Nov 12 2025 metcya <metcya@gmail.com>
|
||||
- Package mangowc
|
||||
@@ -1 +0,0 @@
|
||||
rpm.version(gh("mangowm/mango"));
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: noctalia-qs
|
||||
Version: 0.0.5
|
||||
Version: 0.0.4
|
||||
Release: 1%?dist
|
||||
Summary: Flexible QtQuick based desktop shell toolkit
|
||||
License: LGPL-3.0-only AND GPL-3.0-only
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%global debug_package %{nil}
|
||||
|
||||
Name: noctalia-shell
|
||||
Version: 4.6.4
|
||||
Release: 1%{?dist}
|
||||
Version: 4.6.1
|
||||
Release: 1%?dist
|
||||
Summary: A Quickshell-based custom shell setup
|
||||
|
||||
License: MIT
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
# Generated by rust2rpm 27
|
||||
%global commit 865cf631d5bbb5f9fccc99b3f4cc80b9eeada18c
|
||||
%global commit fddb4a09b107237819e661151e007b99b5cab36d
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260305
|
||||
%global commit_date 20250630
|
||||
%global ver v0.6.0
|
||||
%bcond check 0
|
||||
|
||||
Name: eww
|
||||
Version: %ver^%commit_date.git~%shortcommit
|
||||
Release: 1%{?dist}
|
||||
Release: 1%?dist
|
||||
Summary: Widgets for everyone!
|
||||
|
||||
SourceLicense: MIT
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: asar
|
||||
Version: 4.1.0
|
||||
Version: 4.0.1
|
||||
Release: 1%?dist
|
||||
Summary: Simple extensive tar-like archive format with indexing
|
||||
License: MIT
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
# https://github.com/asdf-vm/asdf
|
||||
%global goipath github.com/asdf-vm/asdf
|
||||
Version: 0.18.1
|
||||
Version: 0.18.0
|
||||
|
||||
%gometa -f
|
||||
|
||||
@@ -25,7 +25,7 @@ more.}
|
||||
SECURITY.md ballad-of-asdf.md help.txt version.txt
|
||||
|
||||
Name: asdf
|
||||
Release: 1%?dist
|
||||
Release: %autorelease
|
||||
Summary: Extendable version manager with support for Ruby, Node.js, Elixir, Erlang & more
|
||||
|
||||
License: MIT
|
||||
|
||||
@@ -14,8 +14,8 @@
|
||||
%global appid com.vscodium.VSCodium
|
||||
|
||||
Name: codium
|
||||
Version: 1.110.01571
|
||||
Release: 1%{?dist}
|
||||
Version: 1.109.51242
|
||||
Release: 1%?dist
|
||||
Summary: Code editing. Redefined.
|
||||
License: MIT
|
||||
URL: https://vscodium.com/
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
%global crate deno
|
||||
|
||||
Name: rust-deno
|
||||
Version: 2.7.4
|
||||
Release: 1%{?dist}
|
||||
Version: 2.7.2
|
||||
Release: 1%?dist
|
||||
Summary: Deno executable
|
||||
|
||||
License: MIT
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: flutter
|
||||
Version: 3.41.4
|
||||
Version: 3.41.3
|
||||
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 3e220ab3757243c45bbb999c185ae33de8f70da7
|
||||
%global commit c93cf521088594649a6c2d54e1c916c3906c0a0f
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global fulldate 2026-03-05
|
||||
%global fulldate 2026-03-03
|
||||
%global commit_date %(echo %{fulldate} | sed 's/-//g')
|
||||
%global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
|
||||
%global ver 1.3.0
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
Name: %{base_name}-nightly
|
||||
Version: %{ver}~tip^%{commit_date}git%{shortcommit}
|
||||
Release: 1%{?dist}
|
||||
Release: 1%?dist
|
||||
%if 0%{?fedora} <= 41
|
||||
Epoch: 1
|
||||
%endif
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
%global crate lowfi
|
||||
|
||||
Name: rust-lowfi
|
||||
Version: 2.0.4
|
||||
Release: 1%{?dist}
|
||||
Version: 2.0.1
|
||||
Release: 1%?dist
|
||||
Summary: Extremely simple lofi player
|
||||
|
||||
License: MIT
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit ca5027c4d6c43cdf21f2af9731369cd8cb64570e
|
||||
%global commit 9c9337a8021f74511625517c3f4fa021106609eb
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260306
|
||||
%global ver 0.228.0
|
||||
%global commit_date 20260304
|
||||
%global ver 0.227.0
|
||||
|
||||
%bcond_with check
|
||||
%bcond_with debug_no_build
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
Name: zed-nightly
|
||||
Version: %ver^%commit_date.%shortcommit
|
||||
Release: 1%{?dist}
|
||||
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
|
||||
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
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global debug_package %{nil}
|
||||
%endif
|
||||
|
||||
%global ver 0.227.1-pre
|
||||
%global ver 0.226.4-pre
|
||||
# Exclude input files from mangling
|
||||
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
Name: zed-preview
|
||||
Version: %(echo %ver | sed 's/-/~/')
|
||||
Release: 1%{?dist}
|
||||
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
|
||||
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
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
%global rustflags_debuginfo 0
|
||||
|
||||
Name: zed
|
||||
Version: 0.226.5
|
||||
Release: 1%{?dist}
|
||||
Version: 0.225.13
|
||||
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
|
||||
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
|
||||
|
||||
@@ -30,7 +30,7 @@ Geist Mono is a monospaced typeface that has been crafted to be the perfect part
|
||||
It is designed to be used in code editors, diagrams, terminals, and other textbased interfaces where code is represented.
|
||||
|
||||
%prep
|
||||
%autosetup
|
||||
%autosetup -n %name-geist-%version
|
||||
|
||||
%build
|
||||
%make_build
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global __brp_mangle_shebangs %{nil}
|
||||
|
||||
Name: inputplumber
|
||||
Version: 0.75.1
|
||||
Version: 0.75.0
|
||||
Release: 1%?dist
|
||||
Summary: Open source input router and remapper daemon for Linux
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
%define osuresver 2026.305.0
|
||||
%define osuresver 2026.108.0
|
||||
%global debug_package %{nil}
|
||||
%define __strip /bin/true
|
||||
|
||||
Name: osu-lazer
|
||||
Version: 2026.305.0
|
||||
Release: 1%{?dist}
|
||||
Version: 2026.119.0
|
||||
Release: 2%?dist
|
||||
Summary: The future of osu! and the beginning of an open era! Commonly known by the codename osu!lazer. Pew pew.
|
||||
ExclusiveArch: x86_64
|
||||
URL: https://osu.ppy.sh/
|
||||
|
||||
@@ -9,12 +9,12 @@
|
||||
# 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 ac30feeddb4d53f08397897574649228b8c187d1
|
||||
%global ver 0.0.40-18894
|
||||
%global commit 86b2773c2854ede00ff376d1ee82898c74eb8b71
|
||||
%global ver 0.0.40-18874
|
||||
|
||||
Name: rpcs3
|
||||
Version: %(echo %{ver} | sed 's/-/^/g')
|
||||
Release: 1%{?dist}
|
||||
Release: 1%?dist
|
||||
Summary: PlayStation 3 emulator and debugger
|
||||
License: GPL-2.0-only
|
||||
URL: https://github.com/RPCS3/rpcs3
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: steamos-manager
|
||||
Version: 26.0.1
|
||||
Version: 26.0.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
|
||||
@@ -41,29 +41,23 @@ Requires: %{name} = %{evr}
|
||||
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 %{buildroot}%{_userunitdir}/gamescope-session-plus.service.wants/steamos-manager.service
|
||||
ln -s %{_userunitdir}/steamos-manager.service %{buildroot}%{_userunitdir}/gamescope-session-plus.service.wants/steamos-manager.service
|
||||
%{__ln_s} -f %{buildroot}%{_userunitdir}/gamescope-session-plus.service.wants/steamos-manager.service %{_userunitdir}/steamos-manager.service
|
||||
|
||||
%post
|
||||
%systemd_post steamos-manager.service
|
||||
%systemd_post steamos-manager-configure-cecd.service
|
||||
%systemd_post steamos-manager-session-cleanup.service
|
||||
|
||||
%preun
|
||||
%systemd_preun steamos-manager.service
|
||||
%systemd_preun steamos-manager-configure-cecd.service
|
||||
%systemd_preun steamos-manager-session-cleanup.service
|
||||
|
||||
%postun
|
||||
%systemd_postun_with_restart steamos-manager.service
|
||||
%systemd_postun_with_restart steamos-manager-configure-cecd.service
|
||||
%systemd_postun_with_restart steamos-manager-session-cleanup.service
|
||||
|
||||
%files
|
||||
%license %{_datadir}/licenses/steamos-manager/LICENSE
|
||||
%license LICENSE.dependencies
|
||||
%doc README.md
|
||||
%{_bindir}/steamosctl
|
||||
#{_datadir}/dbus-1/interfaces/com.steampowered.SteamOSManager1.Manager.xml
|
||||
%{_datadir}/dbus-1/interfaces/com.steampowered.SteamOSManager1.Manager.xml
|
||||
%{_datadir}/dbus-1/interfaces/com.steampowered.SteamOSManager1.xml
|
||||
%{_datadir}/dbus-1/services/com.steampowered.SteamOSManager1.service
|
||||
%{_datadir}/dbus-1/system.d/com.steampowered.SteamOSManager1.conf
|
||||
@@ -73,7 +67,6 @@ ln -s %{_userunitdir}/steamos-manager.service %{buildroot}%{_userunitdir}/gamesc
|
||||
%{_prefix}/lib/steamos-manager
|
||||
%{_unitdir}/steamos-manager.service
|
||||
%{_userunitdir}/steamos-manager.service
|
||||
%{_userunitdir}/steamos-manager-configure-cecd.service
|
||||
%{_userunitdir}/steamos-manager-session-cleanup.service
|
||||
|
||||
%files gamescope-session-plus
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
# https://github.com/grpc/grpc-go
|
||||
%global goipath google.golang.org/grpc
|
||||
%global forgeurl https://github.com/grpc/grpc-go
|
||||
Version: 1.79.2
|
||||
Version: 1.79.1
|
||||
|
||||
%gometa -L
|
||||
|
||||
@@ -24,7 +24,7 @@ The Go language implementation of gRPC. HTTP/2 based RPC.}
|
||||
Documentation
|
||||
|
||||
Name: golang-google-grpc.terra
|
||||
Release: 1%{?dist}
|
||||
Release: 1%?dist
|
||||
Summary: The Go language implementation of gRPC. HTTP/2 based RPC
|
||||
|
||||
License: Apache-2.0
|
||||
|
||||
@@ -5,12 +5,12 @@
|
||||
%global cmd_name soft
|
||||
|
||||
%global goipath github.com/charmbracelet/soft-serve
|
||||
Version: 0.11.5
|
||||
Version: 0.11.3
|
||||
|
||||
%gometa -f
|
||||
|
||||
Name: soft-serve
|
||||
Release: 1%{?dist}
|
||||
Release: 1%?dist
|
||||
Summary: The mighty, self-hostable Git server for the command line
|
||||
URL: https://github.com/charmbracelet/%{name}
|
||||
Source0: https://github.com/charmbracelet/%{name}/archive/refs/tags/v%{version}.tar.gz
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
%global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10
|
||||
%global commit e4b1d8eebcbb176ad0dad509b5b0039fe10de287
|
||||
%global commit 9ed4077d9a57e19063c1c67710fa6fb83f5a5fb7
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 2.3.1
|
||||
%global commit_date 20260306
|
||||
%global commit_date 20260302
|
||||
%global debug_package %nil
|
||||
|
||||
Name: nim-nightly
|
||||
Version: %ver^%commit_date.%shortcommit
|
||||
Release: 1%{?dist}
|
||||
Release: 1%?dist
|
||||
Summary: Imperative, multi-paradigm, compiled programming language
|
||||
License: MIT and BSD
|
||||
URL: https://nim-lang.org
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: nimble
|
||||
Version: 0.22.2
|
||||
Release: 1%{?dist}
|
||||
Version: 0.22.1
|
||||
Release: 1%?dist
|
||||
Summary: Package manager for the Nim programming language
|
||||
License: BSD
|
||||
URL: https://github.com/nim-lang/nimble
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
%global _desc A simple way to launch, train, and use PyTorch models on almost any device and distributed configuration, automatic mixed precision (including fp8), and easy-to-configure FSDP and DeepSpeed support.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 1.13.0
|
||||
Version: 1.12.0
|
||||
Release: 1%?dist
|
||||
Summary: A simple way to launch, train, and use PyTorch models on almost any device and distributed configuration
|
||||
License: Apache-2.0
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
%global _desc Send usage data from your Python code to PostHog.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 7.9.7
|
||||
Release: 1%{?dist}
|
||||
Version: 7.9.6
|
||||
Release: 1%?dist
|
||||
Summary: Send usage data from your Python code to PostHog
|
||||
License: MIT
|
||||
URL: https://posthog.com/docs/libraries/python
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
%global __requires_exclude ^python3\\.14dist\\(proton-vpn-local-agent\\)$
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 4.15.2
|
||||
Release: 1%{?dist}
|
||||
Version: 4.14.3
|
||||
Release: 3%?dist
|
||||
Summary: A facade to the other Proton VPN components
|
||||
License: GPL-3.0-Only
|
||||
URL: https://github.com/ProtonVPN/python-proton-vpn-api-core
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit e108320b29046c7801de4df4168892b8099490bc
|
||||
%global commit_date 20260305
|
||||
%global commit 0e16ea31d2e188fdc126cb31e7c4fcc6b5a8da96
|
||||
%global commit_date 20260304
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global pypi_name types-colorama
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "rust-dysk.spec"
|
||||
}
|
||||
}
|
||||
@@ -1,58 +0,0 @@
|
||||
# Generated by rust2rpm 28
|
||||
%bcond check 1
|
||||
|
||||
%global crate dysk
|
||||
|
||||
Name: rust-dysk
|
||||
Version: 3.6.0
|
||||
Release: 1%?dist
|
||||
Summary: Give information on mounted filesystems
|
||||
|
||||
License: MIT
|
||||
URL: https://crates.io/crates/dysk
|
||||
Source: %{crates_source}
|
||||
Packager: madonuko <mado@fyralabs.com>
|
||||
|
||||
BuildRequires: cargo-rpm-macros >= 24
|
||||
|
||||
%global _description %{expand:
|
||||
Give information on mounted filesystems.}
|
||||
|
||||
%description %{_description}
|
||||
|
||||
%package -n %{crate}
|
||||
URL: https://dystroy.org/dysk
|
||||
Summary: %{summary}
|
||||
License: (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-2-Clause OR MIT OR Apache-2.0) AND MIT AND (MIT OR Apache-2.0) AND (Unlicense OR MIT)
|
||||
# LICENSE.dependencies contains a full license breakdown
|
||||
|
||||
%description -n %{crate} %{_description}
|
||||
|
||||
%files -n %{crate}
|
||||
%license LICENSE
|
||||
%license LICENSE.dependencies
|
||||
%doc CHANGELOG.md
|
||||
%doc CONTRIBUTING.md
|
||||
%doc README.md
|
||||
%{_bindir}/dysk
|
||||
|
||||
%prep
|
||||
%autosetup -n %{crate}-%{version} -p1
|
||||
%cargo_prep_online
|
||||
|
||||
%build
|
||||
%{cargo_license_summary_online}
|
||||
%{cargo_license_online} > LICENSE.dependencies
|
||||
%cargo_build
|
||||
|
||||
%install
|
||||
%cargo_install
|
||||
|
||||
%if %{with check}
|
||||
%check
|
||||
%cargo_test
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Thu Mar 05 2026 madonuko <mado@fyralabs.com> - 3.6.0-1
|
||||
- Initial package.
|
||||
@@ -1 +0,0 @@
|
||||
rpm.version(crates("dysk"));
|
||||
@@ -1,8 +1,8 @@
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: fresh
|
||||
Version: 0.2.14
|
||||
Release: 1%{?dist}
|
||||
Version: 0.2.12
|
||||
Release: 1%?dist
|
||||
Summary: Text editor for your terminal: easy, powerful and fast
|
||||
URL: https://getfresh.dev
|
||||
Source0: https://github.com/sinelaw/fresh/archive/refs/tags/v%version.tar.gz
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%define __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
%global crate zoi-rs
|
||||
%global crate_version 1.8.2
|
||||
%global crate_version 1.7.0
|
||||
|
||||
Name: rust-zoi-rs
|
||||
Version: %(echo %crate_version | sed 's/-/~/g')
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit e8c87743c4ee2b07ce6593d2f6c2deaf4533ee85
|
||||
%global commit 9633911d173cb875d1b81fd27262b360b38ac4dd
|
||||
%global shortcommit %{sub %{commit} 1 7}
|
||||
%global commit_date 20260305
|
||||
%global commit_date 20260302
|
||||
|
||||
Name: vgmstream
|
||||
Version: 0~%{commit_date}git.%shortcommit
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
Name: stardust-xr-telescope-nightly
|
||||
Version: 0~%{commit_date}git.%{shortcommit}
|
||||
Release: 3%?dist
|
||||
Release: 2%?dist
|
||||
Summary: See the stars! Easy stardust setups to run on your computer
|
||||
License: MIT
|
||||
URL: https://github.com/StardustXR/telescope
|
||||
@@ -19,7 +19,7 @@ Requires: stardust-xr-black-hole-nightly
|
||||
Requires: stardust-xr-comet-nightly
|
||||
Requires: stardust-xr-flatland-nightly
|
||||
Requires: stardust-xr-gravity-nightly
|
||||
Requires: stardust-xr-magnetar
|
||||
Requires: stardust-xr-magnetar-nightly
|
||||
Requires: stardust-xr-non-spatial-input-nightly
|
||||
Requires: stardust-xr-protostar-nightly
|
||||
Requires: stardust-xr-server-nightly
|
||||
|
||||
@@ -1,56 +0,0 @@
|
||||
%undefine __brp_add_determinism
|
||||
|
||||
Name: amdgpu_top
|
||||
Version: 0.11.2
|
||||
Release: 1%?dist
|
||||
Summary: Tool to display AMDGPU usage
|
||||
License: MIT
|
||||
Packager: veuxit <erroor234@gmail.com>
|
||||
URL: https://github.com/Umio-Yasuno/amdgpu_top
|
||||
|
||||
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
|
||||
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: libdrm-devel
|
||||
BuildRequires: cargo cargo-rpm-macros anda-srpm-macros
|
||||
|
||||
%description
|
||||
%summary.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{name}-%{version}
|
||||
%cargo_prep_online
|
||||
|
||||
%build
|
||||
%{cargo_build} --locked
|
||||
|
||||
%install
|
||||
|
||||
install -Dm755 target/release/amdgpu_top %{buildroot}%{_bindir}/amdgpu_top
|
||||
|
||||
install -Dm644 assets/amdgpu_top.desktop %{buildroot}%{_appsdir}/amdgpu_top.desktop
|
||||
|
||||
install -Dm644 assets/amdgpu_top-tui.desktop %{buildroot}%{_appsdir}/amdgpu_top-tui.desktop
|
||||
|
||||
install -Dpm644 assets/io.github.umio_yasuno.amdgpu_top.metainfo.xml %{buildroot}%{_metainfodir}/io.github.umio_yasuno.amdgpu_top.metainfo.xml
|
||||
|
||||
install -Dm644 "docs/amdgpu_top.1" "%{buildroot}%{_mandir}/man1/amdgpu_top.1"
|
||||
|
||||
%check
|
||||
%desktop_file_validate %{buildroot}%{_appsdir}/amdgpu_top.desktop
|
||||
%desktop_file_validate %{buildroot}%{_appsdir}/amdgpu_top-tui.desktop
|
||||
|
||||
%files
|
||||
%doc README.md
|
||||
%doc CHANGELOG.md
|
||||
%doc AUTHORS
|
||||
%license LICENSE
|
||||
%{_bindir}/amdgpu_top
|
||||
%{_datadir}/applications/amdgpu_top.desktop
|
||||
%{_datadir}/applications/amdgpu_top-tui.desktop
|
||||
%{_metainfodir}/io.github.umio_yasuno.amdgpu_top.metainfo.xml
|
||||
%{_mandir}/man1/amdgpu_top.1.gz
|
||||
|
||||
%changelog
|
||||
* Thu Mar 5 2026 veuxit <erroor234@gmail.com> - 0.11.2
|
||||
- Initial package release
|
||||
@@ -1,5 +0,0 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "amdgpu_top.spec"
|
||||
}
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
rpm.version(gh("Umio-Yasuno/amdgpu_top"));
|
||||
@@ -1,5 +1,4 @@
|
||||
project pkg {
|
||||
arches = ["x86_64"]
|
||||
rpm {
|
||||
spec = "depthcharge-tools.spec"
|
||||
}
|
||||
|
||||
@@ -1,13 +1,12 @@
|
||||
Name: depthcharge-tools
|
||||
Version: 0.6.3
|
||||
Release: 4%?dist
|
||||
Release: 1%?dist
|
||||
Summary: Tools to manage the Chrome OS bootloader
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://gitlab.postmarketos.org/postmarketOS/depthcharge-tools
|
||||
Source0: %url/-/archive/v%version/%name-v%version.tar.gz
|
||||
Requires: vboot-utils dtc gzip lz4 python3-setuptools uboot-tools vboot-utils xz python3-importlib-resources
|
||||
BuildRequires: python3-setuptools python3-rpm-macros pyproject-rpm-macros python3dist(pip) systemd-rpm-macros redhat-rpm-config python3-docutils python3-importlib-resources
|
||||
Patch0: fix-importlib.patch
|
||||
Requires: vboot-utils dtc gzip lz4 python3-setuptools uboot-tools vboot-utils xz
|
||||
BuildRequires: python3-setuptools python3-rpm-macros systemd-rpm-macros redhat-rpm-config python3-docutils
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
@@ -17,14 +16,13 @@ with depthcharge, the Chrome OS bootloader.
|
||||
%pkg_completion -Bz mkdepthcharge depthchargectl
|
||||
|
||||
%prep
|
||||
%autosetup -n %name-v%version -p1
|
||||
%autosetup -n %name-v%version
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
python3 setup.py build
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%pyproject_save_files depthcharge_tools
|
||||
python3 setup.py install --skip-build --root=%buildroot
|
||||
mkdir -p %buildroot/usr/lib/kernel/install.d %buildroot{%_unitdir,%bash_completions_dir,%zsh_completions_dir,%_mandir/man1}
|
||||
install -Dm644 systemd/*.install %buildroot/usr/lib/kernel/install.d/
|
||||
install -Dm644 systemd/*.service %buildroot%_unitdir/
|
||||
@@ -36,13 +34,15 @@ rst2man mkdepthcharge.rst | gzip > mkdepthcharge.1.gz
|
||||
rst2man depthchargectl.rst | gzip > depthchargectl.1.gz
|
||||
install -Dm644 *.1.gz %buildroot%_mandir/man1/
|
||||
|
||||
%files -f %{pyproject_files}
|
||||
%files
|
||||
%doc README.rst
|
||||
%license LICENSE
|
||||
%_bindir/{mkdepthcharge,depthchargectl}
|
||||
%_mandir/man1/{mkdepthcharge,depthchargectl}.1.gz
|
||||
/usr/lib/kernel/install.d/90-depthcharge-tools.install
|
||||
%_unitdir/depthchargectl-bless.service
|
||||
%_prefix/lib/python%python3_version/site-packages/depthcharge_tools-%version-py%python3_version.egg-info/
|
||||
%_prefix/lib/python%python3_version/site-packages/depthcharge_tools/
|
||||
|
||||
%changelog
|
||||
%autochangelog
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
diff --git a/depthcharge_tools/__init__.py b/depthcharge_tools/__init__.py
|
||||
index fabb79d..2b7d7d5 100644
|
||||
--- a/depthcharge_tools/__init__.py
|
||||
+++ b/depthcharge_tools/__init__.py
|
||||
@@ -9,6 +9,7 @@ import glob
|
||||
import logging
|
||||
import pathlib
|
||||
import importlib
|
||||
+import importlib.resources
|
||||
import importlib_metadata
|
||||
from packaging.version import parse as parse_version
|
||||
import re
|
||||
@@ -1,8 +1,8 @@
|
||||
%global _include_minidebuginfo 0
|
||||
|
||||
Name: falcond
|
||||
Version: 2.0.0
|
||||
Release: 1%{?dist}
|
||||
Version: 1.2.3
|
||||
Release: 3%{?dist}
|
||||
Summary: Advanced Linux Gaming Performance Daemon
|
||||
License: MIT
|
||||
URL: https://git.pika-os.com/general-packages/falcond
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global debug_package %{nil}
|
||||
%global commit 47c2959260a330f919981cb407659f0e2790dc8a
|
||||
%global commit 0e3f16a6b60674fd801076dfdd304e6f8800e9f5
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260305
|
||||
%global commit_date 20260216
|
||||
|
||||
|
||||
%global patches %{_datadir}/src/nvidia-patch
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit c292fe27357ac5bb3da7f7573ee4a2fd2daa53a4
|
||||
%global commit e4d9a5124f42a566ab6e6c5aae60dfbc6931e187
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260305
|
||||
%global commit_date 20260304
|
||||
%global ver 0.6.6.2
|
||||
|
||||
# We aren't using Mono but RPM expected Mono
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
%global commit d75e7da4a91e6ffca5add748a97099b6a1e31a04
|
||||
%global commit d4574ca3144b59893d06ed33bd4ceaa5107f0ec2
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260306
|
||||
%global commitdate 20260304
|
||||
%global ver 1.0.20
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: scx-scheds-nightly
|
||||
Version: %{ver}^%{commitdate}.git.%{shortcommit}
|
||||
Release: 1%{?dist}
|
||||
Release: 1%?dist
|
||||
Summary: Nightly builds of sched_ext schedulers and tools
|
||||
SourceLicense: GPL-2.0-only
|
||||
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 OR BSL-1.0) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND Apache-2.0 AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND BSD-2-Clause AND BSD-3-Clause AND GPL-2.0-only AND ISC AND (LGPL-2.1-only OR BSD-2-Clause) AND LGPL-2.1 AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Apache-2.0) AND (MIT OR Zlib OR Apache-2.0) AND MIT AND (MPL-2.0 OR MIT OR Apache-2.0) AND MPL-2.0-only and MPL-2.0-or-later AND (Unlicense OR MIT) AND Zlib
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit c21306e11f44670dbd2f8e0b2030468e736a051c
|
||||
%global commit 30b4540650f0283136c875efb4cd449686a87995
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260305
|
||||
%global commitdate 20260218
|
||||
%global ver 1.0.20
|
||||
%global appid com.sched_ext.scx
|
||||
%global developer "sched-ext Contributors"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: vicinae
|
||||
Version: 0.20.3
|
||||
Release: 1%{?dist}
|
||||
Version: 0.20.2
|
||||
Release: 1%?dist
|
||||
License: GPL-3.0
|
||||
URL: https://docs.vicinae.com
|
||||
Source: https://github.com/vicinaehq/%{name}/archive/refs/tags/v%{version}.tar.gz
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
%global _prefix /usr/share/wine-dev
|
||||
%global srcmajor 11.x
|
||||
# Make this as a variable instead in case of WINE RCs
|
||||
%global ver wine-11.4
|
||||
%global ver wine-11.3
|
||||
%global cleanver %(echo %{ver} | sed 's/v//g;s/wine-//g')
|
||||
|
||||
# This is unfortunate but a lot of Fedora's/SUSE's hardening flags break WINE
|
||||
@@ -19,7 +19,7 @@
|
||||
# Also less confusing because it has a devel package
|
||||
Name: wine-dev
|
||||
Version: %(echo %{cleanver} | sed 's/-/~/g')
|
||||
Release: 1%{?dist}
|
||||
Release: 1%?dist
|
||||
Epoch: 1
|
||||
Summary: WINE Is Not An Emulator - runs MS Windows programs
|
||||
License: LGPL-2.0-or-later
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
Version: GopenPGP 2.8.1
|
||||
Comment: https://gopenpgp.org
|
||||
|
||||
xjMEaYpzWxYJKwYBBAHaRw8BAQdA7UMAtNQ1lu/zeq7f6ak1ZRDb09GI5nKRTGPb
|
||||
z5/P9DLNKVRlcnJhIDQ0IC0gU291cmNlIDxzZWN1cml0eUBmeXJhbGFicy5jb20+
|
||||
wr8EExYIAHEFgmmKc1sDCwkHCZD5EsiV2QOikTUUAAAAAAAcABBzYWx0QG5vdGF0
|
||||
aW9ucy5vcGVucGdwanMub3JnKnNq119JCv79xo34cTtU+AIVCAMWAAICGQECmwMC
|
||||
HgEWIQSo/fET0Zg0/vaHhXf5EsiV2QOikQAAZvIBAOBgURJ0bpsl9UQt+oty/9g6
|
||||
QJwE7x2KvTfw9CIjzd2yAQCqE6mBtL4Wd0T8FFXzg2KYgMPvNlkof24kas5Y79ID
|
||||
DM44BGmKc1sSCisGAQQBl1UBBQEBB0C1EBr2yVcLBryHfBsJ8HffYUYmQxdOytvC
|
||||
4sEKnn+UcAMBCgnCrgQYFggAYAWCaYpzWwmQ+RLIldkDopE1FAAAAAAAHAAQc2Fs
|
||||
dEBub3RhdGlvbnMub3BlbnBncGpzLm9yZ7hCyKk6CNKWKKt60jpyuYACmwwWIQSo
|
||||
/fET0Zg0/vaHhXf5EsiV2QOikQAAKLABAJSkznaUgXt2HisPv9rJGBjobx3dx9Ns
|
||||
SZs4qLEwaBzAAQCGD5cZBVo4sVzskOhFAG3U2wMMGyTXP4+hvsFB09HNCg==
|
||||
=F2xn
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
||||
@@ -0,0 +1 @@
|
||||
F45
|
||||
@@ -5,6 +5,5 @@ project pkg {
|
||||
}
|
||||
labels {
|
||||
updbranch = 1
|
||||
keys = 1
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
let dir = sub(`/[^/]+$`, "", __script_path);
|
||||
sh(`tar -czf keys.tar.gz RPM-GPG-KEY-terra*`, #{ "cwd": dir });
|
||||
@@ -9,7 +9,48 @@ Requires: filesystem >= 3.18-6
|
||||
License: MIT
|
||||
URL: https://terra.fyralabs.com
|
||||
# We aren't pulling keys from the origin URLs, since they shouldn't change and this is easier to audit.
|
||||
Source0: keys.tar.gz
|
||||
Source0: RPM-GPG-KEY-terrarawhide
|
||||
Source1: RPM-GPG-KEY-terrarawhide-extras
|
||||
Source2: RPM-GPG-KEY-terrarawhide-extras-source
|
||||
Source3: RPM-GPG-KEY-terrarawhide-mesa
|
||||
Source4: RPM-GPG-KEY-terrarawhide-mesa-source
|
||||
Source5: RPM-GPG-KEY-terrarawhide-multimedia
|
||||
Source6: RPM-GPG-KEY-terrarawhide-multimedia-source
|
||||
Source7: RPM-GPG-KEY-terrarawhide-nvidia
|
||||
Source8: RPM-GPG-KEY-terrarawhide-nvidia-source
|
||||
Source9: RPM-GPG-KEY-terrarawhide-source
|
||||
Source10: RPM-GPG-KEY-terra42
|
||||
Source11: RPM-GPG-KEY-terra42-extras
|
||||
Source12: RPM-GPG-KEY-terra42-extras-source
|
||||
Source13: RPM-GPG-KEY-terra42-mesa
|
||||
Source14: RPM-GPG-KEY-terra42-mesa-source
|
||||
Source15: RPM-GPG-KEY-terra42-multimedia
|
||||
Source16: RPM-GPG-KEY-terra42-multimedia-source
|
||||
Source17: RPM-GPG-KEY-terra42-nvidia
|
||||
Source18: RPM-GPG-KEY-terra42-nvidia-source
|
||||
Source19: RPM-GPG-KEY-terra42-source
|
||||
Source20: RPM-GPG-KEY-terra43
|
||||
Source21: RPM-GPG-KEY-terra43-extras
|
||||
Source22: RPM-GPG-KEY-terra43-extras-source
|
||||
Source23: RPM-GPG-KEY-terra43-mesa
|
||||
Source24: RPM-GPG-KEY-terra43-mesa-source
|
||||
Source25: RPM-GPG-KEY-terra43-multimedia
|
||||
Source26: RPM-GPG-KEY-terra43-multimedia-source
|
||||
Source27: RPM-GPG-KEY-terra43-nvidia
|
||||
Source28: RPM-GPG-KEY-terra43-nvidia-source
|
||||
Source29: RPM-GPG-KEY-terra43-source
|
||||
Source30: RPM-GPG-KEY-terra44
|
||||
Source31: RPM-GPG-KEY-terra44-extras
|
||||
Source32: RPM-GPG-KEY-terra44-extras-source
|
||||
Source33: RPM-GPG-KEY-terra44-mesa
|
||||
Source34: RPM-GPG-KEY-terra44-mesa-source
|
||||
Source35: RPM-GPG-KEY-terra44-multimedia
|
||||
Source36: RPM-GPG-KEY-terra44-multimedia-source
|
||||
Source37: RPM-GPG-KEY-terra44-nvidia
|
||||
Source38: RPM-GPG-KEY-terra44-nvidia-source
|
||||
Source39: RPM-GPG-KEY-terra44-source
|
||||
Source40: RPM-GPG-KEY-terrael10
|
||||
Source41: RPM-GPG-KEY-terrael10-source
|
||||
BuildArch: noarch
|
||||
|
||||
Packager: Terra Packaging Team <terra@fyralabs.com>
|
||||
@@ -17,28 +58,14 @@ Packager: Terra Packaging Team <terra@fyralabs.com>
|
||||
%description
|
||||
GPG keys for Terra, used for verifying RPM package signatures.
|
||||
|
||||
%package -n terra-mock-gpg-keys
|
||||
Summary: Terra GPG keys for Mock
|
||||
|
||||
%description -n terra-mock-gpg-keys
|
||||
Terra GPG key copies for use in Mock.
|
||||
|
||||
%prep
|
||||
%autosetup -D -n .
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
install -d -m 755 $RPM_BUILD_ROOT/etc/pki/rpm-gpg
|
||||
install -m 644 ./RPM-GPG-KEY* $RPM_BUILD_ROOT/etc/pki/rpm-gpg/
|
||||
|
||||
install -d -m 755 $RPM_BUILD_ROOT/etc/pki/mock
|
||||
install -m 644 %{_sourcedir}/RPM-GPG-KEY* $RPM_BUILD_ROOT/etc/pki/mock/
|
||||
install -m 644 %{_sourcedir}/RPM-GPG-KEY* $RPM_BUILD_ROOT/etc/pki/rpm-gpg/
|
||||
|
||||
%files
|
||||
%dir /etc/pki/rpm-gpg
|
||||
/etc/pki/rpm-gpg/RPM-GPG-KEY-*
|
||||
|
||||
%files -n terra-mock-gpg-keys
|
||||
%dir /etc/pki/mock
|
||||
/etc/pki/mock/RPM-GPG-KEY-*
|
||||
|
||||
@@ -1,25 +0,0 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
for branch in $(sed -n 's/- \(f.*\)/\1/p;s/- \(el.*\)/\1/p' .github/workflows/update-branch.yml | tr -d ' '); do
|
||||
|
||||
if [[ $branch == f* ]]; then
|
||||
export releasever=${branch/f/}
|
||||
else
|
||||
export releasever=$branch
|
||||
fi
|
||||
|
||||
# Begin check hell to not strain our servers or waste CI time if a key already exists
|
||||
[ ! -f anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever ] && curl -s https://repos.fyralabs.com/terra$releasever/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever
|
||||
[ ! -f anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-source ] && curl -s https://repos.fyralabs.com/terra$releasever-source/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-source
|
||||
if [[ $releasever != el* ]]; then
|
||||
[ ! -f anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-extras ] && curl -s https://repos.fyralabs.com/terra$releasever-extras/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-extras
|
||||
[ ! -f anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-extras-source ] && curl -s https://repos.fyralabs.com/terra$releasever-extras-source/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-extras-source
|
||||
[ ! -f anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-mesa ] && curl -s https://repos.fyralabs.com/terra$releasever-mesa/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-mesa
|
||||
[ ! -f anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-mesa-source ] && curl -s https://repos.fyralabs.com/terra$releasever-mesa-source/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-mesa-source
|
||||
[ ! -f anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-multimedia ] && curl -s https://repos.fyralabs.com/terra$releasever-multimedia/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-multimedia
|
||||
[ ! -f anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-multimedia-source ] && curl -s https://repos.fyralabs.com/terra$releasever-multimedia-source/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-multimedia-source
|
||||
[ ! -f anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-nvidia ] && curl -s https://repos.fyralabs.com/terra$releasever-nvidia/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-nvidia
|
||||
[ ! -f anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-nvidia-source ] && curl -s https://repos.fyralabs.com/terra$releasever-nvidia-source/key.asc > anda/terra/gpg-keys/RPM-GPG-KEY-terra$releasever-nvidia-source
|
||||
fi
|
||||
|
||||
done
|
||||
@@ -1,21 +1,8 @@
|
||||
import "andax/bump_extras.rhai" as bump;
|
||||
import "andax/spec.rhai" as spec;
|
||||
|
||||
let branch = bump::as_bodhi_ver(labels.branch);
|
||||
open_file("anda/terra/gpg-keys/RELEASE.txt", "w").write(bump::as_bodhi_ver(labels.branch));
|
||||
|
||||
if branch.starts_with("F") {
|
||||
branch.crop(1);
|
||||
let releasever = branch;
|
||||
} else if branch.starts_with("EPEL") {
|
||||
let releasever = labels.branch;
|
||||
releasever.crop(2);
|
||||
}
|
||||
|
||||
rpm.version(releasever);
|
||||
|
||||
sh(`anda/terra/gpg-keys/update-gpg-keys.sh`, #{});
|
||||
let dir = sub(`/[^/]+$`, "", __script_path);
|
||||
if sh("[[ `git status " + dir + " --porcelain` ]] && exit 1 || exit 0", #{}).ctx.rc == 1 {
|
||||
let rel = spec::get_release(rpm).parse_int();
|
||||
rpm.release(rel + 1);
|
||||
rpm.release();
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: terra-mock-configs
|
||||
Version: 2.2.4
|
||||
Release: 3%?dist
|
||||
Release: 2%?dist
|
||||
Epoch: 1
|
||||
Summary: Mock configs for Terra repos
|
||||
|
||||
@@ -10,7 +10,6 @@ Source0: %url/archive/refs/tags/v%version.tar.gz
|
||||
|
||||
BuildRequires: mock-core-configs
|
||||
Requires: mock-core-configs
|
||||
Requires: terra-mock-gpg-keys
|
||||
BuildArch: noarch
|
||||
|
||||
Provides: anda-mock-configs = %{epoch}:%{version}-%{release}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: anda-srpm-macros
|
||||
Version: 0.3.4
|
||||
Release: 1%?dist
|
||||
Version: 0.3.3
|
||||
Release: 3%?dist
|
||||
Summary: SRPM macros for extra Fedora packages
|
||||
|
||||
License: MIT
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global pypi_name app-bricks-py
|
||||
%global _desc The code of the Arduino App Lab Bricks
|
||||
|
||||
%global ver release/0.8.0rc3
|
||||
%global ver release/0.8.0rc1
|
||||
%global sanitized_ver %(echo %{ver} | sed 's|release/||')
|
||||
|
||||
Name: %{pypi_name}
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
%global crate anda
|
||||
|
||||
Name: rust-anda
|
||||
Version: 0.5.1
|
||||
Release: 1%{?dist}
|
||||
Version: 0.4.15
|
||||
Release: 1%?dist
|
||||
Summary: Andaman Build toolchain
|
||||
|
||||
License: MIT
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: gradle
|
||||
Version: 9.4.0
|
||||
Version: 9.3.1
|
||||
Release: 1%?dist
|
||||
Summary: Powerful build system for the JVM
|
||||
URL: https://gradle.org/
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global crate mise
|
||||
|
||||
Name: rust-mise
|
||||
Version: 2026.3.3
|
||||
Version: 2026.3.1
|
||||
Release: 1%?dist
|
||||
Summary: Front-end to your dev env
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Name: electron
|
||||
%electronmeta
|
||||
Version: 40.8.0
|
||||
Release: 1%{?dist}
|
||||
Version: 40.7.0
|
||||
Release: 1%?dist
|
||||
Summary: Build cross platform desktop apps with web technologies
|
||||
License: %{electron_license}
|
||||
URL: https://electronjs.org/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
%global __brp_mangle_shebangs %{nil}
|
||||
|
||||
Name: jujutsu
|
||||
Version: 0.39.0
|
||||
Version: 0.38.0
|
||||
Release: 1%?dist
|
||||
Summary: Git-compatible DVCS that is both simple and powerful
|
||||
License: Apache-2.0 AND CC-BY-4.0
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
Name: micro-default-editor
|
||||
# Version, release, and epoch are inherited from the editor package just like other default editors
|
||||
Version: 2.0.15
|
||||
Release: 2%{?dist}
|
||||
Release: 2%?dist
|
||||
Epoch: 0
|
||||
# Inherited from Micro itself
|
||||
License: MIT and ASL 2.0
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 216e2d3045e9343e894e6445c5ae122aa7752584
|
||||
%global commit_date 20260305
|
||||
%global commit 60ea0df9b7a43b4198c0def6355b600eb2cfbfb1
|
||||
%global commit_date 20260303
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
Name: rpi-utils
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: rust-tauri
|
||||
Version: 2.10.1
|
||||
Version: 2.10.0
|
||||
Release: 1%?dist
|
||||
Summary: Command line interface for building Tauri apps
|
||||
License: Apache-2.0 OR MIT
|
||||
|
||||
Reference in New Issue
Block a user