mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 09:01:55 +00:00
Compare commits
112 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4072a0b354 | |||
| e11fe91599 | |||
| cde62e8323 | |||
| 56c9a8cb67 | |||
| ee60625070 | |||
| b7b5465aff | |||
| f143b6de46 | |||
| 9809bf9a59 | |||
| a0aa6c4622 | |||
| 2a7d7cd0a8 | |||
| 515d85ea51 | |||
| cf90410bd6 | |||
| 884f3bc679 | |||
| 232b7f0fa2 | |||
| 7bbdfba92d | |||
| 5526dfcd05 | |||
| 6c478f4695 | |||
| 8b03245c06 | |||
| ec150c41bc | |||
| c51abec299 | |||
| c05b0f1a25 | |||
| abd68b0744 | |||
| 0c3acda6a6 | |||
| f7100b3a58 | |||
| 24839c0b86 | |||
| ea61564665 | |||
| f44deba64d | |||
| cdedcfc6e7 | |||
| 220323073d | |||
| c1c363664c | |||
| a53e39aa34 | |||
| 92c7401d00 | |||
| 88777ab00f | |||
| bce067781a | |||
| 3b0ec25d4e | |||
| 6f9932efae | |||
| 1dbc42c439 | |||
| 032e00910b | |||
| b5cce6c4fb | |||
| 12e456a8fc | |||
| 7c49009608 | |||
| 8d416ef2ae | |||
| 28a2861b2e | |||
| 7c34a592ea | |||
| 1101f6d8e1 | |||
| b1ebcb235a | |||
| 368a8bccba | |||
| d23eef0415 | |||
| 09863884d2 | |||
| d626d52c04 | |||
| fc890a1d4e | |||
| 824c5b4163 | |||
| 7befdfbed5 | |||
| d4b207bcb4 | |||
| ead2a44272 | |||
| e3f6c6046b | |||
| fec03edf64 | |||
| 123422de5e | |||
| 202275f5da | |||
| c85f2dc191 | |||
| d2f78796ad | |||
| 880cbbff4b | |||
| cf2a77ea81 | |||
| ff21fedef3 | |||
| bdfed6ea1e | |||
| db7a30fb27 | |||
| 106b16b4c9 | |||
| 8494bd1895 | |||
| 351da50c13 | |||
| 42f65b62c4 | |||
| 3e1ba1583f | |||
| ddcfd8f80a | |||
| f21923c0ae | |||
| 6cb7573133 | |||
| 8a0418ff85 | |||
| f5649dbb48 | |||
| 093348fb46 | |||
| e3daed3ff3 | |||
| 372b3fffb9 | |||
| 6ec988e354 | |||
| 7cdda0f407 | |||
| 5ac85a6d47 | |||
| 8aad8b4e99 | |||
| 39f71a66dc | |||
| 7f2484f61e | |||
| 71328cd792 | |||
| 03fd6848fd | |||
| 816fb02cf4 | |||
| 40110d6538 | |||
| f494edb214 | |||
| fdb9856dd3 | |||
| 00042e364d | |||
| 7674c5678e | |||
| 5696fb7cd3 | |||
| cafd33b6f1 | |||
| 77324c22b5 | |||
| 62c4582142 | |||
| 89641aae94 | |||
| b400e04c4d | |||
| a3dc275c73 | |||
| ae32c150c6 | |||
| 4d00a6f569 | |||
| 1446824586 | |||
| 09cd0258c9 | |||
| 1600d17f7a | |||
| 0b68c9c271 | |||
| 98881b9b82 | |||
| 02fed20eb5 | |||
| d51c34fd27 | |||
| 2fce0f882a | |||
| f54c6ea682 | |||
| e120623e07 |
@@ -78,10 +78,8 @@ jobs:
|
||||
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
|
||||
appstreamcli validate output/test.xml.gz >> $GITHUB_STEP_SUMMARY || true
|
||||
echo "" >> $GITHUB_STEP_SUMMARY
|
||||
echo '```' >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Export logs
|
||||
@@ -117,7 +115,7 @@ jobs:
|
||||
echo "#### \`$file\`" >> $GITHUB_STEP_SUMMARY
|
||||
echo "" >> $GITHUB_STEP_SUMMARY
|
||||
echo '```xml' >> $GITHUB_STEP_SUMMARY
|
||||
zcat "$file" >> $GITHUB_STEP_SUMMARY
|
||||
zcat "$file" >> $GITHUB_STEP_SUMMARY || true
|
||||
echo '```' >> $GITHUB_STEP_SUMMARY
|
||||
echo "" >> $GITHUB_STEP_SUMMARY
|
||||
done
|
||||
|
||||
@@ -45,7 +45,7 @@ jobs:
|
||||
pkg: ${{ fromJson(inputs.packages) }}
|
||||
version: ["rawhide"]
|
||||
fail-fast: false
|
||||
runs-on: ${{ inputs.custom_builder && inputs.custom_builder || (matrix.pkg.arch == 'aarch64' && matrix.pkg.labels['large']) && 'arm64-lg' || matrix.pkg.arch == 'aarch64' && 'ubuntu-22.04-arm' || matrix.pkg.labels['large'] && format('cirun-x86-64-lg--{0}', github.run_id) || 'ubuntu-22.04' }}
|
||||
runs-on: ${{ inputs.custom_builder && inputs.custom_builder || (matrix.pkg.arch == 'aarch64' && matrix.pkg.labels['large']) && 'cirun-arm64-lg' || matrix.pkg.arch == 'aarch64' && 'ubuntu-22.04-arm' || matrix.pkg.labels['large'] && format('cirun-x86-64-lg--{0}', github.run_id) || 'ubuntu-22.04' }}
|
||||
container:
|
||||
image: ghcr.io/terrapkg/builder:f${{ matrix.version }}
|
||||
options: --cap-add=SYS_ADMIN --privileged
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
Terra is a rolling-release Fedora repository for all the software you need.
|
||||
With Terra, you can install the latest packages knowing that quality and security are assured.
|
||||
|
||||
See the introduction at [our website](https://terra.fyralabs.com).
|
||||
See the introduction at [our website](https://terrapkg.com).
|
||||
|
||||
This monorepo contains the package manifests for all packages in Terra.
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-canary-openasar
|
||||
Version: 0.0.954
|
||||
Version: 0.0.961
|
||||
Release: 1%{?dist}
|
||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||
License: MIT AND https://discord.com/terms
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-canary
|
||||
Version: 0.0.954
|
||||
Version: 0.0.961
|
||||
Release: 1%{?dist}
|
||||
Summary: Free Voice and Text Chat for Gamers
|
||||
URL: discord.com
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-openasar
|
||||
Version: 0.0.132
|
||||
Version: 0.0.133
|
||||
Release: 1%{?dist}
|
||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||
License: MIT AND https://discord.com/terms
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord
|
||||
Version: 0.0.132
|
||||
Version: 0.0.133
|
||||
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 d888a3f16c26eeb9e355b0a8a29cec2da7697cb2
|
||||
%global commit 55c04e8b033a0e855571d171b4314eab560d722d
|
||||
%global shortcommit %{sub %{commit} 1 7}
|
||||
%global commit_date 20260409
|
||||
%global commit_date 20260414
|
||||
%global devel_name QtColorWidgets
|
||||
%global _distro_extra_cflags -fuse-ld=mold
|
||||
%global _distro_extra_cxxflags -fuse-ld=mold
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
%endif
|
||||
|
||||
Name: helium-browser-bin
|
||||
Version: 0.10.9.1
|
||||
Version: 0.11.2.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Private, fast, and honest web browser based on Chromium
|
||||
|
||||
|
||||
@@ -3,10 +3,9 @@
|
||||
%global gtk4_version 4.14.4
|
||||
%global libadwaita_version 1.5.1
|
||||
%global pure_protobuf_version 2.0.0
|
||||
%global raw_ver v50.1.0
|
||||
|
||||
Name: komikku
|
||||
Version: 50.1.0
|
||||
Version: 50.2.0
|
||||
%forgemeta
|
||||
Release: 1%{?dist}
|
||||
Summary: A manga reader for GNOME
|
||||
@@ -15,7 +14,7 @@ BuildArch: noarch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
URL: https://apps.gnome.org/Komikku/
|
||||
Source0: https://codeberg.org/valos/%{appname}/archive/%{raw_ver}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
Source0: https://codeberg.org/valos/%{appname}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: intltool
|
||||
|
||||
@@ -1,4 +1 @@
|
||||
let latest_tag = get("https://codeberg.org/api/v1/repos/valos/Komikku/tags").json_arr()[0].name;
|
||||
let new_version = find("([\\.\\d]+)", latest_tag, 1);
|
||||
rpm.global("raw_ver", latest_tag);
|
||||
rpm.version(new_version);
|
||||
rpm.version(codeberg("valos/Komikku"));
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit c4920f05272e7c7b52794eca4e8cf808b49dabea
|
||||
%global commit_date 20260405
|
||||
%global commit bebb6ddd2e5f3fe13f3e8bce08cebe6320ccd719
|
||||
%global commit_date 20260415
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global debug_package %nil
|
||||
%global __strip /bin/true
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
%endif
|
||||
|
||||
Name: legcord
|
||||
Version: 1.2.2
|
||||
Release: 1%?dist
|
||||
Version: 1.2.4
|
||||
Release: 1%{?dist}
|
||||
License: OSL-3.0
|
||||
Summary: Custom lightweight Discord client designed to enhance your experience
|
||||
URL: https://github.com/Legcord/Legcord
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Disable X11 for RHEL 10+
|
||||
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
|
||||
|
||||
%global commit 75939c21167bc2a203c9dc1c8f4b6fb9305a7530
|
||||
%global commit da4789c2ddce92713347ecf1b5912fceb812ea39
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260410
|
||||
%global commit_date 20260413
|
||||
%global ver 0.41.0
|
||||
|
||||
Name: mpv-nightly
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
%global metainfo_commit eddfed5f7e2cd6f097cd11ad1bc8773c22a418a1
|
||||
%global metainfo_commit 6ac72069fc35f3c2ec669498680037f54cc0c120
|
||||
|
||||
Name: proton-vpn-gtk-app
|
||||
Version: 4.15.2
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
%global ver 2026-04-11
|
||||
%global ver 2026-04-15
|
||||
%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.6.0
|
||||
Version: 8.7.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A private messenger for Windows, macOS, and Linux
|
||||
URL: https://signal.org
|
||||
|
||||
@@ -1 +1 @@
|
||||
v1.13.73
|
||||
v1.13.83
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: ttop
|
||||
Version: 1.5.7
|
||||
Release: 1%?dist
|
||||
Version: 1.6.1
|
||||
Release: 1%{?dist}
|
||||
Summary: System monitoring tool with historical data service, triggers and top-like TUI
|
||||
License: MIT
|
||||
URL: https://github.com/inv2004/ttop
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
Name: twintaillauncher
|
||||
|
||||
Version: 2.0.0
|
||||
Release: 2%{?dist}
|
||||
Release: 3%{?dist}
|
||||
Summary: A multi-platform launcher for your anime games
|
||||
Packager: Yoong Jin <solomoncyj@gmail.com>
|
||||
|
||||
@@ -63,7 +63,7 @@ TTL is an all-in-one tool for downloading, managing, and launching your favorite
|
||||
mkdir -p %{buildroot}/usr/lib/twintaillauncher/resources
|
||||
|
||||
#app expects files to be present there
|
||||
mv %{buildroot}/%{_datadir}/cargo/registry/twintaillauncher-%{version}/resources %{buildroot}/usr/lib/twintaillauncher/resources
|
||||
mv %{buildroot}/%{_datadir}/cargo/registry/twintaillauncher-%{version}/resources %{buildroot}/usr/lib/twintaillauncher
|
||||
rm -rf %{buildroot}/%{_datadir}/cargo/registry/twintaillauncher-%{version}
|
||||
|
||||
|
||||
@@ -75,6 +75,7 @@ rm -rf %{buildroot}/%{_datadir}/cargo/registry/twintaillauncher-%{version}
|
||||
install -Dm644 public/launcher-icon.png %{buildroot}%{_hicolordir}/512x512/apps/%{name}.png
|
||||
install -Dm644 public/launcher-icon-128.png %{buildroot}%{_hicolordir}/128x128/apps/%{name}.png
|
||||
|
||||
chmod 0755 %{buildroot}/usr/lib/twintaillauncher/resources -R
|
||||
|
||||
|
||||
%files
|
||||
@@ -91,7 +92,11 @@ install -Dm644 public/launcher-icon-128.png %{buildroot}%{_hicolordir}/128x128/a
|
||||
|
||||
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Apr 15 2026 Yoong Jin <solomoncyj@gmail.com> - 2.0.0-3
|
||||
- Fix folders
|
||||
- filx perms
|
||||
* Sat Apr 4 2026 Yoong Jin <solomoncyj@gmail.com> - 2.0.0-2
|
||||
- Fix folders
|
||||
- Update License
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Fedora sometimes sources the snapshots under stable versions and just bumps release
|
||||
# For user clarity I have separated these into different packages
|
||||
%global commit 205d3c652e1de440de8ccb39ce99fe877109a0bb
|
||||
%global commit 14b802e419aff260b9d630e71027d88855e224e7
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 20260125
|
||||
%global commit_date 20260402
|
||||
%global commit_date 20260411
|
||||
|
||||
Name: winetricks-git
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
%global tag 3.1.0
|
||||
%global tag 3.2.0
|
||||
%global forgeurl https://github.com/project-repo/cagebreak
|
||||
%forgemeta
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
Name: noctalia-qs
|
||||
Version: 0.0.12
|
||||
Release: 1%{?dist}
|
||||
Release: 2%{?dist}
|
||||
Summary: Flexible QtQuick based desktop shell toolkit
|
||||
License: LGPL-3.0-only AND GPL-3.0-only
|
||||
URL: https://github.com/noctalia-dev/noctalia-qs
|
||||
@@ -81,4 +81,4 @@ Flexible QtQuick based desktop shell toolkit.
|
||||
- Also fix that noctalia-qs is replacing quickshell overall and not just for noctlaia users
|
||||
|
||||
* Fri Feb 27 2026 Willow C Reed <terra@willowidk.dev>
|
||||
- Initial commit based on quickshell spec
|
||||
- Initial commit based on quickshell spec
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global debug_package %{nil}
|
||||
|
||||
Name: noctalia-shell
|
||||
Version: 4.7.5
|
||||
Version: 4.7.6
|
||||
Release: 1%{?dist}
|
||||
Summary: A Quickshell-based custom shell setup
|
||||
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
# sway does not set DISPLAY/WAYLAND_DISPLAY in the systemd user environment
|
||||
# See FS#63021
|
||||
# Adapted from xorg's 50-systemd-user.sh, which achieves a similar goal.
|
||||
|
||||
# Upstream refuses to set XDG_CURRENT_DESKTOP so we have to.
|
||||
exec systemctl --user set-environment XDG_CURRENT_DESKTOP=scroll
|
||||
exec systemctl --user import-environment DISPLAY \
|
||||
SCROLLSOCK \
|
||||
WAYLAND_DISPLAY \
|
||||
XDG_CURRENT_DESKTOP
|
||||
|
||||
exec hash dbus-update-activation-environment 2>/dev/null && \
|
||||
dbus-update-activation-environment --systemd DISPLAY \
|
||||
SCROLLSOCK \
|
||||
XDG_CURRENT_DESKTOP=scroll \
|
||||
WAYLAND_DISPLAY
|
||||
@@ -0,0 +1,5 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "scroll.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
[preferred]
|
||||
default=gtk
|
||||
org.freedesktop.impl.portal.ScreenCast=wlr
|
||||
org.freedesktop.impl.portal.Screenshot=wlr
|
||||
org.freedesktop.impl.portal.Inhibit=none
|
||||
@@ -0,0 +1,93 @@
|
||||
Name: scroll
|
||||
Version: 1.12.8
|
||||
Release: 1%{?dist}
|
||||
Summary: i3-compatible Wayland compositor (sway) with a PaperWM layout like niri or hyprscroller
|
||||
License: MIT
|
||||
URL: https://github.com/dawsers/scroll
|
||||
Source0: %{url}/archive/refs/tags/%{version}.tar.gz
|
||||
# https://aur.archlinux.org/cgit/aur.git/tree/?h=sway-scroll
|
||||
Source1: 50-systemd-user.conf
|
||||
Source2: scroll-portals.conf
|
||||
|
||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
BuildRequires: meson
|
||||
BuildRequires: cmake
|
||||
BuildRequires: ninja-build
|
||||
BuildRequires: gcc
|
||||
BuildRequires: pkgconfig(libdrm)
|
||||
BuildRequires: pkgconfig(wayland-protocols)
|
||||
BuildRequires: pkgconfig(wayland-server)
|
||||
BuildRequires: pkgconfig(gbm)
|
||||
BuildRequires: pkgconfig(glslang)
|
||||
BuildRequires: pkgconfig(libseat)
|
||||
BuildRequires: pkgconfig(hwdata)
|
||||
BuildRequires: pkgconfig(libdisplay-info)
|
||||
BuildRequires: pkgconfig(libliftoff)
|
||||
BuildRequires: pkgconfig(xcb-renderutil)
|
||||
BuildRequires: pkgconfig(xwayland)
|
||||
BuildRequires: pkgconfig(xcb-ewmh)
|
||||
BuildRequires: pkgconfig(xcb-errors)
|
||||
BuildRequires: pkgconfig(json-c)
|
||||
BuildRequires: pkgconfig(lua)
|
||||
BuildRequires: pkgconfig(scdoc)
|
||||
BuildRequires: pkgconfig(vulkan)
|
||||
BuildRequires: pkgconfig(libinput)
|
||||
BuildRequires: pkgconfig(libevdev)
|
||||
BuildRequires: pkgconfig(xkbcommon)
|
||||
BuildRequires: pkgconfig(pixman-1)
|
||||
BuildRequires: pkgconfig(egl)
|
||||
BuildRequires: pkgconfig(lcms2)
|
||||
BuildRequires: pkgconfig(libpcre2-8)
|
||||
BuildRequires: pkgconfig(cairo)
|
||||
BuildRequires: pkgconfig(pango)
|
||||
BuildRequires: pkgconfig(gdk-pixbuf-2.0)
|
||||
|
||||
Provides: sway-scroll
|
||||
|
||||
%description
|
||||
%{summary}.
|
||||
|
||||
%prep
|
||||
%autosetup
|
||||
|
||||
%pkg_completion -B scroll scrollbar scrollmsg
|
||||
%pkg_completion -f scroll scrollmsg scrollnag
|
||||
%pkg_completion -z scroll scrollmsg
|
||||
|
||||
%build
|
||||
%meson -D sd-bus-provider=libsystemd
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
install -Dm644 %{S:1} %{buildroot}%{_sysconfdir}/scroll/config.d/50-systemd-user.conf
|
||||
install -Dm644 %{S:2} %{buildroot}%{_datadir}/xdg-desktop-portal/scroll-portals.conf
|
||||
|
||||
%files
|
||||
%doc README.md CONTRIBUTING.md
|
||||
%license LICENSE
|
||||
%{_bindir}/scroll
|
||||
%{_bindir}/scrollbar
|
||||
%{_bindir}/scrollmsg
|
||||
%{_bindir}/scrollnag
|
||||
%{_sysconfdir}/scroll/config
|
||||
%{_sysconfdir}/scroll/config.d/50-systemd-user.conf
|
||||
%{_datadir}/backgrounds/scroll/*png
|
||||
%{_datadir}/xdg-desktop-portal/scroll-portals.conf
|
||||
%{_iconsdir}/scroll.png
|
||||
%{_mandir}/man1/scroll.1.*
|
||||
%{_mandir}/man1/scrollmsg.1.*
|
||||
%{_mandir}/man1/scrollnag.1.*
|
||||
%{_mandir}/man5/scroll-bar.5.*
|
||||
%{_mandir}/man5/scroll-input.5.*
|
||||
%{_mandir}/man5/scroll-output.5.*
|
||||
%{_mandir}/man5/scroll.5.*
|
||||
%{_mandir}/man5/scrollnag.5.*
|
||||
%{_mandir}/man7/scroll-ipc.7.*
|
||||
%{_mandir}/man7/scrollbar-protocol.7.*
|
||||
%{_datadir}/wayland-sessions/scroll.desktop
|
||||
|
||||
%changelog
|
||||
* Sun Apr 12 2026 Owen Zimmerman <owen@fyralabs.com> - 1.12.8-1
|
||||
- Initial commit
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(gh("dawsers/scroll"));
|
||||
@@ -1 +1,3 @@
|
||||
rpm.version(gh("willPower3309/swayfx"));
|
||||
rpm.version(gh("willPower3309/swayfx"));
|
||||
|
||||
rpm.global("swayVersion", gh("swaywm/sway"));
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
%global __requires_exclude ^libaaudio\\.so.*|^libandroid\\.so.*|^libmediandk\\.so.*|^liblog\\.so.*|^libc\\.so.*|^libm\\.so.*|^libdl\\.so.*|^libcrypt\\.so.*|^libstdc\\+\\+\\.so.*|^libncursesw\\.so.*|^libtinfo\\.so.*|^libnsl\\.so.*|^libpanelw\\.so.*$
|
||||
|
||||
Name: android-studio
|
||||
Version: 2025.3.3.6
|
||||
Version: 2025.3.3.7
|
||||
Release: 1%{?dist}
|
||||
Summary: Official IDE for Android development
|
||||
License: Apache-2.0
|
||||
@@ -24,7 +24,7 @@ Packager: veuxit <erroor234@gmail.com>, like-engels <higashikataengels@icl
|
||||
ExclusiveArch: x86_64
|
||||
URL: https://developer.android.com/studio
|
||||
|
||||
%define suffixS panda3
|
||||
%define suffixS panda3-patch1
|
||||
|
||||
Source0: https://dl.google.com/dl/android/studio/ide-zips/%{version}/android-studio-%{suffixS}-linux.tar.gz
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 1a5bfbd87c3af0b8e27cef67511cb32141832866
|
||||
%global commit 49a43bf560322eac0ba5d30c20a8b212106e3883
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global fulldate 2026-04-09
|
||||
%global fulldate 2026-04-14
|
||||
%global commit_date %(echo %{fulldate} | sed 's/-//g')
|
||||
%global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
|
||||
%global ver 1.3.2
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global crate lowfi
|
||||
|
||||
Name: rust-lowfi
|
||||
Version: 2.0.5
|
||||
Version: 2.0.6
|
||||
Release: 1%{?dist}
|
||||
Summary: Extremely simple lofi player
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global raw_forgeurl https://raw.githubusercontent.com/%{crate}/%{crate}
|
||||
|
||||
Name: rust-neovide
|
||||
Version: 0.16.1
|
||||
Version: 0.16.2
|
||||
Release: 1%{?dist}
|
||||
Summary: No Nonsense Neovim Client in Rust
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ A hardware-accelerated terminal emulator focusing to run in desktops and browser
|
||||
%bcond docs 1
|
||||
|
||||
Name: rio
|
||||
Version: 0.3.1
|
||||
Version: 0.3.10
|
||||
Release: 1%{?dist}
|
||||
Summary: A hardware-accelerated terminal written in Rust.
|
||||
SourceLicense: MIT
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 377e78b8bf90a64ad868e73684d9a3b50cb1e16c
|
||||
%global commit e8f097f8ee90bb44640c9c1bdd3c1711cf19efa7
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260410
|
||||
%global commit_date 20260415
|
||||
%global ver 0.233.0
|
||||
|
||||
%bcond_with check
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global debug_package %{nil}
|
||||
%endif
|
||||
|
||||
%global ver 0.231.2
|
||||
%global ver 0.233.0-pre
|
||||
# Exclude input files from mangling
|
||||
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
%global rustflags_debuginfo 0
|
||||
|
||||
Name: zed
|
||||
Version: 0.231.2
|
||||
Version: 0.232.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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: juliamono-fonts
|
||||
Version: 0.062
|
||||
Release: 1%?dist
|
||||
Release: 2%?dist
|
||||
URL: https://juliamono.netlify.app/
|
||||
Source0: https://github.com/cormullion/juliamono/archive/refs/tags/v%{version}.tar.gz
|
||||
License: OFL-1.1
|
||||
@@ -8,7 +8,7 @@ Summary: A monospaced font with reasonable unicode support
|
||||
Requires: xorg-x11-font-utils
|
||||
BuildArch: noarch
|
||||
Provides: JuliaMono-fonts
|
||||
Packager: Its-J
|
||||
Packager: Its-J <jonah@fyralabs.com>
|
||||
|
||||
|
||||
%description
|
||||
@@ -29,5 +29,8 @@ install -Dm644 *.ttf %{buildroot}%{_fontbasedir}/juliamono/
|
||||
%{_fontbasedir}/juliamono/*.ttf
|
||||
|
||||
%changelog
|
||||
* Fri Nov 21 2025 Its-J
|
||||
- Package JuliaMono
|
||||
* Tue Apr 14 2026 Its-J <jonah@fyralabs.com>
|
||||
- Add email to my previous contributor attributions
|
||||
|
||||
* Fri Nov 21 2025 Its-J <jonah@fyralabs.com>
|
||||
- Package JuliaMono
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 72df08d154fefb6354f6bb1a8d8cf587e86ee227
|
||||
%global commit 88087a086ab732211c466b41f5d64229ce51c050
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260327
|
||||
%global commit_date 20260411
|
||||
|
||||
Name: gamescope-session-opengamepadui
|
||||
Version: 0~%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global __brp_mangle_shebangs %{nil}
|
||||
|
||||
Name: inputplumber
|
||||
Version: 0.76.0
|
||||
Version: 0.76.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Open source input router and remapper daemon for Linux
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
@@ -1,79 +0,0 @@
|
||||
From 5a38fc2c9a329e88c8337af541dfeccaeff1fefb Mon Sep 17 00:00:00 2001
|
||||
From: seth <getchoo@tuta.io>
|
||||
Date: Sun, 15 Jan 2023 14:47:49 -0500
|
||||
Subject: [PATCH] find cmark with pkgconfig
|
||||
|
||||
Signed-off-by: seth <getchoo@tuta.io>
|
||||
---
|
||||
cmake/Findcmark.cmake | 59 +++++++++++++++++++++++++++++++++++++++++++
|
||||
1 file changed, 59 insertions(+)
|
||||
create mode 100755 cmake/Findcmark.cmake
|
||||
|
||||
diff --git a/cmake/Findcmark.cmake b/cmake/Findcmark.cmake
|
||||
new file mode 100755
|
||||
index 00000000..9858e5df
|
||||
--- /dev/null
|
||||
+++ b/cmake/Findcmark.cmake
|
||||
@@ -0,0 +1,59 @@
|
||||
+# SPDX-FileCopyrightText: 2019 Black Hat <bhat@encom.eu.org>
|
||||
+# SPDX-License-Identifier: GPL-3.0-only
|
||||
+
|
||||
+#
|
||||
+# CMake module to search for the cmark library
|
||||
+#
|
||||
+
|
||||
+# first try to find cmark-config.cmake
|
||||
+# path to a file not in the search path can be set with 'cmake -Dcmark_DIR=some/path/'
|
||||
+find_package(cmark CONFIG QUIET)
|
||||
+if(cmark_FOUND AND TARGET cmark::cmark)
|
||||
+ # found it!
|
||||
+ return()
|
||||
+endif()
|
||||
+
|
||||
+find_package(PkgConfig QUIET)
|
||||
+if(PKG_CONFIG_FOUND)
|
||||
+ pkg_check_modules(PC_CMARK QUIET cmark)
|
||||
+endif()
|
||||
+
|
||||
+if(NOT CMARK_INCLUDE_DIR)
|
||||
+ find_path(CMARK_INCLUDE_DIR
|
||||
+ NAMES cmark.h
|
||||
+ PATHS
|
||||
+ ${PC_CMARK_INCLUDEDIR}
|
||||
+ ${PC_CMARK_INCLUDE_DIRS}
|
||||
+ /usr/include
|
||||
+ /usr/local/include)
|
||||
+endif()
|
||||
+
|
||||
+if(NOT CMARK_LIBRARY)
|
||||
+ find_library(CMARK_LIBRARY
|
||||
+ NAMES cmark
|
||||
+ HINTS
|
||||
+ ${PC_CMARK_LIBDIR}
|
||||
+ ${PC_CMARK_LIBRARY_DIRS}
|
||||
+ /usr/lib
|
||||
+ /usr/local/lib)
|
||||
+endif()
|
||||
+
|
||||
+if(NOT TARGET cmark::cmark)
|
||||
+ add_library(cmark::cmark UNKNOWN IMPORTED)
|
||||
+ set_target_properties(cmark::cmark
|
||||
+ PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
|
||||
+ ${CMARK_INCLUDE_DIR})
|
||||
+ set_property(TARGET cmark::cmark APPEND
|
||||
+ PROPERTY IMPORTED_LOCATION ${CMARK_LIBRARY})
|
||||
+endif()
|
||||
+
|
||||
+include(FindPackageHandleStandardArgs)
|
||||
+find_package_handle_standard_args(cmark
|
||||
+ DEFAULT_MSG
|
||||
+ CMARK_INCLUDE_DIR
|
||||
+ CMARK_LIBRARY)
|
||||
+
|
||||
+mark_as_advanced(CMARK_LIBRARY CMARK_INCLUDE_DIR)
|
||||
+
|
||||
+set(CMARK_LIBRARIES ${CMARK_LIBRARY})
|
||||
+set(CMARK_INCLUDE_DIRS ${CMARK_INCLUDE_DIR})
|
||||
--
|
||||
2.39.0
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "prismlauncher-nightly.spec"
|
||||
extra_repos = ["https://packages.adoptium.net/artifactory/rpm/fedora/\\$releasever/\\$basearch"]
|
||||
extra_repos = ["https://packages.adoptium.net/artifactory/rpm/fedora/rawhide/\\$basearch"]
|
||||
}
|
||||
labels {
|
||||
nightly = 1
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
%global name_pretty %{quote:Prism Launcher (Nightly)}
|
||||
%global appid org.prismlauncher.PrismLauncher-nightly
|
||||
|
||||
%global commit 013bb5cac3cf392d04ee1065761781a1e9ed2891
|
||||
%global commit 7e8db638828bc2dc9e41a95eddc1c5582a870cf2
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global commit_date 20260410
|
||||
%global commit_date 20260415
|
||||
%global snapshot_info %{commit_date}.%{shortcommit}
|
||||
|
||||
# Change this variables if you want to use custom keys
|
||||
@@ -26,7 +26,6 @@ Summary: Minecraft launcher with ability to manage multiple instances
|
||||
License: GPL-3.0-only AND Apache-2.0 AND LGPL-3.0-only AND GPL-3.0-or-later AND GPL-2.0-or-later AND ISC AND OFL-1.1 AND LGPL-2.1-only AND MIT AND BSD-2-Clause-FreeBSD AND BSD-3-Clause AND LGPL-3.0-or-later
|
||||
Group: Amusements/Games
|
||||
URL: https://prismlauncher.org/
|
||||
Patch0: 0001-find-cmark-with-pkgconfig.patch
|
||||
Source2: nightly.xml
|
||||
|
||||
BuildRequires: cmake >= 3.15
|
||||
@@ -47,7 +46,7 @@ BuildRequires: anda-srpm-macros
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: libappstream-glib
|
||||
BuildRequires: tomlplusplus-devel
|
||||
BuildRequires: cmake(ghc_filesystem)
|
||||
BuildRequires: vulkan-headers
|
||||
BuildRequires: pkgconfig(libqrencode)
|
||||
BuildRequires: pkgconfig(libarchive)
|
||||
BuildRequires: pkgconfig(gamemode)
|
||||
@@ -60,8 +59,6 @@ BuildRequires: cmake(Qt%{qt_version}Widgets) >= %{min_qt_version}
|
||||
BuildRequires: cmake(Qt%{qt_version}Xml) >= %{min_qt_version}
|
||||
BuildRequires: cmake(Qt%{qt_version}NetworkAuth) >= %{min_qt_version}
|
||||
|
||||
BuildRequires: cmake(Qt6Core5Compat)
|
||||
|
||||
BuildRequires: pkgconfig(libcmark)
|
||||
BuildRequires: pkgconfig(scdoc)
|
||||
BuildRequires: pkgconfig(zlib)
|
||||
@@ -97,8 +94,6 @@ multiple installations of Minecraft at once (Fork of MultiMC)
|
||||
%prep
|
||||
%git_clone https://github.com/%{nice_name}/%{nice_name}.git %{commit}
|
||||
|
||||
rm -rf libraries/{extra-cmake-modules,zlib}/
|
||||
|
||||
# Do not set RPATH
|
||||
sed -i "s|\$ORIGIN/||" CMakeLists.txt
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "prismlauncher.spec"
|
||||
extra_repos = ["https://packages.adoptium.net/artifactory/rpm/fedora/\\$releasever/\\$basearch"]
|
||||
extra_repos = ["https://packages.adoptium.net/artifactory/rpm/fedora/rawhide/\\$basearch"]
|
||||
}
|
||||
labels {
|
||||
mock = 1
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
%global build_platform terra
|
||||
|
||||
Name: prismlauncher
|
||||
Version: 11.0.0
|
||||
Version: 11.0.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Minecraft launcher with ability to manage multiple instances
|
||||
# see COPYING.md for more information
|
||||
@@ -39,7 +39,6 @@ BuildRequires: java-17-openjdk-devel
|
||||
BuildRequires: anda-srpm-macros
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: libappstream-glib
|
||||
BuildRequires: cmake(ghc_filesystem)
|
||||
BuildRequires: cmake(Qt%{qt_version}Concurrent) >= %{min_qt_version}
|
||||
BuildRequires: cmake(Qt%{qt_version}Core) >= %{min_qt_version}
|
||||
BuildRequires: cmake(Qt%{qt_version}Gui) >= %{min_qt_version}
|
||||
@@ -49,12 +48,11 @@ BuildRequires: cmake(Qt%{qt_version}Widgets) >= %{min_qt_version}
|
||||
BuildRequires: cmake(Qt%{qt_version}Xml) >= %{min_qt_version}
|
||||
BuildRequires: cmake(Qt%{qt_version}NetworkAuth) >= %{min_qt_version}
|
||||
BuildRequires: tomlplusplus-devel
|
||||
BuildRequires: vulkan-headers
|
||||
BuildRequires: pkgconfig(libqrencode)
|
||||
BuildRequires: pkgconfig(libarchive)
|
||||
BuildRequires: pkgconfig(gamemode)
|
||||
|
||||
BuildRequires: cmake(Qt6Core5Compat)
|
||||
|
||||
BuildRequires: pkgconfig(libcmark)
|
||||
BuildRequires: pkgconfig(scdoc)
|
||||
BuildRequires: pkgconfig(zlib)
|
||||
@@ -90,8 +88,6 @@ multiple installations of Minecraft at once (Fork of MultiMC)
|
||||
%prep
|
||||
%autosetup -n PrismLauncher-%{version}
|
||||
|
||||
rm -rf libraries/{extra-cmake-modules,filesystem,zlib}
|
||||
|
||||
# Do not set RPATH
|
||||
sed -i "s|\$ORIGIN/||" CMakeLists.txt
|
||||
|
||||
@@ -134,7 +130,7 @@ sed -i "s|\$ORIGIN/||" CMakeLists.txt
|
||||
%{_appsdir}/org.prismlauncher.PrismLauncher.desktop
|
||||
%{_scalableiconsdir}/org.prismlauncher.PrismLauncher.svg
|
||||
%{_hicolordir}/256x256/apps/org.prismlauncher.PrismLauncher.png
|
||||
%{_datadir}/mime/packages/modrinth-mrpack-mime.xml
|
||||
%{_datadir}/mime/packages/org.prismlauncher.PrismLauncher.xml
|
||||
%{_datadir}/qlogging-categories%{qt_version}/prismlauncher.categories
|
||||
%{_mandir}/man?/prismlauncher.*
|
||||
%{_metainfodir}/org.prismlauncher.PrismLauncher.metainfo.xml
|
||||
|
||||
@@ -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 110c786d802c4c17850de1d6945dc4df08ac393a
|
||||
%global ver 0.0.40-19185
|
||||
%global commit e79f56bfdc1b37ea224c636250b990fcfdecf2ed
|
||||
%global ver 0.0.40-19211
|
||||
|
||||
Name: rpcs3
|
||||
Version: %(echo %{ver} | sed 's/-/^/g')
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
%global commit a1ace571823be5979c135e9cb8e9ae103c7641ac
|
||||
%global commit 1c5c9ccb69ea4ae42251aaa4c5a40a54766e6551
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20250715
|
||||
%global commit_date 20260415
|
||||
|
||||
Name: udev-joystick-blacklist
|
||||
Version: 0^%{commit_date}git%{shortcommit}
|
||||
Release: 4%{?dist}
|
||||
Release: 1%{?dist}
|
||||
Summary: Fix for keyboard/mouse/tablet being detected as joysticks in Linux
|
||||
License: Public Domain
|
||||
URL: https://github.com/denilsonsa/udev-joystick-blacklist
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%define debug_package %{nil}
|
||||
|
||||
Name: dart
|
||||
Version: 3.11.4
|
||||
Version: 3.11.5
|
||||
Release: 1%{?dist}
|
||||
Summary: The Dart Language
|
||||
License: BSD-3-Clause
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
# https://github.com/jesseduffield/lazygit
|
||||
%global goipath github.com/jesseduffield/lazygit
|
||||
Version: 0.61.0
|
||||
Version: 0.61.1
|
||||
|
||||
%gometa -f
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit cbab1db9f705129ab85d03c991b91ce067963aed
|
||||
%global commit 05cc5424631413ada31d14c27b06fd828cf2e5f4
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver v5.47.0
|
||||
%global commit_date 20260407
|
||||
%global ver v5.48.0
|
||||
%global commit_date 20260413
|
||||
|
||||
%global goipath github.com/v2fly/v2ray-core
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global goipath github.com/v2fly/v2ray-core
|
||||
Version: 5.48.0
|
||||
Version: 5.49.0
|
||||
|
||||
%global golicenses LICENSE
|
||||
%global godocs README.md SECURITY.md
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit e5a9fb752e0dcc127dd1740316c853571c16052f
|
||||
%global commit 14e8ecfacf3343dc3da032f45f5b78f87cb76c21
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver v26.3.27
|
||||
%global commit_date 20260408
|
||||
%global commit_date 20260414
|
||||
|
||||
%global goipath github.com/XTLS/Xray-core
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Disabled because compiled without debug
|
||||
|
||||
%global goipath github.com/XTLS/Xray-core
|
||||
Version: 26.3.27
|
||||
Version: 26.4.13
|
||||
|
||||
%global golicenses LICENSE
|
||||
%global godocs README.md SECURITY.md CODE_OF_CONDUCT.md
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%define debug_package %{nil}
|
||||
|
||||
Name: lua-language-server
|
||||
Version: 3.18.1
|
||||
Version: 3.18.2
|
||||
Release: 1%{?dist}
|
||||
License: MIT
|
||||
URL: https://luals.github.io/
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10
|
||||
%global commit 2501e23d8170c56b61d126a9e349ae6d8e4b6267
|
||||
%global commit 5b1a05e2826ae222b0cedce740b809ae318af392
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 2.3.1
|
||||
%global commit_date 20260410
|
||||
%global commit_date 20260415
|
||||
%global debug_package %nil
|
||||
|
||||
Name: nim-nightly
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
project pkg {
|
||||
arches = ["x86_64"]
|
||||
rpm {
|
||||
spec = "faster-whisper.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
%global pypi_name faster-whisper
|
||||
%global _desc Faster Whisper transcription with CTranslate2.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 1.2.1
|
||||
Release: 1%?dist
|
||||
Summary: Faster Whisper transcription with CTranslate2
|
||||
License: MIT
|
||||
URL: https://github.com/SYSTRAN/faster-whisper
|
||||
Source0: %url/archive/refs/tags/v%version.tar.gz
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-build
|
||||
BuildRequires: python3-installer
|
||||
BuildRequires: python3-wheel
|
||||
BuildRequires: python3-poetry-core
|
||||
BuildRequires: python3-pip
|
||||
BuildRequires: python3-setuptools
|
||||
|
||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
%description
|
||||
%_desc
|
||||
|
||||
%package -n python3-%{pypi_name}
|
||||
Summary: %{summary}
|
||||
%{?python_provide:%python_provide python3-%{pypi_name}}
|
||||
|
||||
%description -n python3-%{pypi_name}
|
||||
%_desc
|
||||
|
||||
%prep
|
||||
%autosetup -n faster-whisper-%{version}
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%pyproject_save_files faster_whisper
|
||||
|
||||
%files -n python3-%{pypi_name} -f %{pyproject_files}
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
|
||||
%changelog
|
||||
* Sun Apr 12 2026 Owen Zimmerman <owen@fyralabs.com>
|
||||
- Initial commit
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(pypi("faster-whisper"));
|
||||
@@ -2,7 +2,7 @@
|
||||
%global _desc Pure Python library for LaTeX to MathML conversion.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 3.79.0
|
||||
Version: 3.81.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Pure Python library for LaTeX to MathML conversion
|
||||
License: MIT
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global _desc Send usage data from your Python code to PostHog.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 7.11.0
|
||||
Version: 7.11.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Send usage data from your Python code to PostHog
|
||||
License: MIT
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
Pywal is a tool that generates a color palette from the dominant colors in an image. It then applies the colors system-wide and on-the-fly in all of your favourite programs.}
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 3.8.14
|
||||
Release: 1%?dist
|
||||
Version: 3.8.15
|
||||
Release: 1%{?dist}
|
||||
Summary: 16 color fork of the original Pywal
|
||||
License: MIT
|
||||
URL: https://github.com/eylles/pywal16
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
%global _desc Build GUI for your Python program with JavaScript, HTML, and CSS.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 6.1
|
||||
Release: 1%?dist
|
||||
Version: 6.2.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Build GUI for your Python program with JavaScript, HTML, and CSS
|
||||
License: BSD-3-Clause
|
||||
URL: https://github.com/r0x0r/pywebview
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit aaefc85a95431045b0726b297d0ad1f4786ba1e2
|
||||
%global commit_date 20260409
|
||||
%global commit c03c2b926422c82ab680d27f3ad2491845000802
|
||||
%global commit_date 20260414
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global pypi_name types-colorama
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: fresh
|
||||
Version: 0.2.22
|
||||
Version: 0.2.23
|
||||
Release: 1%{?dist}
|
||||
Summary: Text editor for your terminal: easy, powerful and fast
|
||||
URL: https://getfresh.dev
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
%global crate jellyfin-rpc-cli
|
||||
|
||||
Name: rust-jellyfin-rpc-cli
|
||||
Version: 1.3.4
|
||||
Release: 1%?dist
|
||||
Version: 1.3.5
|
||||
Release: 1%{?dist}
|
||||
Summary: Displays the content you're currently watching on Discord!
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global rustflags_debuginfo 1
|
||||
|
||||
Name: rnote
|
||||
Version: 0.14.0
|
||||
Version: 0.14.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Sketch and take handwritten notes
|
||||
License: GPL-3.0
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
%global crate tectonic
|
||||
|
||||
Name: rust-tectonic
|
||||
Version: 0.15.0
|
||||
Version: 0.16.8
|
||||
Release: 1%{?dist}
|
||||
Summary: Modernized, complete, embeddable TeX/LaTeX engine
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global crate television
|
||||
|
||||
Name: rust-television
|
||||
Version: 0.15.5
|
||||
Version: 0.15.6
|
||||
Release: 1%{?dist}
|
||||
Summary: Very fast, portable and hackable fuzzy finder for the terminal
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
version=0.16.0-dev.3142+5ccfeb926
|
||||
version=0.16.0-dev.3153+d6f43caad
|
||||
|
||||
mirrors=()
|
||||
|
||||
@@ -21,8 +21,8 @@ if [ "$1" == "fetch" ]; then
|
||||
randomize_mirrors
|
||||
done
|
||||
echo -e "\033[0;32mNote:\033[0m Selected mirror $mirror"
|
||||
curl -A "rpmdev-spectool" -H "Accept-Encoding: identity" -O ${mirror}/zig-${version}.tar.xz?source=terra.fyralabs.com
|
||||
curl -A "rpmdev-spectool" -H "Accept-Encoding: identity" -O ${mirror}/zig-${version}.tar.xz.minisig?source=terra.fyralabs.com
|
||||
curl -A "rpmdev-spectool" -H "Accept-Encoding: identity" -O ${mirror}/zig-${version}.tar.xz?source=terrapkg.com
|
||||
curl -A "rpmdev-spectool" -H "Accept-Encoding: identity" -O ${mirror}/zig-${version}.tar.xz.minisig?source=terrapkg.com
|
||||
elif [ "$1" == "version" ]; then
|
||||
echo $version
|
||||
# Grab a random mirror. For debugging purposes.
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%define llvm_compat 21
|
||||
%endif
|
||||
%global llvm_version 21.0.0
|
||||
%global ver 0.16.0-dev.3142+5ccfeb926
|
||||
%global ver 0.16.0-dev.3153+d6f43caad
|
||||
%bcond bootstrap 1
|
||||
%bcond docs %{without bootstrap}
|
||||
%bcond test 1
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
%global zig_cache_dir %{builddir}/zig-cache
|
||||
|
||||
Name: zig-master
|
||||
Version: 0.16.0~dev.3142+5ccfeb926
|
||||
Version: 0.16.0~dev.3153+d6f43caad
|
||||
Release: 2%{?dist}
|
||||
Summary: Master builds of the Zig language
|
||||
License: MIT AND NCSA AND LGPL-2.1-or-later AND LGPL-2.1-or-later WITH GCC-exception-2.0 AND GPL-2.0-or-later AND GPL-2.0-or-later WITH GCC-exception-2.0 AND BSD-3-Clause AND Inner-Net-2.0 AND ISC AND LicenseRef-Fedora-Public-Domain AND GFDL-1.1-or-later AND ZPL-2.1
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%bcond_with tests
|
||||
|
||||
Name: apparmor
|
||||
Version: 5.0.0~rc3
|
||||
Version: 5.0.0~rc4
|
||||
Release: 1%{?dist}
|
||||
Summary: AppArmor userspace components
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global debug_package %{nil}
|
||||
|
||||
Name: glaze-devel
|
||||
Version: 7.3.2
|
||||
Version: 7.3.3
|
||||
Release: 1%{?dist}
|
||||
License: MIT
|
||||
URL: https://stephenberry.github.io/glaze
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
|
||||
Name: gmenuharness
|
||||
Version: 0.1.4
|
||||
Release: %autorelease
|
||||
Release: 2%{?dist}
|
||||
Summary: GMenu harness library
|
||||
License: LGPLv3
|
||||
License: LGPL-3.0-or-later
|
||||
URL: https://gitlab.com/ubports/development/core/gmenuharness
|
||||
Source0: %{url}/-/archive/%commit/gmenuharness-%commit.tar.gz
|
||||
|
||||
|
||||
@@ -2,20 +2,17 @@
|
||||
|
||||
Name: libfprint-tod
|
||||
Version: 1.95.1+tod1
|
||||
Release: 2%{?dist}
|
||||
Release: 1%{?dist}
|
||||
URL: https://gitlab.freedesktop.org/3v1n0/libfprint/
|
||||
Source: %{url}/-/archive/v%{version}/libfprint-v%{version}.tar.gz
|
||||
Summary: a light fork of libfprint to expose internal Drivers API in order to create drivers as shared libraries
|
||||
License: LGPL-2.1-or-later
|
||||
License: GPL-2.1
|
||||
Conflicts: libfprint
|
||||
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: meson
|
||||
BuildRequires: cmake
|
||||
BuildRequires: gtk-doc
|
||||
BuildRequires: gdb
|
||||
BuildRequires: valgrind
|
||||
BuildRequires: appstream
|
||||
BuildRequires: pkgconfig(glib-2.0)
|
||||
BuildRequires: pkgconfig(gio-unix-2.0)
|
||||
BuildRequires: pkgconfig(gobject-2.0)
|
||||
@@ -25,11 +22,8 @@ BuildRequires: pkgconfig(openssl)
|
||||
BuildRequires: pkgconfig(gudev-1.0)
|
||||
BuildRequires: pkgconfig(udev)
|
||||
BuildRequires: pkgconfig(pixman-1)
|
||||
BuildRequires: pkgconfig(cairo)
|
||||
BuildRequires: terra-appstream-helper
|
||||
|
||||
Packager: metcya <metcya@gmail.com>
|
||||
|
||||
%description
|
||||
%summary.
|
||||
|
||||
@@ -44,8 +38,6 @@ Documentation for %{name}.
|
||||
|
||||
%prep
|
||||
%autosetup -n libfprint-v%{version}
|
||||
|
||||
%conf
|
||||
%meson -Ddrivers=all -Dinstalled-tests=false
|
||||
|
||||
%build
|
||||
@@ -65,6 +57,7 @@ Documentation for %{name}.
|
||||
%{_metainfodir}/%{appid}.metainfo.xml
|
||||
|
||||
%files doc
|
||||
%dir %{_datadir}/gtk-doc/html/libfprint-2
|
||||
%{_datadir}/gtk-doc/html/libfprint-2/*.{html,css,png,devhelp2}
|
||||
|
||||
%changelog
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
Name: %(echo %real_name | tr '_' '-')
|
||||
Epoch: 1
|
||||
Version: 13.2.27
|
||||
Version: 13.2.75
|
||||
Release: 1%{?dist}
|
||||
Summary: CXX Core Compute Libraries
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
Name: %(echo %real_name | tr '_' '-')
|
||||
Epoch: 1
|
||||
Version: 13.2.51
|
||||
Version: 13.2.75
|
||||
Release: 1%{?dist}
|
||||
Summary: CUDA Runtime API library
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global cuda_version 12
|
||||
|
||||
Name: cuda-cudnn
|
||||
Version: 9.20.0.48
|
||||
Version: 9.21.0.82
|
||||
Release: 1%{?dist}
|
||||
Epoch: 1
|
||||
Summary: NVIDIA CUDA Deep Neural Network library (cuDNN)
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
Name: %(echo %real_name | tr '_' '-')-devel
|
||||
Epoch: 1
|
||||
Version: 13.2.51
|
||||
Version: 13.2.75
|
||||
Release: 1%{?dist}
|
||||
Summary: CUDA Culibos Math development library
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
Name: %(echo %real_name | tr '_' '-')
|
||||
Epoch: 1
|
||||
Version: 13.2.51
|
||||
Version: 13.2.78
|
||||
Release: 1%{?dist}
|
||||
Summary: Utility to extract information from CUDA binary files
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
Name: %(echo %real_name | tr '_' '-')
|
||||
Epoch: 1
|
||||
Version: 13.2.23
|
||||
Version: 13.2.75
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA CUDA Profiling Tools Interface (CUPTI) library
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
Name: %(echo %real_name | tr '_' '-')
|
||||
Epoch: 1
|
||||
Version: 13.2.51
|
||||
Version: 13.2.78
|
||||
Release: 1%{?dist}
|
||||
Summary: CUDA cuxxfilt (demangler)
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
Name: %(echo %real_name | tr '_' '-')
|
||||
Epoch: 1
|
||||
Version: 13.2.20
|
||||
Version: 13.2.75
|
||||
Release: 1%{?dist}
|
||||
Summary: CUDA GDB
|
||||
License: GPLv3+ and GPLv3+ with exceptions and GPLv2+ and GPLv2+ with exceptions and GPL+ and LGPLv2+ and LGPLv3+ and BSD and Public Domain and GFDL
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
Name: %(echo %real_name | tr '_' '-')
|
||||
Epoch: 1
|
||||
Version: 13.2.51
|
||||
Version: 13.2.78
|
||||
Release: 1%{?dist}
|
||||
Summary: Utility to extract information from CUDA binary files
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
Name: cuda-nvml
|
||||
Epoch: 1
|
||||
Version: 13.2.51
|
||||
Version: 13.2.82
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA Management library (NVML)
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
Name: %(echo %real_name | tr '_' '-')
|
||||
Epoch: 1
|
||||
Version: 13.2.51
|
||||
Version: 13.2.78
|
||||
Release: 1%{?dist}
|
||||
Summary: CUDA nvprune
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
Name: %(echo %real_name | tr '_' '-')
|
||||
Epoch: 1
|
||||
Version: 13.2.51
|
||||
Version: 13.2.78
|
||||
Release: 1%{?dist}
|
||||
Summary: CUDA runtime compilation library (NVRTC)
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
Name: %(echo %real_name | tr '_' '-')
|
||||
Epoch: 1
|
||||
Version: 13.2.20
|
||||
Version: 13.2.75
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA Tools Extension (NVTX) library
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
Name: cuda-profiler
|
||||
Epoch: 1
|
||||
Version: 13.2.20
|
||||
Version: 13.2.75
|
||||
Release: 1%{?dist}
|
||||
Summary: CUDA Profiler API
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
Name: cuda-sandbox
|
||||
Epoch: 1
|
||||
Version: 13.2.51
|
||||
Version: 13.2.82
|
||||
Release: 1%{?dist}
|
||||
Summary: CUDA nvsandboxutils
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
Name: cuda-sanitizer
|
||||
Epoch: 1
|
||||
Version: 13.2.23
|
||||
Version: 13.2.76
|
||||
Release: 1%{?dist}
|
||||
Summary: CUDA Compute Sanitizer API
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global major_package_version 13-0
|
||||
|
||||
Name: cuda
|
||||
Version: 13.2.51
|
||||
Version: 13.2.75
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA Compute Unified Device Architecture Toolkit
|
||||
Epoch: 1
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
Name: libcublas
|
||||
Epoch: 1
|
||||
Version: 13.3.0.5
|
||||
Version: 13.4.0.1
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA CUDA Basic Linear Algebra Subroutines (cuBLAS) libraries
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
Name: libcudla
|
||||
Epoch: 1
|
||||
Version: 13.2.51
|
||||
Version: 13.2.75
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA CUDA Deep Learning Accelerator (DLA) engines (Jetson Xavier + Orin)
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
Name: libcufft
|
||||
Epoch: 2
|
||||
Version: 12.2.0.37
|
||||
Version: 12.2.0.46
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA CUDA Fast Fourier Transform library (cuFFT) libraries
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
Name: libcufile
|
||||
Epoch: 1
|
||||
Version: 1.17.0.44
|
||||
Version: 1.17.1.22
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA GPUDirect Storage library (cuFile)
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
Name: libcurand
|
||||
Epoch: 2
|
||||
Version: 10.4.2.51
|
||||
Version: 10.4.2.55
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA CUDA Random Number Generation library (cuRAND)
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
Name: libcusolver
|
||||
Epoch: 2
|
||||
Version: 12.1.0.51
|
||||
Version: 12.2.0.1
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA cuSOLVER library
|
||||
License: CUDA Toolkit
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
Name: libcusparse
|
||||
Epoch: 1
|
||||
Version: 12.7.9.17
|
||||
Version: 12.7.10.1
|
||||
Release: 1%{?dist}
|
||||
Summary: NVIDIA CUDA Sparse Matrix library (cuSPARSE) library
|
||||
License: CUDA Toolkit
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user