mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 09:01:55 +00:00
Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bb1a45b50d | |||
| be56348d1f | |||
| ad14de6401 | |||
| 8630c32a67 | |||
| 2ba0f5fcfe | |||
| 3636745490 | |||
| f2cf3f26da | |||
| 9e0e109b35 | |||
| 34a97472fc | |||
| f1b6e21c7d | |||
| 89e07f9835 | |||
| f87c889431 | |||
| f1f0e44797 | |||
| e55b3cb429 | |||
| 792edc0ccb | |||
| c67138f111 | |||
| b7d284820c | |||
| 0be8ee0a2e | |||
| e44c2f88d7 | |||
| 46f0628911 | |||
| 6048f2726f | |||
| 315f45be65 | |||
| 7a8ff7ac50 | |||
| 1155154e1d | |||
| 010858b4ab | |||
| 216c789923 | |||
| 3dd0218495 | |||
| 85dbad1db4 | |||
| 99efcda405 | |||
| 3662bbcf39 | |||
| d54ee2cc15 |
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: feishin
|
||||
Version: 1.5.0
|
||||
Version: 1.6.0
|
||||
Release: 1%?dist
|
||||
Summary: A modern self-hosted music player
|
||||
License: GPL-3.0
|
||||
|
||||
@@ -21,10 +21,12 @@ License: GPL-3.0-only AND BSD-3-Clause
|
||||
Source0: https://github.com/imputnet/helium-linux/releases/download/%{version}/helium-%{version}-%{arch}_linux.tar.xz
|
||||
Source1: https://github.com/imputnet/helium-linux/archive/refs/tags/%{version}.tar.gz
|
||||
Source2: net.imput.helium.metainfo.xml
|
||||
Source3: net.imput.helium.desktop
|
||||
|
||||
ExclusiveArch: x86_64 aarch64
|
||||
|
||||
BuildRequires: terra-appstream-helper desktop-file-utils
|
||||
BuildRequires: terra-appstream-helper
|
||||
BuildRequires: desktop-file-utils
|
||||
|
||||
Requires: xdg-utils
|
||||
Requires: liberation-fonts
|
||||
@@ -39,20 +41,13 @@ Based on ungoogled-chromium with additional privacy and usability improvements.
|
||||
%autosetup -n helium-%{version}-%{arch}_linux
|
||||
tar --strip-components=1 -zxvf %{SOURCE1}
|
||||
|
||||
sed -i 's/Exec=helium\b/Exec=helium-browser-bin/g' helium.desktop
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
install -dm755 %{buildroot}%{_libdir}/%{name}
|
||||
cp -a * %{buildroot}%{_libdir}/%{name}/
|
||||
|
||||
sed -i 's/exists_desktop_file || generate_desktop_file/true/' \
|
||||
%{buildroot}%{_libdir}/%{name}/chrome-wrapper
|
||||
|
||||
install -Dm644 helium.desktop %{buildroot}%{_appsdir}/%{name}.desktop
|
||||
|
||||
%__desktop_file_edit --set-icon=net.input.helium %{buildroot}%{_appsdir}/%{name}.desktop
|
||||
install -Dm644 %{SOURCE3} %{buildroot}%{_appsdir}/%{appid}.desktop
|
||||
|
||||
install -Dm644 product_logo_256.png %{buildroot}%{_hicolordir}/256x256/apps/%{appid}.png
|
||||
|
||||
@@ -60,49 +55,52 @@ rm -f %{buildroot}%{_libdir}/%{name}/helium.desktop
|
||||
rm -f %{buildroot}%{_libdir}/%{name}/product_logo_256.png
|
||||
|
||||
install -dm755 %{buildroot}%{_bindir}
|
||||
cat > %{buildroot}%{_bindir}/%{name} << EOF
|
||||
cat > %{buildroot}%{_bindir}/%{name} << 'EOF'
|
||||
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
XDG_CONFIG_HOME="\${XDG_CONFIG_HOME:-\"\$HOME/.config\"}"
|
||||
|
||||
XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-"$HOME/.config"}"
|
||||
SYS_CONF="%{_sysconfdir}/helium-browser-flags.conf"
|
||||
USR_CONF="\${XDG_CONFIG_HOME}/helium-browser-flags.conf"
|
||||
USR_CONF="${XDG_CONFIG_HOME}/helium-browser-flags.conf"
|
||||
|
||||
FLAGS=()
|
||||
|
||||
append_flags_file() {
|
||||
local file="\$1"
|
||||
[[ -r "\$file" ]] || return 0
|
||||
local file="$1"
|
||||
[[ -r "$file" ]] || return 0
|
||||
local line safe_line
|
||||
while IFS= read -r line; do
|
||||
[[ "\$line" =~ ^[[:space:]]*(#|\$) ]] && continue
|
||||
case "\$line" in
|
||||
*'\$('*|*'\`'*)
|
||||
echo "Warning: ignoring unsafe line in \$file: \$line" >&2
|
||||
[[ "$line" =~ ^[[:space:]]*(#|$) ]] && continue
|
||||
case "$line" in
|
||||
*'$('*|*'`'*)
|
||||
echo "Warning: ignoring unsafe line in $file: $line" >&2
|
||||
continue
|
||||
;;
|
||||
esac
|
||||
set -f
|
||||
safe_line=\${line//\$/\\\\\$}
|
||||
safe_line=\${safe_line//~/\\\\~}
|
||||
eval "set -- \$safe_line"
|
||||
safe_line=${line//$/\\$}
|
||||
safe_line=${safe_line//~/\\~}
|
||||
eval "set -- $safe_line"
|
||||
set +f
|
||||
for token in "\$@"; do
|
||||
FLAGS+=("\$token")
|
||||
for token in "$@"; do
|
||||
FLAGS+=("$token")
|
||||
done
|
||||
done < "\$file"
|
||||
done < "$file"
|
||||
}
|
||||
|
||||
append_flags_file "\$SYS_CONF"
|
||||
append_flags_file "\$USR_CONF"
|
||||
append_flags_file "$SYS_CONF"
|
||||
append_flags_file "$USR_CONF"
|
||||
|
||||
if [[ -n "\${HELIUM_USER_FLAGS:-}" ]]; then
|
||||
read -r -a ENV_FLAGS <<< "\$HELIUM_USER_FLAGS"
|
||||
FLAGS+=("\${ENV_FLAGS[@]}")
|
||||
if [[ -n "${HELIUM_USER_FLAGS:-}" ]]; then
|
||||
read -r -a ENV_FLAGS <<< "$HELIUM_USER_FLAGS"
|
||||
FLAGS+=("${ENV_FLAGS[@]}")
|
||||
fi
|
||||
|
||||
exec %{_libdir}/%{name}/chrome-wrapper "\${FLAGS[@]}" "\$@"
|
||||
export CHROME_WRAPPER="$(readlink -f "$0")"
|
||||
export CHROME_VERSION_EXTRA="stable"
|
||||
|
||||
exec -a "$0" %{_libdir}/%{name}/chrome "${FLAGS[@]}" "$@"
|
||||
EOF
|
||||
chmod 755 %{buildroot}%{_bindir}/%{name}
|
||||
|
||||
@@ -112,11 +110,15 @@ chmod 755 %{buildroot}%{_bindir}/%{name}
|
||||
%doc README.md
|
||||
%license LICENSE LICENSE.ungoogled_chromium
|
||||
%{_libdir}/%{name}/
|
||||
%{_bindir}/%{name}
|
||||
%{_appsdir}/%{name}.desktop
|
||||
# shebang reasons
|
||||
%attr(0755,root,root) %{_bindir}/%{name}
|
||||
%{_appsdir}/%{appid}.desktop
|
||||
%{_hicolordir}/256x256/apps/%{appid}.png
|
||||
%{_metainfodir}/%{appid}.metainfo.xml
|
||||
|
||||
%changelog
|
||||
* Sun Feb 15 2026 Jaiden Rirordan <jade@fyralabs.com>
|
||||
- Use downstream desktop file and recombobulate
|
||||
|
||||
* Wed Dec 03 2025 Nadia P <nyadiia@pm.me> - 0.6.9.1-1
|
||||
- Initial package
|
||||
|
||||
@@ -0,0 +1,229 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Name=Helium
|
||||
|
||||
# For future reference, these translations are available in the Chromium
|
||||
# tree at chrome/installer/linux/common/desktop.template.
|
||||
#
|
||||
# Only KDE 4 seems to use GenericName, so we reuse the KDE strings.
|
||||
# From Ubuntu's language-pack-kde-XX-base packages, version 9.04-20090413.
|
||||
GenericName=Web Browser
|
||||
GenericName[ar]=متصفح الشبكة
|
||||
GenericName[bg]=Уеб браузър
|
||||
GenericName[ca]=Navegador web
|
||||
GenericName[cs]=WWW prohlížeč
|
||||
GenericName[da]=Browser
|
||||
GenericName[de]=Web-Browser
|
||||
GenericName[el]=Περιηγητής ιστού
|
||||
GenericName[en_GB]=Web Browser
|
||||
GenericName[es]=Navegador web
|
||||
GenericName[et]=Veebibrauser
|
||||
GenericName[fi]=WWW-selain
|
||||
GenericName[fr]=Navigateur Web
|
||||
GenericName[gu]=વેબ બ્રાઉઝર
|
||||
GenericName[he]=דפדפן אינטרנט
|
||||
GenericName[hi]=वेब ब्राउज़र
|
||||
GenericName[hu]=Webböngésző
|
||||
GenericName[it]=Browser Web
|
||||
GenericName[ja]=ウェブブラウザ
|
||||
GenericName[kn]=ಜಾಲ ವೀಕ್ಷಕ
|
||||
GenericName[ko]=웹 브라우저
|
||||
GenericName[lt]=Žiniatinklio naršyklė
|
||||
GenericName[lv]=Tīmekļa pārlūks
|
||||
GenericName[ml]=വെബ് ബ്രൌസര്
|
||||
GenericName[mr]=वेब ब्राऊजर
|
||||
GenericName[nb]=Nettleser
|
||||
GenericName[nl]=Webbrowser
|
||||
GenericName[pl]=Przeglądarka WWW
|
||||
GenericName[pt]=Navegador Web
|
||||
GenericName[pt_BR]=Navegador da Internet
|
||||
GenericName[ro]=Navigator de Internet
|
||||
GenericName[ru]=Веб-браузер
|
||||
GenericName[sl]=Spletni brskalnik
|
||||
GenericName[sv]=Webbläsare
|
||||
GenericName[ta]=இணைய உலாவி
|
||||
GenericName[th]=เว็บเบราว์เซอร์
|
||||
GenericName[tr]=Web Tarayıcı
|
||||
GenericName[uk]=Веб-браузер
|
||||
GenericName[zh_CN]=网页浏览器
|
||||
GenericName[zh_HK]=網頁瀏覽器
|
||||
GenericName[zh_TW]=網頁瀏覽器
|
||||
# Not translated in KDE, from Epiphany 2.26.1-0ubuntu1.
|
||||
GenericName[bn]=ওয়েব ব্রাউজার
|
||||
GenericName[fil]=Web Browser
|
||||
GenericName[hr]=Web preglednik
|
||||
GenericName[id]=Browser Web
|
||||
GenericName[or]=ଓ୍ବେବ ବ୍ରାଉଜର
|
||||
GenericName[sk]=WWW prehliadač
|
||||
GenericName[sr]=Интернет прегледник
|
||||
GenericName[te]=వెబ్ బ్రౌజర్
|
||||
GenericName[vi]=Bộ duyệt Web
|
||||
|
||||
# Gnome and KDE 3 uses Comment.
|
||||
Comment=Access the Internet
|
||||
Comment[ar]=الدخول إلى الإنترنت
|
||||
Comment[bg]=Достъп до интернет
|
||||
Comment[bn]=ইন্টারনেটটি অ্যাক্সেস করুন
|
||||
Comment[ca]=Accedeix a Internet
|
||||
Comment[cs]=Přístup k internetu
|
||||
Comment[da]=Få adgang til internettet
|
||||
Comment[de]=Internetzugriff
|
||||
Comment[el]=Πρόσβαση στο Διαδίκτυο
|
||||
Comment[en_GB]=Access the Internet
|
||||
Comment[es]=Accede a Internet.
|
||||
Comment[et]=Pääs Internetti
|
||||
Comment[fi]=Käytä internetiä
|
||||
Comment[fil]=I-access ang Internet
|
||||
Comment[fr]=Accéder à Internet
|
||||
Comment[gu]=ઇંટરનેટ ઍક્સેસ કરો
|
||||
Comment[he]=גישה אל האינטרנט
|
||||
Comment[hi]=इंटरनेट तक पहुंच स्थापित करें
|
||||
Comment[hr]=Pristup Internetu
|
||||
Comment[hu]=Internetelérés
|
||||
Comment[id]=Akses Internet
|
||||
Comment[it]=Accesso a Internet
|
||||
Comment[ja]=インターネットにアクセス
|
||||
Comment[kn]=ಇಂಟರ್ನೆಟ್ ಅನ್ನು ಪ್ರವೇಶಿಸಿ
|
||||
Comment[ko]=인터넷 연결
|
||||
Comment[lt]=Interneto prieiga
|
||||
Comment[lv]=Piekļūt internetam
|
||||
Comment[ml]=ഇന്റര്നെറ്റ് ആക്സസ് ചെയ്യുക
|
||||
Comment[mr]=इंटरनेटमध्ये प्रवेश करा
|
||||
Comment[nb]=Gå til Internett
|
||||
Comment[nl]=Verbinding maken met internet
|
||||
Comment[or]=ଇଣ୍ଟର୍ନେଟ୍ ପ୍ରବେଶ କରନ୍ତୁ
|
||||
Comment[pl]=Skorzystaj z internetu
|
||||
Comment[pt]=Aceder à Internet
|
||||
Comment[pt_BR]=Acessar a internet
|
||||
Comment[ro]=Accesaţi Internetul
|
||||
Comment[ru]=Доступ в Интернет
|
||||
Comment[sk]=Prístup do siete Internet
|
||||
Comment[sl]=Dostop do interneta
|
||||
Comment[sr]=Приступите Интернету
|
||||
Comment[sv]=Gå ut på Internet
|
||||
Comment[ta]=இணையத்தை அணுகுதல்
|
||||
Comment[te]=ఇంటర్నెట్ను ఆక్సెస్ చెయ్యండి
|
||||
Comment[th]=เข้าถึงอินเทอร์เน็ต
|
||||
Comment[tr]=İnternet'e erişin
|
||||
Comment[uk]=Доступ до Інтернету
|
||||
Comment[vi]=Truy cập Internet
|
||||
Comment[zh_CN]=访问互联网
|
||||
Comment[zh_HK]=連線到網際網路
|
||||
Comment[zh_TW]=連線到網際網路
|
||||
|
||||
Exec=helium-browser-bin %U
|
||||
StartupNotify=true
|
||||
StartupWMClass=helium
|
||||
Terminal=false
|
||||
Icon=net.imput.helium
|
||||
Type=Application
|
||||
Categories=Network;WebBrowser;
|
||||
MimeType=application/pdf;application/rdf+xml;application/rss+xml;application/xhtml+xml;application/xhtml_xml;application/xml;image/gif;image/jpeg;image/png;image/webp;text/html;text/xml;x-scheme-handler/http;x-scheme-handler/https;
|
||||
Actions=new-window;new-private-window;
|
||||
X-Desktop-File-Install-Version=0.28
|
||||
|
||||
[Desktop Action new-window]
|
||||
Name=New Window
|
||||
Name[am]=አዲስ መስኮት
|
||||
Name[ar]=نافذة جديدة
|
||||
Name[bg]=Нов прозорец
|
||||
Name[bn]=নতুন উইন্ডো
|
||||
Name[ca]=Finestra nova
|
||||
Name[cs]=Nové okno
|
||||
Name[da]=Nyt vindue
|
||||
Name[de]=Neues Fenster
|
||||
Name[el]=Νέο Παράθυρο
|
||||
Name[en_GB]=New Window
|
||||
Name[es]=Nueva ventana
|
||||
Name[et]=Uus aken
|
||||
Name[fa]=پنجره جدید
|
||||
Name[fi]=Uusi ikkuna
|
||||
Name[fil]=New Window
|
||||
Name[fr]=Nouvelle fenêtre
|
||||
Name[gu]=નવી વિંડો
|
||||
Name[hi]=नई विंडो
|
||||
Name[hr]=Novi prozor
|
||||
Name[hu]=Új ablak
|
||||
Name[id]=Jendela Baru
|
||||
Name[it]=Nuova finestra
|
||||
Name[iw]=חלון חדש
|
||||
Name[ja]=新規ウインドウ
|
||||
Name[kn]=ಹೊಸ ವಿಂಡೊ
|
||||
Name[ko]=새 창
|
||||
Name[lt]=Naujas langas
|
||||
Name[lv]=Jauns logs
|
||||
Name[ml]=പുതിയ വിന്ഡോ
|
||||
Name[mr]=नवीन विंडो
|
||||
Name[nl]=Nieuw venster
|
||||
Name[no]=Nytt vindu
|
||||
Name[pl]=Nowe okno
|
||||
Name[pt]=Nova janela
|
||||
Name[pt_BR]=Nova janela
|
||||
Name[ro]=Fereastră nouă
|
||||
Name[ru]=Новое окно
|
||||
Name[sk]=Nové okno
|
||||
Name[sl]=Novo okno
|
||||
Name[sr]=Нови прозор
|
||||
Name[sv]=Nytt fönster
|
||||
Name[sw]=Dirisha Jipya
|
||||
Name[ta]=புதிய சாளரம்
|
||||
Name[te]=క్రొత్త విండో
|
||||
Name[th]=หน้าต่างใหม่
|
||||
Name[tr]=Yeni Pencere
|
||||
Name[uk]=Нове вікно
|
||||
Name[vi]=Cửa sổ Mới
|
||||
Name[zh_CN]=新建窗口
|
||||
Name[zh_TW]=開新視窗
|
||||
Exec=helium-browser-bin
|
||||
|
||||
[Desktop Action new-private-window]
|
||||
Name=New Incognito Window
|
||||
Name[ar]=نافذة جديدة للتصفح المتخفي
|
||||
Name[bg]=Нов прозорец „инкогнито“
|
||||
Name[bn]=নতুন ছদ্মবেশী উইন্ডো
|
||||
Name[ca]=Finestra d'incògnit nova
|
||||
Name[cs]=Nové anonymní okno
|
||||
Name[da]=Nyt inkognitovindue
|
||||
Name[de]=Neues Inkognito-Fenster
|
||||
Name[el]=Νέο παράθυρο για ανώνυμη περιήγηση
|
||||
Name[en_GB]=New Incognito window
|
||||
Name[es]=Nueva ventana de incógnito
|
||||
Name[et]=Uus inkognito aken
|
||||
Name[fa]=پنجره جدید حالت ناشناس
|
||||
Name[fi]=Uusi incognito-ikkuna
|
||||
Name[fil]=Bagong Incognito window
|
||||
Name[fr]=Nouvelle fenêtre de navigation privée
|
||||
Name[gu]=નવી છુપી વિંડો
|
||||
Name[hi]=नई गुप्त विंडो
|
||||
Name[hr]=Novi anoniman prozor
|
||||
Name[hu]=Új Inkognitóablak
|
||||
Name[id]=Jendela Penyamaran baru
|
||||
Name[it]=Nuova finestra di navigazione in incognito
|
||||
Name[iw]=חלון חדש לגלישה בסתר
|
||||
Name[ja]=新しいシークレット ウィンドウ
|
||||
Name[kn]=ಹೊಸ ಅಜ್ಞಾತ ವಿಂಡೋ
|
||||
Name[ko]=새 시크릿 창
|
||||
Name[lt]=Naujas inkognito langas
|
||||
Name[lv]=Jauns inkognito režīma logs
|
||||
Name[ml]=പുതിയ വേഷ പ്രച്ഛന്ന വിന്ഡോ
|
||||
Name[mr]=नवीन गुप्त विंडो
|
||||
Name[nl]=Nieuw incognitovenster
|
||||
Name[no]=Nytt inkognitovindu
|
||||
Name[pl]=Nowe okno incognito
|
||||
Name[pt]=Nova janela de navegação anónima
|
||||
Name[pt_BR]=Nova janela anônima
|
||||
Name[ro]=Fereastră nouă incognito
|
||||
Name[ru]=Новое окно в режиме инкогнито
|
||||
Name[sk]=Nové okno inkognito
|
||||
Name[sl]=Novo okno brez beleženja zgodovine
|
||||
Name[sr]=Нови прозор за прегледање без архивирања
|
||||
Name[sv]=Nytt inkognitofönster
|
||||
Name[ta]=புதிய மறைநிலைச் சாளரம்
|
||||
Name[te]=క్రొత్త అజ్ఞాత విండో
|
||||
Name[th]=หน้าต่างใหม่ที่ไม่ระบุตัวตน
|
||||
Name[tr]=Yeni Gizli pencere
|
||||
Name[uk]=Нове вікно в режимі анонімного перегляду
|
||||
Name[vi]=Cửa sổ ẩn danh mới
|
||||
Name[zh_CN]=新建隐身窗口
|
||||
Name[zh_TW]=新增無痕式視窗
|
||||
Exec=helium-browser-bin --incognito
|
||||
@@ -3,10 +3,10 @@
|
||||
%global gtk4_version 4.14.4
|
||||
%global libadwaita_version 1.5.1
|
||||
%global pure_protobuf_version 2.0.0
|
||||
%global raw_ver v1.102.0
|
||||
%global raw_ver v1.103.0
|
||||
|
||||
Name: komikku
|
||||
Version: 1.102.0
|
||||
Version: 1.103.0
|
||||
%forgemeta
|
||||
Release: 1%?dist
|
||||
Summary: A manga reader for GNOME
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 08329c25f3344819047b1bddf311df82e953d900
|
||||
%global commit_date 20260208
|
||||
%global commit a91cc6da5cdc16a06988b9de3417fa7d7acbab8b
|
||||
%global commit_date 20260215
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global debug_package %nil
|
||||
%global __strip /bin/true
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Disable X11 for RHEL 10+
|
||||
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
|
||||
|
||||
%global commit 76a5eba991733f41310912c79c60f6c565a77cc9
|
||||
%global commit 102e693f49ce40fa10361d166392068c24fe5f15
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260213
|
||||
%global commit_date 20260214
|
||||
%global ver 0.41.0
|
||||
|
||||
Name: mpv-nightly
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
%global ver 2026-02-13
|
||||
%global ver 2026-02-15
|
||||
%global goodver %(echo %ver | sed 's/-//g')
|
||||
%global __brp_mangle_shebangs %{nil}
|
||||
%bcond_without mold
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "system76-keyboard-configurator.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
Name: system76-keyboard-configurator
|
||||
Version: 1.3.12
|
||||
Release: 1%{dist}
|
||||
Summary: System76 Keyboard Configurator
|
||||
|
||||
License: GPL-3.0-or-later AND Apache-2.0 AND MIT AND Unicode-DFS-2016 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 (Unlicense OR MIT)
|
||||
URL: https://github.com/pop-os/keyboard-configurator
|
||||
Source: https://github.com/pop-os/keyboard-configurator/archive/refs/tags/v1.3.12.tar.gz
|
||||
|
||||
|
||||
BuildRequires: anda-srpm-macros
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: cargo-rpm-macros
|
||||
BuildRequires: gtk3-devel
|
||||
BuildRequires: cargo
|
||||
BuildRequires: rust
|
||||
BuildRequires: gtk4-devel
|
||||
BuildRequires: libusb1-devel
|
||||
|
||||
|
||||
%description
|
||||
Application for configuration of System76 keyboard firmware.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -n keyboard-configurator-%{version}
|
||||
%cargo_prep_online
|
||||
|
||||
%install
|
||||
%cargo_install
|
||||
%__install -D -m 0644 -vp linux/com.system76.keyboardconfigurator.desktop %{buildroot}%{_datadir}/applications/com.system76.keyboardconfigurator.desktop
|
||||
%__install -D -m 0644 -vp linux/com.system76.keyboardconfigurator.appdata.xml %{buildroot}%{_datadir}/metainfo/com.system76.keyboardconfigurator.appdata.xml
|
||||
%__install -D -m 0644 -vp data/icons/scalable/apps/com.system76.keyboardconfigurator.svg %{buildroot}%{_datadir}/icons/hicolor/scalable/apps/com.system76.keyboardconfigurator.svg
|
||||
%__install -D -m 0644 -vp debian/com.system76.pkexec.keyboardconfigurator.policy %{buildroot}%{_datadir}/polkit-1/actions/com.system76.pkexec.keyboardconfigurator.policy
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%license LICENSE.dependencies
|
||||
%doc README.md
|
||||
%{_bindir}/%{name}
|
||||
%{_datadir}/applications/com.system76.keyboardconfigurator.desktop
|
||||
%{_datadir}/metainfo/com.system76.keyboardconfigurator.appdata.xml
|
||||
%{_datadir}/icons/hicolor/scalable/apps/com.system76.keyboardconfigurator.svg
|
||||
%{_datadir}/polkit-1/actions/com.system76.pkexec.keyboardconfigurator.policy
|
||||
|
||||
|
||||
%changelog
|
||||
* Sun Feb 15 2026 Jaiden Riordan <jade@fyralabs.com> - 1.3.12
|
||||
- Port to Terra
|
||||
@@ -1 +1 @@
|
||||
v1.12.21
|
||||
v1.12.22
|
||||
@@ -2,7 +2,7 @@
|
||||
%global crate matugen
|
||||
|
||||
Name: rust-matugen
|
||||
Version: 3.1.0
|
||||
Version: 4.0.0
|
||||
Release: 1%?dist
|
||||
Summary: Material you color generation tool with templates
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
# prevent library files from being installed
|
||||
%global cargo_install_lib 0
|
||||
|
||||
%global upstream_version v2.14.1
|
||||
%global upstream_version v2.14.2
|
||||
%global ver %{sub %upstream_version 2}
|
||||
|
||||
Name: walker
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
%global appid com.vscodium.VSCodium
|
||||
|
||||
Name: codium
|
||||
Version: 1.109.21026
|
||||
Version: 1.109.31074
|
||||
Release: 1%?dist
|
||||
Summary: Code editing. Redefined.
|
||||
License: MIT
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: flow-control
|
||||
Epoch: 1
|
||||
Version: 0.7.0
|
||||
Version: 0.7.2
|
||||
Release: 1%?dist
|
||||
Summary: A programmer's text editor
|
||||
License: MIT
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: flutter
|
||||
Version: 3.41.0
|
||||
Version: 3.41.1
|
||||
Release: 1%?dist
|
||||
Summary: SDK for crafting beautiful, fast user experiences from a single codebase
|
||||
License: BSD-3-Clause
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 1576a09b0169b437b454067f9b10750d9efea9e0
|
||||
%global commit 61e347a2c278263dd1392c324feaee5fb9712ee5
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global fulldate 2026-02-11
|
||||
%global fulldate 2026-02-14
|
||||
%global commit_date %(echo %{fulldate} | sed 's/-//g')
|
||||
%global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
|
||||
%global ver 1.3.0
|
||||
|
||||
@@ -12,8 +12,8 @@
|
||||
|
||||
# Naming variable as something other than "commit" is necessary
|
||||
# to stop %%gometa from putting commit hash in release
|
||||
%global commit_hash 4aa706cbc5480121dc003f8f675f6db996a0400a
|
||||
%global commit_date 20260211
|
||||
%global commit_hash d38f0dfe7af9a6a8cac27764ad47f43af60896df
|
||||
%global commit_date 20260215
|
||||
%global shortcommit %{sub %{commit_hash} 1 7}
|
||||
%global ver 2.0.15
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 69a2ea3fff7830e5a311cd3987eb901cff88d944
|
||||
%global commit 99a558f3689e6920eb3c3ad5e78854c7068c5d75
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260213
|
||||
%global commit_date 20260215
|
||||
%global ver 0.225.0
|
||||
|
||||
%bcond_with check
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global debug_package %{nil}
|
||||
%endif
|
||||
|
||||
%global ver 0.224.0-pre
|
||||
%global ver 0.224.1-pre
|
||||
# Exclude input files from mangling
|
||||
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global crate honkers-railway-launcher
|
||||
%global appid moe.launcher.the-honkers-railway-launcher
|
||||
Name: %{crate}
|
||||
Version: 1.14.3
|
||||
Version: 1.14.4
|
||||
Release: 1%?dist
|
||||
Summary: The Honkers Railway launcher for Linux with automatic patching and telemetry disabling
|
||||
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
%global name_pretty %{quote:Prism Launcher (Nightly)}
|
||||
%global appid org.prismlauncher.PrismLauncher-nightly
|
||||
|
||||
%global commit 1ad0628ca3a4622211fd2b3f1491b04c93391465
|
||||
%global commit e334a8c0f4fe3811e35324424d8dc1ecf9af4b3e
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global commit_date 20260213
|
||||
%global commit_date 20260215
|
||||
%global snapshot_info %{commit_date}.%{shortcommit}
|
||||
|
||||
# Change this variables if you want to use custom keys
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
%global build_platform terra
|
||||
|
||||
Name: prismlauncher
|
||||
Version: 10.0.2
|
||||
Version: 10.0.5
|
||||
Release: 1%?dist
|
||||
Summary: Minecraft launcher with ability to manage multiple instances
|
||||
# see COPYING.md for more information
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10
|
||||
%global commit 04933b773a64b8d6437e4c2280e4033e107cb86a
|
||||
%global commit 97fed258ed3287a17c6b798fd7ffe16508bd69d9
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 2.3.1
|
||||
%global commit_date 20260213
|
||||
%global commit_date 20260214
|
||||
%global debug_package %nil
|
||||
|
||||
Name: nim-nightly
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global _desc A rough port of Node.js's EventEmitter to Python with a few tricks of its own.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 13.0.0
|
||||
Version: 13.0.1
|
||||
Release: 1%?dist
|
||||
Summary: A rough port of Node.js's EventEmitter to Python with a few tricks of its own
|
||||
License: MIT
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit da3de3ac0950f967d63a97a2d27de2ab8c1f4fa3
|
||||
%global commit_date 20260213
|
||||
%global commit 7ad79d00cc532173a204de0405f04daeafc655f3
|
||||
%global commit_date 20260215
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global pypi_name types-colorama
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
version=0.16.0-dev.2535+b5bd49460
|
||||
version=0.16.0-dev.2611+f996d2866
|
||||
|
||||
mirrors=()
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
%define llvm_compat 20
|
||||
%endif
|
||||
%global llvm_version 20.0.0
|
||||
%global ver 0.16.0-dev.2535+b5bd49460
|
||||
%global ver 0.16.0-dev.2611+f996d2866
|
||||
%bcond bootstrap 1
|
||||
%bcond docs %{without bootstrap}
|
||||
%bcond test 1
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
%global zig_cache_dir %{builddir}/zig-cache
|
||||
|
||||
Name: zig-master
|
||||
Version: 0.16.0~dev.2535+b5bd49460
|
||||
Version: 0.16.0~dev.2611+f996d2866
|
||||
Release: 2%?dist
|
||||
Summary: Master builds of the Zig language
|
||||
License: MIT AND NCSA AND LGPL-2.1-or-later AND LGPL-2.1-or-later WITH GCC-exception-2.0 AND GPL-2.0-or-later AND GPL-2.0-or-later WITH GCC-exception-2.0 AND BSD-3-Clause AND Inner-Net-2.0 AND ISC AND LicenseRef-Fedora-Public-Domain AND GFDL-1.1-or-later AND ZPL-2.1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 756aa56d036599e53a563afdfa8b4d143b95f9b4
|
||||
%global commit f6f09396f55c064110d7e41d7a6aa57be6d843d2
|
||||
%global shortcommit %{sub %{commit} 1 7}
|
||||
%global commit_date 20260207
|
||||
%global commit_date 20260215
|
||||
|
||||
Name: vgmstream
|
||||
Version: 0~%{commit_date}git.%shortcommit
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 38acdea488cae1a24591be7b0e6737f58b54f725
|
||||
%global commit_date 20260126
|
||||
%global commit 49fbf32f330b324c9b9d8582e80582378fc57e3c
|
||||
%global commit_date 20260214
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
# Exclude input files from mangling
|
||||
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global debug_package %{nil}
|
||||
%global commit 23c3b8b3d35ae3cd5acdbc42aeb6986472ad28e2
|
||||
%global commit 3e66556da07d0fa759f5e8d03bac71351ab3eea5
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260201
|
||||
%global commit_date 20260215
|
||||
|
||||
|
||||
%global patches %{_datadir}/src/nvidia-patch
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 441c9060a9d91d54f2b9fb3b6ed622b48fbbda2e
|
||||
%global commit_date 20260213
|
||||
%global commit 02ac25638105d17d822500b735cd5cb2ac8d2414
|
||||
%global commit_date 20260214
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global crate readymade
|
||||
Name: readymade-git
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 28f1ebdd7b3b893002390805cf6aeb3d6f65d085
|
||||
%global commit 56483858768257405947d5f43a765770368fa416
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260213
|
||||
%global commitdate 20260214
|
||||
%global ver 1.0.20
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: vicinae
|
||||
Version: 0.19.7
|
||||
Version: 0.19.8
|
||||
Release: 1%?dist
|
||||
License: GPL-3.0
|
||||
URL: https://docs.vicinae.com
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
%global commit 4413a0225966c2f9d19f0bcbcd754e2d62d56941
|
||||
%global commit_date 20260213
|
||||
%global shortcommit %{sub %{commit} 0 7}
|
||||
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: alipad
|
||||
Version: 0~%{commit_date}git.%{shortcommit}
|
||||
Release: 1%?dist
|
||||
Summary: Robust event check-in system
|
||||
URL: https://git.sr.ht/~malicean/alipad
|
||||
Source0: https://git.sr.ht/~malicean/alipad/archive/%{commit}.tar.gz
|
||||
License: BSD-3-Clause
|
||||
BuildRequires: cargo-rpm-macros cargo gcc rust-udev-devel
|
||||
|
||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
%description
|
||||
A low-budget and robust event check-in system built atop a Proxmark3 and
|
||||
set of ISO/IEC 14443-3 compliant smartcards which your attendees bring
|
||||
(NTAG, Mifare, Ventra, generic NFC, and more), in order to simplify and
|
||||
speed-up the check-in process. To the attendees, it's faster, easier, and has a charm!
|
||||
|
||||
%prep
|
||||
%autosetup -n %{name}-%{commit}
|
||||
%cargo_prep_online
|
||||
|
||||
%build
|
||||
%cargo_build
|
||||
|
||||
%install
|
||||
install -Dm755 target/rpm/alipad %{buildroot}%{_bindir}/alipad
|
||||
|
||||
%files
|
||||
%doc README.md CHANGELOG.md
|
||||
%license LICENSE
|
||||
%{_bindir}/alipad
|
||||
|
||||
%changelog
|
||||
* Sat Feb 14 2026 Owen Zimmerman <owen@fyralabs.com>
|
||||
- Initial commit
|
||||
@@ -0,0 +1,5 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "alipad.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
// Empty until sourcehut update script
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: bdf2sfd
|
||||
Version: 1.1.9
|
||||
Version: 1.2.0
|
||||
Release: 1%?dist
|
||||
Summary: BDF to SFD converter, allowing to vectorize bitmap fonts
|
||||
License: BSD-2-Clause
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global crate mise
|
||||
|
||||
Name: rust-mise
|
||||
Version: 2026.2.11
|
||||
Version: 2026.2.13
|
||||
Release: 1%?dist
|
||||
Summary: Front-end to your dev env
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global pypi_name copyparty
|
||||
|
||||
Name: %{pypi_name}
|
||||
Version: 1.20.6
|
||||
Version: 1.20.7
|
||||
Release: 1%?dist
|
||||
Summary: Portable, featureful, and fast file server
|
||||
URL: https://github.com/9001/copyparty
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: electron
|
||||
%electronmeta
|
||||
Version: 40.4.0
|
||||
Version: 40.4.1
|
||||
Release: 1%?dist
|
||||
Summary: Build cross platform desktop apps with web technologies
|
||||
License: %{electron_license}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# https://github.com/nats-io/natscli
|
||||
%global goipath github.com/nats-io/natscli
|
||||
%global commit dbc03310ec4be56f9e93871fd5940ff8eed21a3c
|
||||
%global commit_date 20260211
|
||||
%global commit 2ceb7ec4c190ea026bb4e9cfe49f489c67eb515d
|
||||
%global commit_date 20260214
|
||||
%global shortcommit %{sub %{commit} 1 7}
|
||||
|
||||
%gometa -f
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit bdbc6f88cbc917b4ddf33b440aff36c36370d467
|
||||
%global commit_date 20260211
|
||||
%global commit 58d5da926965ad78fb863abacdd73a00dea022a1
|
||||
%global commit_date 20260214
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
Name: rpi-utils
|
||||
|
||||
@@ -11,6 +11,8 @@ SourceLicense: GPL-3.0-or-later
|
||||
License: ((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 GPL-3.0 AND GPL-3.0-only AND MIT AND (MIT OR Apache-2.0) AND (MIT OR Zlib OR Apache-2.0) AND MPL-2.0 AND (Unlicense OR MIT) AND (Zlib OR Apache-2.0 OR MIT)
|
||||
URL: https://crates.io/crates/topgrade
|
||||
Source: %crates_source
|
||||
# Automatically generated patch to strip dependencies and normalize metadata
|
||||
Patch: topgrade-fix-metadata-auto.diff
|
||||
|
||||
BuildRequires: cargo
|
||||
BuildRequires: rust
|
||||
@@ -43,7 +45,7 @@ Summary: %{summary}
|
||||
%{_bindir}/topgrade
|
||||
|
||||
%prep
|
||||
%autosetup -n %{crate}-%{version}
|
||||
%autosetup -n %{crate}-%{version} -p1
|
||||
%cargo_prep_online
|
||||
|
||||
%build
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
--- topgrade-16.9.0/Cargo.toml 2006-07-24T01:21:28+00:00
|
||||
+++ topgrade-16.9.0/Cargo.toml 2026-02-13T07:55:20.141538+00:00
|
||||
@@ -255,29 +255,6 @@
|
||||
default-features = false
|
||||
package = "self_update"
|
||||
|
||||
-[target."cfg(windows)".dependencies.is_elevated]
|
||||
-version = "~0.1"
|
||||
-
|
||||
-[target."cfg(windows)".dependencies.parselnk]
|
||||
-version = "~0.1"
|
||||
-
|
||||
-[target."cfg(windows)".dependencies.self_update_crate]
|
||||
-version = "~0.42"
|
||||
-features = [
|
||||
- "archive-zip",
|
||||
- "compression-zip-deflate",
|
||||
- "rustls",
|
||||
-]
|
||||
-optional = true
|
||||
-default-features = false
|
||||
-package = "self_update"
|
||||
-
|
||||
-[target."cfg(windows)".dependencies.windows]
|
||||
-version = "~0.62"
|
||||
-features = ["Win32_System_Console"]
|
||||
-
|
||||
-[target."cfg(windows)".dependencies.windows-registry]
|
||||
-version = "~0.6"
|
||||
-
|
||||
[profile.release]
|
||||
lto = true
|
||||
+
|
||||
Reference in New Issue
Block a user