mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-20 10:30:39 +00:00
Compare commits
70 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0fc883e1b3 | |||
| dd749f8ac5 | |||
| 3aa382d9fd | |||
| be9bc0d096 | |||
| 1aa6a1c1c1 | |||
| 107c771cb2 | |||
| 14001cbb71 | |||
| dc15e1e675 | |||
| 2128bde256 | |||
| d87e8d9d42 | |||
| 3d443cfe71 | |||
| 045ea2080e | |||
| cde0d643d7 | |||
| 058dda85e2 | |||
| c155b632de | |||
| 09050f244c | |||
| 6889968620 | |||
| f274fda030 | |||
| ca4a7d8373 | |||
| 301f470fda | |||
| 1dba060957 | |||
| 50eaa100a7 | |||
| b166317d0c | |||
| 756254e09a | |||
| da86f4d6d6 | |||
| 4201279877 | |||
| 8bde54bc16 | |||
| f9fa7efc81 | |||
| 21e33b9bfa | |||
| 9561429385 | |||
| 5a1ee18acf | |||
| 38fe2370f6 | |||
| bafc595016 | |||
| 1ca1c6a510 | |||
| 948268c681 | |||
| f87a9abea0 | |||
| c397eb7fc1 | |||
| 2e698c4efb | |||
| 06012fc940 | |||
| 5340feaf23 | |||
| 1c04a2a571 | |||
| 6facd4e696 | |||
| 2809ed8126 | |||
| c6f3b43bb1 | |||
| a24889a791 | |||
| 4f43c854ba | |||
| 9b26ce7e83 | |||
| ded598bc1e | |||
| 4b90092202 | |||
| 3e76f8a3bf | |||
| 36ea66b8ab | |||
| 4646710613 | |||
| d132716f02 | |||
| 5b93b37584 | |||
| 99f6c6f56f | |||
| 99ba8529d3 | |||
| f2891bce82 | |||
| 65affe82e8 | |||
| ad408fc4ed | |||
| 0742986f89 | |||
| e2b57aafa0 | |||
| 2a1e3c3b89 | |||
| 6fe79fe2eb | |||
| cf9093bf05 | |||
| 7c627d002f | |||
| 2ae5fc66e3 | |||
| 3a1e29f1b1 | |||
| 1b6447cd8d | |||
| e8a969effe | |||
| 5072594690 |
@@ -29,6 +29,15 @@ jobs:
|
||||
ref: f${{ matrix.version }}
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Setup build environment
|
||||
run: |
|
||||
sed -i 's/.fc%{fedora}/.fcrawhide/g' /usr/lib/rpm/macros.d/macros.dist
|
||||
cat<<EOF >> /etc/dnf/dnf.conf
|
||||
gpgcheck=1
|
||||
install_weak_deps=0
|
||||
max_parallel_downloads=20
|
||||
EOF
|
||||
|
||||
- name: Build anda-srpm-macros
|
||||
run: |
|
||||
mkdir -p anda-build/rpm/rpms
|
||||
@@ -37,7 +46,7 @@ jobs:
|
||||
dnf5 install -y ./anda-build/rpm/rpms/anda-*.rpm
|
||||
|
||||
- name: Install build dependencies
|
||||
run: dnf5 builddep -y anda/terra/{mock-configs,srpm-macros}/*.spec anda/{buildsys/anda,tools/subatomic}/*.spec
|
||||
run: dnf5 builddep -y anda/terra/{mock-configs,srpm-macros,appstream-helper}/*.spec anda/{buildsys/anda,tools/subatomic}/*.spec
|
||||
|
||||
- name: Install Anda
|
||||
run: |
|
||||
|
||||
@@ -0,0 +1,49 @@
|
||||
%global debug_package %{nil}
|
||||
|
||||
%ifarch x86_64
|
||||
%global op_arch amd64
|
||||
%elifarch aarch64
|
||||
%global op_arch arm64
|
||||
%endif
|
||||
|
||||
Name: 1password-cli
|
||||
Version: 2.34.1
|
||||
Release: 1%{?dist}
|
||||
Summary: 1Password command-line tool
|
||||
|
||||
Packager: Cappy Ishihara <cappy@fyralabs.com>
|
||||
|
||||
License: LicenseRef-1Password-Proprietary
|
||||
URL: https://developer.1password.com/docs/cli/
|
||||
Source0: https://cache.agilebits.com/dist/1P/op2/pkg/v%{version}/op_linux_%{op_arch}_v%{version}.zip
|
||||
Source1: 1password-cli.sysusers
|
||||
ExclusiveArch: x86_64 aarch64
|
||||
|
||||
BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: unzip
|
||||
Recommends: 1password
|
||||
Recommends: polkit
|
||||
|
||||
%description
|
||||
1Password CLI brings 1Password to your terminal.
|
||||
|
||||
%prep
|
||||
%autosetup -c
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
install -Dm0755 op %{buildroot}%{_bindir}/op
|
||||
chmod 2755 %{buildroot}%{_bindir}/op
|
||||
install -Dm0644 %{SOURCE1} %{buildroot}%{_sysusersdir}/%{name}.conf
|
||||
|
||||
%pre
|
||||
%sysusers_create_package %{name} %{SOURCE1}
|
||||
|
||||
%files
|
||||
%attr(2755,root,onepassword-cli) %{_bindir}/op
|
||||
%{_sysusersdir}/%{name}.conf
|
||||
|
||||
%changelog
|
||||
* Fri Jun 19 2026 Cappy Ishihara <cappy@cappuchino.xyz>
|
||||
- Initial Package
|
||||
@@ -0,0 +1 @@
|
||||
g onepassword-cli -
|
||||
@@ -0,0 +1,6 @@
|
||||
project pkg {
|
||||
arches = ["x86_64", "aarch64"]
|
||||
rpm {
|
||||
spec = "1password-cli.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
let html = get("https://app-updates.agilebits.com/product_history/CLI2");
|
||||
let versions = [];
|
||||
|
||||
for matches in find_all(`op_linux_amd64_v([\d]+\.[\d]+\.[\d]+)\.zip`, html) {
|
||||
versions += matches[1];
|
||||
}
|
||||
|
||||
versions.dedup();
|
||||
|
||||
let latest = "";
|
||||
let latest_major = 0;
|
||||
let latest_minor = 0;
|
||||
let latest_patch = 0;
|
||||
|
||||
for version in versions {
|
||||
let parts = version.split(".");
|
||||
let major = parts[0].parse_int();
|
||||
let minor = parts[1].parse_int();
|
||||
let patch = parts[2].parse_int();
|
||||
|
||||
if latest == "" ||
|
||||
major > latest_major ||
|
||||
major == latest_major && minor > latest_minor ||
|
||||
major == latest_major && minor == latest_minor && patch > latest_patch {
|
||||
latest = version;
|
||||
latest_major = major;
|
||||
latest_minor = minor;
|
||||
latest_patch = patch;
|
||||
}
|
||||
}
|
||||
|
||||
if latest == "" {
|
||||
print("E: no 1Password CLI version found");
|
||||
terminate();
|
||||
}
|
||||
|
||||
rpm.version(latest);
|
||||
@@ -0,0 +1,105 @@
|
||||
%global debug_package %{nil}
|
||||
%global policy_owners unix-group:wheel
|
||||
%global appdir %{_datadir}/1password
|
||||
|
||||
%ifarch x86_64
|
||||
%global tararch x64
|
||||
%elifarch aarch64
|
||||
%global tararch arm64
|
||||
%endif
|
||||
|
||||
Name: 1password
|
||||
Version: 8.12.24
|
||||
Release: 1%{?dist}
|
||||
Summary: Password manager and secure wallet
|
||||
|
||||
Packager: Cappy Ishihara <cappy@fyralabs.com>
|
||||
|
||||
License: LicenseRef-1Password-Proprietary
|
||||
URL: https://1password.com
|
||||
Source0: https://downloads.1password.com/linux/tar/stable/%{_arch}/%{name}-%{version}.%{tararch}.tar.gz
|
||||
Source1: https://downloads.1password.com/linux/tar/stable/%{_arch}/%{name}-%{version}.%{tararch}.tar.gz.sig
|
||||
Source2: 1password.sysusers
|
||||
ExclusiveArch: x86_64 aarch64
|
||||
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: systemd-rpm-macros
|
||||
Requires: desktop-file-utils
|
||||
Requires: gtk3
|
||||
Requires: hicolor-icon-theme
|
||||
Requires: nss
|
||||
Requires: polkit
|
||||
Requires: xdg-utils
|
||||
|
||||
%description
|
||||
%{summary}
|
||||
|
||||
%prep
|
||||
%autosetup -n %{name}-%{version}.%{tararch}
|
||||
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
# Install icons
|
||||
install -Dm0644 resources/icons/hicolor/32x32/apps/1password.png -t %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/
|
||||
install -Dm0644 resources/icons/hicolor/64x64/apps/1password.png -t %{buildroot}%{_datadir}/icons/hicolor/64x64/apps/
|
||||
install -Dm0644 resources/icons/hicolor/256x256/apps/1password.png -t %{buildroot}%{_datadir}/icons/hicolor/256x256/apps/
|
||||
install -Dm0644 resources/icons/hicolor/512x512/apps/1password.png -t %{buildroot}%{_datadir}/icons/hicolor/512x512/apps/
|
||||
|
||||
sed 's|${POLICY_OWNERS}|%{policy_owners}|g' \
|
||||
com.1password.1Password.policy.tpl > com.1password.1Password.policy
|
||||
install -Dm0644 com.1password.1Password.policy -t %{buildroot}%{_datadir}/polkit-1/actions/
|
||||
install -Dm0644 resources/custom_allowed_browsers -t %{buildroot}%{_sysconfdir}/1password/
|
||||
install -Dm0644 resources/custom_allowed_browsers -t %{buildroot}%{_datadir}/doc/1password/examples/
|
||||
sed -i 's|^Exec=/opt/1Password/1password|Exec=%{_bindir}/1password|' resources/1password.desktop
|
||||
desktop-file-install --dir=%{buildroot}%{_datadir}/applications resources/1password.desktop
|
||||
install -Dm0644 %{SOURCE2} %{buildroot}%{_sysusersdir}/%{name}.conf
|
||||
|
||||
# Install application payload under /usr for immutable-system compatibility.
|
||||
mkdir -p %{buildroot}%{appdir}
|
||||
cp -a . %{buildroot}%{appdir}/
|
||||
rm -f %{buildroot}%{appdir}/com.1password.1Password.policy \
|
||||
%{buildroot}%{appdir}/com.1password.1Password.policy.tpl \
|
||||
%{buildroot}%{appdir}/after-install.sh \
|
||||
%{buildroot}%{appdir}/after-remove.sh \
|
||||
%{buildroot}%{appdir}/install.sh \
|
||||
%{buildroot}%{appdir}/install_biometrics_policy.sh
|
||||
|
||||
mkdir -p %{buildroot}%{_bindir}
|
||||
ln -sr %{buildroot}%{appdir}/%{name} %{buildroot}%{_bindir}/%{name}
|
||||
chmod 4755 %{buildroot}%{appdir}/chrome-sandbox
|
||||
chmod 2755 %{buildroot}%{appdir}/1Password-BrowserSupport
|
||||
if [ -f %{buildroot}%{appdir}/onepassword-mcp ]; then
|
||||
chmod 2755 %{buildroot}%{appdir}/onepassword-mcp
|
||||
fi
|
||||
find %{buildroot}%{appdir} -type f \
|
||||
! -name chrome-sandbox \
|
||||
! -name 1Password-BrowserSupport \
|
||||
! -name onepassword-mcp \
|
||||
-printf '/%%P\n' | sed "s|^/|%{appdir}/|" > app.files
|
||||
|
||||
%pre
|
||||
%sysusers_create_package %{name} %{SOURCE2}
|
||||
|
||||
%files -f app.files
|
||||
%{_bindir}/%{name}
|
||||
%dir %{appdir}
|
||||
%attr(4755,root,root) %{appdir}/chrome-sandbox
|
||||
%attr(2755,root,onepassword) %{appdir}/1Password-BrowserSupport
|
||||
%attr(2755,root,onepassword-mcp) %{appdir}/onepassword-mcp
|
||||
%{_datadir}/icons/hicolor/32x32/apps/1password.png
|
||||
%{_datadir}/icons/hicolor/64x64/apps/1password.png
|
||||
%{_datadir}/icons/hicolor/256x256/apps/1password.png
|
||||
%{_datadir}/icons/hicolor/512x512/apps/1password.png
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
%{_datadir}/polkit-1/actions/com.1password.1Password.policy
|
||||
%{_sysusersdir}/%{name}.conf
|
||||
%config(noreplace) %{_sysconfdir}/1password/custom_allowed_browsers
|
||||
%{_datadir}/doc/1password/
|
||||
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jun 19 2026 Cappy Ishihara <cappy@cappuchino.xyz>
|
||||
- Initial Package
|
||||
@@ -0,0 +1,2 @@
|
||||
g onepassword -
|
||||
g onepassword-mcp -
|
||||
@@ -0,0 +1,7 @@
|
||||
project pkg {
|
||||
arches = ["x86_64", "aarch64"]
|
||||
rpm {
|
||||
spec = "1password.spec"
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
let xml = get("https://releases.1password.com/linux/stable/index.xml");
|
||||
|
||||
let latest = "";
|
||||
let latest_major = 0;
|
||||
let latest_minor = 0;
|
||||
let latest_patch = 0;
|
||||
|
||||
for title in find_all(`<title>[^<]*</title>`, xml) {
|
||||
let matches = find_all(`[\d]+\.[\d]+\.[\d]+`, title[0]);
|
||||
if matches.len() == 0 {
|
||||
continue;
|
||||
}
|
||||
|
||||
let version = matches[0][0];
|
||||
let parts = version.split(".");
|
||||
let major = parts[0].parse_int();
|
||||
let minor = parts[1].parse_int();
|
||||
let patch = parts[2].parse_int();
|
||||
|
||||
if latest == "" ||
|
||||
major > latest_major ||
|
||||
major == latest_major && minor > latest_minor ||
|
||||
major == latest_major && minor == latest_minor && patch > latest_patch {
|
||||
latest = version;
|
||||
latest_major = major;
|
||||
latest_minor = minor;
|
||||
latest_patch = patch;
|
||||
}
|
||||
}
|
||||
|
||||
if latest == "" {
|
||||
print("E: no 1Password version found");
|
||||
terminate();
|
||||
}
|
||||
|
||||
rpm.version(latest);
|
||||
@@ -0,0 +1,128 @@
|
||||
%global pypi_name arctis-sound-manager
|
||||
%global _desc Linux GUI for SteelSeries Arctis headsets — Nova Pro Wireless & Wired, Nova Pro Omni, Nova Elite, Nova 7/7P/5/3, Arctis 7/7+/9/Pro Wireless. Device settings, Sonar EQ, 4-channel Game/Chat/Media mixer, PipeWire routing.
|
||||
|
||||
%global arctis_sound_manager_services arctis-manager.service arctis-video-router.service arctis-gui.service
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 1.1.79
|
||||
Release: 1%{?dist}
|
||||
Summary: GUI for SteelSeries Arctis headsets
|
||||
License: GPL-3.0-or-later
|
||||
# GitHub pages URL 404s
|
||||
URL: https://github.com/loteran/Arctis-Sound-Manager
|
||||
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
|
||||
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-wheel
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-pip
|
||||
BuildRequires: python3-importlib-metadata
|
||||
BuildRequires: python3-uv-build
|
||||
BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: python3-ruamel-yaml
|
||||
BuildRequires: desktop-file-utils
|
||||
|
||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
Provides: Arctis-Sound-Manager
|
||||
|
||||
%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 Arctis-Sound-Manager-%{version}
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%pyproject_save_files arctis_sound_manager
|
||||
|
||||
install -Dm644 /dev/null %{buildroot}%{_udevrulesdir}/91-steelseries-arctis.rules
|
||||
python3 scripts/generate_udev_rules.py src/arctis_sound_manager/devices/ \
|
||||
> %{buildroot}%{_udevrulesdir}/91-steelseries-arctis.rules
|
||||
|
||||
# Systemd user services (single source of truth in systemd/, not heredocs)
|
||||
install -Dm644 systemd/arctis-manager.service %{buildroot}%{_userunitdir}/arctis-manager.service
|
||||
install -Dm644 systemd/arctis-video-router.service %{buildroot}%{_userunitdir}/arctis-video-router.service
|
||||
install -Dm644 systemd/arctis-gui.service %{buildroot}%{_userunitdir}/arctis-gui.service
|
||||
|
||||
# dinit service templates
|
||||
install -Dm644 dinit/arctis-manager %{buildroot}%{_datadir}/%{name}/dinit/arctis-manager
|
||||
install -Dm644 dinit/arctis-video-router %{buildroot}%{_datadir}/%{name}/dinit/arctis-video-router
|
||||
install -Dm644 dinit/arctis-gui %{buildroot}%{_datadir}/%{name}/dinit/arctis-gui
|
||||
install -Dm644 dinit/pipewire-filter-chain %{buildroot}%{_datadir}/%{name}/dinit/pipewire-filter-chain
|
||||
install -Dm755 scripts/asm-diag-dinit.py %{buildroot}%{_bindir}/asm-diag-dinit
|
||||
|
||||
# Desktop entry
|
||||
install -Dm644 src/arctis_sound_manager/desktop/ArctisManager.desktop \
|
||||
%{buildroot}%{_datadir}/applications/ArctisManager.desktop
|
||||
|
||||
# Icon
|
||||
install -Dm644 src/arctis_sound_manager/gui/images/steelseries_logo.svg \
|
||||
%{buildroot}%{_scalableiconsdir}/arctis-manager.svg
|
||||
|
||||
# PipeWire configs
|
||||
install -Dm644 scripts/pipewire/10-arctis-virtual-sinks.conf \
|
||||
%{buildroot}%{_datadir}/%{name}/pipewire/10-arctis-virtual-sinks.conf
|
||||
install -Dm644 scripts/pipewire/sink-virtual-surround-7.1-hesuvi.conf \
|
||||
%{buildroot}%{_datadir}/%{name}/pipewire/sink-virtual-surround-7.1-hesuvi.conf
|
||||
|
||||
# filter-chain.service (bundled for distros that don't ship one)
|
||||
install -Dm644 scripts/filter-chain.service \
|
||||
%{buildroot}%{_datadir}/%{name}/filter-chain.service
|
||||
|
||||
# First-run autostart (triggers asm-setup on first graphical login)
|
||||
install -Dm644 debian/asm-first-run.desktop \
|
||||
%{buildroot}%{_sysconfdir}/xdg/autostart/asm-first-run.desktop
|
||||
|
||||
%check
|
||||
%desktop_file_validate %{buildroot}%{_appsdir}/ArctisManager.desktop
|
||||
|
||||
%post
|
||||
%systemd_user_post %{arctis_sound_manager_services}
|
||||
|
||||
%preun
|
||||
%systemd_user_preun %{arctis_sound_manager_services}
|
||||
|
||||
%postun
|
||||
%systemd_postun_with_restart %{arctis_sound_manager_services}
|
||||
|
||||
%files -n python3-%{pypi_name} -f %{pyproject_files}
|
||||
%doc README.md CONTRIBUTING.md CHANGELOG.md
|
||||
%license LICENSE
|
||||
%{_bindir}/asm-cli
|
||||
%{_bindir}/asm-daemon
|
||||
%{_bindir}/asm-diag-dinit
|
||||
%{_bindir}/asm-gui
|
||||
%{_bindir}/asm-router
|
||||
%{_bindir}/asm-setup
|
||||
%{_udevrulesdir}/91-steelseries-arctis.rules
|
||||
%{_userunitdir}/arctis-manager.service
|
||||
%{_userunitdir}/arctis-video-router.service
|
||||
%{_userunitdir}/arctis-gui.service
|
||||
%{_datadir}/%{name}/dinit/arctis-manager
|
||||
%{_datadir}/%{name}/dinit/arctis-video-router
|
||||
%{_datadir}/%{name}/dinit/pipewire-filter-chain
|
||||
%{_bindir}/asm-diag-dinit
|
||||
%{_appsdir}/ArctisManager.desktop
|
||||
%{_scalableiconsdir}/arctis-manager.svg
|
||||
%{_datadir}/%{name}/pipewire/10-arctis-virtual-sinks.conf
|
||||
%{_datadir}/%{name}/pipewire/sink-virtual-surround-7.1-hesuvi.conf
|
||||
%{_datadir}/%{name}/filter-chain.service
|
||||
%{_sysconfdir}/xdg/autostart/asm-first-run.desktop
|
||||
%{_datadir}/python-arctis-sound-manager/dinit/arctis-gui
|
||||
|
||||
%changelog
|
||||
* Mon Jun 15 2026 Owen Zimmerman <owen@fyralabs.com>
|
||||
- Initial commit
|
||||
@@ -0,0 +1,6 @@
|
||||
project pkg {
|
||||
arches = ["x86_64"]
|
||||
rpm {
|
||||
spec = "Arctis-Sound-Manager.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(pypi("arctis-sound-manager"));
|
||||
@@ -1,9 +1,9 @@
|
||||
%global xurl https://files.pythonhosted.org/packages/2b/bc/36972ebb0c09effa41a1dc5f1e9c19b9fd85675cc3196f43559eeb3d0ceb/anki-25.9.4-cp39-abi3-manylinux_2_36_x86_64.whl
|
||||
%global aurl https://files.pythonhosted.org/packages/cb/8e/42e0a2e8f8e6da78571ff8e79dd65eef1602390d03349839a2f4397fdcb5/anki-25.9.4-cp39-abi3-manylinux_2_36_aarch64.whl
|
||||
%global qurl https://files.pythonhosted.org/packages/83/a1/a8e8c5bc7dda44c0decfdeb128ca308d65d7beca1a4131230e9abadef439/aqt-25.9.4-py3-none-any.whl
|
||||
%global xurl https://files.pythonhosted.org/packages/9c/a2/05729090f54c5489c79dee9177fb1d99860850d311247256eebb360ec622/anki-26.5-cp310-abi3-manylinux_2_35_x86_64.whl
|
||||
%global aurl https://files.pythonhosted.org/packages/67/ec/354efa779cb7293aa5feb460f552ff475063149523afc1099433bbe8e65f/anki-26.5-cp310-abi3-manylinux_2_35_aarch64.whl
|
||||
%global qurl https://files.pythonhosted.org/packages/2b/a1/8978e8200afcc9a9b5440366e5d579f9fb1e959147004943cb0ec97cdf0f/aqt-26.5-py3-none-any.whl
|
||||
|
||||
Name: anki-bin
|
||||
Version: 25.9.4
|
||||
Version: 26.5
|
||||
Release: 1%{?dist}
|
||||
Summary: Flashcard program for using space repetition learning (Installed with wheel)
|
||||
License: AGPL-3.0-or-later AND GPL-3.0-or-later AND LGPL-3.0-or-later AND MIT AND BSD-3-Clause AND CC-BY-SA-3.0 AND CC-BY-3.0 AND Apache-2.0 AND CC-BY-2.5
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: anki-qt5
|
||||
Version: 25.09.4
|
||||
Version: 26.05
|
||||
Release: 1%{?dist}
|
||||
Summary: Flashcard program for using space repetition learning
|
||||
License: AGPL-3.0-or-later AND GPL-3.0-or-later AND LGPL-3.0-or-later AND MIT AND BSD-3-Clause AND CC-BY-SA-3.0 AND CC-BY-3.0 AND Apache-2.0 AND CC-BY-2.5
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: anki
|
||||
Version: 25.09.4
|
||||
Version: 26.05
|
||||
Release: 1%{?dist}
|
||||
Summary: Flashcard program for using space repetition learning
|
||||
License: AGPL-3.0-or-later AND GPL-3.0-or-later AND LGPL-3.0-or-later AND MIT AND BSD-3-Clause AND CC-BY-SA-3.0 AND CC-BY-3.0 AND Apache-2.0 AND CC-BY-2.5
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%undefine __brp_mangle_shebangs
|
||||
|
||||
Name: chdig
|
||||
Version: 26.5.1
|
||||
Version: 26.6.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Dig into ClickHouse with TUI interface
|
||||
URL: https://github.com/azat/chdig
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-canary-openasar
|
||||
Version: 1.0.1260
|
||||
Version: 1.0.1317
|
||||
Release: 1%{?dist}
|
||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||
License: MIT AND https://discord.com/terms
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: discord-canary
|
||||
Version: 1.0.1260
|
||||
Version: 1.0.1317
|
||||
Release: 1%{?dist}
|
||||
Summary: Free Voice and Text Chat for Gamers
|
||||
URL: discord.com
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||
|
||||
Name: discord-openasar
|
||||
Version: 1.0.142
|
||||
Version: 1.0.143
|
||||
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-ptb-openasar
|
||||
Version: 1.0.195
|
||||
Version: 1.0.196
|
||||
Release: 1%{?dist}
|
||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||
License: MIT AND https://discord.com/terms
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: discord-ptb
|
||||
Version: 1.0.195
|
||||
Version: 1.0.196
|
||||
Release: 1%{?dist}
|
||||
Summary: Free Voice and Text Chat for Gamers.
|
||||
URL: https://discord.com
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: discord
|
||||
Version: 1.0.142
|
||||
Version: 1.0.143
|
||||
Release: 1%{?dist}
|
||||
Summary: Free Voice and Text Chat for Gamers
|
||||
URL: https://discord.com
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#? https://github.com/flameshot-org/flameshot/blob/master/packaging/rpm/fedora/flameshot.spec
|
||||
|
||||
%global ver 13.3.0
|
||||
%global commit c47870ac95cdce9e63c19198b1f1c0bf57504cf6
|
||||
%global ver 14.0.0
|
||||
%global commit 550d4fae96dbea937d92a236605538f489e7b413
|
||||
%global shortcommit %{sub %{commit} 1 7}
|
||||
%global commit_date 20260615
|
||||
%global commit_date 20260620
|
||||
%global devel_name QtColorWidgets
|
||||
%global _distro_extra_cflags -fuse-ld=mold
|
||||
%global _distro_extra_cxxflags -fuse-ld=mold
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Name: fontviewer
|
||||
Epoch: 1
|
||||
Version: 1.2.0
|
||||
Release: 1%?dist
|
||||
Version: 1.3.0
|
||||
Release: 1%{?dist}
|
||||
Summary: View and install fonts
|
||||
|
||||
License: GPL-2.0
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
%endif
|
||||
|
||||
Name: helium-browser-bin
|
||||
Version: 0.13.3.1
|
||||
Version: 0.13.4.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Private, fast, and honest web browser based on Chromium
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global pure_protobuf_version 2.0.0
|
||||
|
||||
Name: komikku
|
||||
Version: 50.6.0
|
||||
Version: 50.7.0
|
||||
%forgemeta
|
||||
Release: 1%{?dist}
|
||||
Summary: A manga reader for GNOME
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "kontainer.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
%global appid io.github.DenysMb.Kontainer
|
||||
|
||||
Name: kontainer
|
||||
Version: 1.4.1
|
||||
Release: 1%?dist
|
||||
Summary: A Kirigami Distrobox GUI
|
||||
URL: https://github.com/DenysMb/Kontainer
|
||||
Source0: %{url}/archive/refs/tags/%{version}.tar.gz
|
||||
|
||||
License: GPL-3.0-or-later AND MIT AND CC0-1.0
|
||||
BuildRequires: cmake >= 3.20
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: extra-cmake-modules
|
||||
BuildRequires: pkgconfig(Qt6Quick)
|
||||
BuildRequires: kf6-kirigami-devel
|
||||
BuildRequires: kf6-ki18n-devel
|
||||
BuildRequires: kf6-kcoreaddons-devel
|
||||
BuildRequires: kf6-kiconthemes-devel
|
||||
BuildRequires: kf6-qqc2-desktop-style
|
||||
BuildRequires: kf6-kio-devel
|
||||
BuildRequires: kf6-kirigami-addons-devel
|
||||
BuildRequires: kf6-kirigami-addons
|
||||
|
||||
Requires: kf6-kirigami-addons
|
||||
Requires: kf6-qqc2-desktop-style
|
||||
Requires: distrobox
|
||||
|
||||
Packager: Cayden Granger <caydengranger@safri.cloud>
|
||||
|
||||
%description
|
||||
Graphical user interface for Distrobox container management.
|
||||
|
||||
A native KDE application for managing Distrobox containers with ease.
|
||||
|
||||
%prep
|
||||
%autosetup -n Kontainer-%{version}
|
||||
|
||||
%conf
|
||||
%cmake
|
||||
|
||||
%build
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%find_lang kontainer
|
||||
|
||||
%files -f kontainer.lang
|
||||
%license LICENSES/
|
||||
%doc README.md
|
||||
%{_bindir}/kontainer
|
||||
%{_appsdir}/%{appid}.desktop
|
||||
%{_scalableiconsdir}/%{appid}.svg
|
||||
%{_metainfodir}/%{appid}.metainfo.xml
|
||||
|
||||
%changelog
|
||||
* Fri Jun 19 2026 Cayden Granger <caydengranger@safri.cloud>
|
||||
- Initial package
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(gh_tag("DenysMb/Kontainer"))
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
Name: kopia
|
||||
%electronmeta -D
|
||||
Version: 0.23.0
|
||||
Version: 0.23.1
|
||||
Release: 1%{?dist}
|
||||
Summary: A backup/restore tool that allows you to create encrypted snapshots
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 7d933c652919899e46a6dfa0ac08dac36c492d95
|
||||
%global commit_date 20260614
|
||||
%global commit 158f537e7d4ce13ff7df49b6cb09c0cd27b8a517
|
||||
%global commit_date 20260616
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global debug_package %nil
|
||||
# terrible evil no good very bad hack
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Disable X11 for RHEL 10+
|
||||
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
|
||||
|
||||
%global commit 662d41093c27e52a6c0ae0bee00f59310d16aa83
|
||||
%global commit 2d5dfb343aeac72e4ee7303dbf34347a0ff4425d
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260615
|
||||
%global commit_date 20260618
|
||||
%global ver 0.41.0
|
||||
|
||||
Name: mpv-nightly
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
%global ver 2026-06-15
|
||||
%global ver 2026-06-20
|
||||
%global goodver %(echo %ver | sed 's/-//g')
|
||||
%global __brp_mangle_shebangs %{nil}
|
||||
%bcond_without mold
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: rustnet
|
||||
Version: 1.3.0
|
||||
Version: 1.4.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A cross-platform network monitoring terminal UI tool built with Rust
|
||||
License: Apache-2.0 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 (Apache-2.0 OR BSL-1.0) 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 OR Apache-2.0) AND BSL-1.0 AND ISC AND (LGPL-2.1-only OR BSD-2-Clause) AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Apache-2.0 OR Zlib) AND (MIT OR Zlib OR Apache-2.0) AND MIT AND (Unlicense OR MIT) AND (Zlib OR Apache-2.0 OR MIT) AND Zlib
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
Name: signal-desktop
|
||||
%electronmeta -aD
|
||||
Version: 8.14.0
|
||||
Version: 8.15.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A private messenger for Windows, macOS, and Linux
|
||||
URL: https://signal.org
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: gradle
|
||||
Version: 9.5.1
|
||||
Version: 9.6.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Powerful build system for the JVM
|
||||
URL: https://gradle.org/
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global crate mise
|
||||
|
||||
Name: rust-mise
|
||||
Version: 2026.6.10
|
||||
Version: 2026.6.11
|
||||
Release: 1%{?dist}
|
||||
Summary: Front-end to your dev env
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: budgie-extras
|
||||
Version: 2.2.3
|
||||
Release: 2%{?dist}
|
||||
Release: 3%{?dist}
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
Summary: Additional Budgie Desktop enhancements for user experience
|
||||
@@ -43,9 +43,9 @@ Requires: budgie-applet-dropby
|
||||
Requires: budgie-applet-fuzzyclock
|
||||
Requires: budgie-applet-kangaroo
|
||||
Requires: budgie-applet-network-manager
|
||||
Requires: budgie-applet-quickchar
|
||||
Requires: budgie-applet-quicknote
|
||||
Requires: budgie-applet-recentlyused
|
||||
Requires: budgie-applet-screencast
|
||||
Requires: budgie-applet-showtime
|
||||
Requires: budgie-applet-takeabreak
|
||||
Requires: budgie-applet-visualspace
|
||||
@@ -140,14 +140,6 @@ Summary: A fork of Wingpanel Network Indicator, ported to budgie desktop
|
||||
%description -n budgie-applet-network-manager
|
||||
%{summary}
|
||||
|
||||
%package -n budgie-applet-quickchar
|
||||
Requires: budgie-extras-common
|
||||
Requires: budgie-extras-daemon
|
||||
Summary: A mini-app to quickly choose and insert equivalents of ascii characters
|
||||
%description -n budgie-applet-quickchar
|
||||
QuickChar is a mini-app to quickly choose and insert equivalents of ascii
|
||||
characters. QuickChar is activated via the Budgie Menu.
|
||||
|
||||
%package -n budgie-applet-quicknote
|
||||
Requires: budgie-extras-common
|
||||
Summary: Applet providing simple notes capability for the Budgie Desktop
|
||||
@@ -234,15 +226,10 @@ find . -name "meson.build" -exec sed -i "s/dependency('libpeas-gtk-1.0')/depende
|
||||
%install
|
||||
%meson_install
|
||||
|
||||
# Remove absolute symlink and replace with relative symlink
|
||||
rm -f %{buildroot}%{_bindir}/quickchar
|
||||
|
||||
%fdupes %{buildroot}%{_datadir}/budgie-desktop/budgie-weathershow/weather_icons
|
||||
|
||||
%post
|
||||
|
||||
%{__ln_s} -fv %{_bindir}/quickchar %{_libdir}/quickchar/quickchar
|
||||
|
||||
%files
|
||||
|
||||
%files common
|
||||
@@ -301,9 +288,6 @@ rm -f %{buildroot}%{_bindir}/quickchar
|
||||
%files -n budgie-applet-network-manager
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-network-manager
|
||||
|
||||
%files -n budgie-applet-quickchar
|
||||
%ghost %{_bindir}/quickchar
|
||||
|
||||
%files -n budgie-applet-quicknote
|
||||
%{_libdir}/budgie-desktop/plugins/budgie-quicknote
|
||||
%{_datadir}/glib-2.0/schemas/org.ubuntubudgie.plugins.quicknote.gschema.xml
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
%global commit bd8475a3f103360945450a9fa8e8cf32034527b6
|
||||
%global commit_date 20260610
|
||||
%global commit fd9ad168cd5e5c8bb326262fc5983912b42dc500
|
||||
%global commit_date 20260618
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global extension multi-monitors-bar
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Name: plasma6-applet-appgrid
|
||||
Version: 1.9.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A modern fullscreen application launcher for KDE Plasma
|
||||
Version: 1.9.1
|
||||
Release: 2%{?dist}
|
||||
Summary: A modern application launcher for KDE Plasma
|
||||
# Main code: GPL-2.0-or-later
|
||||
# dev.xarbit.appgrid.metainfo.xml: CC0-1.0
|
||||
License: GPL-2.0-or-later AND CC0-1.0
|
||||
@@ -17,23 +17,27 @@ BuildRequires: kf6-rpm-macros
|
||||
BuildRequires: cmake(Qt6Quick)
|
||||
BuildRequires: cmake(Qt6Gui)
|
||||
BuildRequires: cmake(Qt6DBus)
|
||||
BuildRequires: cmake(KF6Config)
|
||||
BuildRequires: cmake(KF6Service)
|
||||
BuildRequires: cmake(KF6I18n)
|
||||
BuildRequires: cmake(KF6CoreAddons)
|
||||
BuildRequires: cmake(KF6KIO)
|
||||
BuildRequires: cmake(KF6WindowSystem)
|
||||
BuildRequires: cmake(KF6Package)
|
||||
BuildRequires: cmake(KF6Runner)
|
||||
BuildRequires: cmake(KF6IconThemes)
|
||||
BuildRequires: cmake(KF6GlobalAccel)
|
||||
BuildRequires: cmake(KF6Svg)
|
||||
BuildRequires: cmake(Plasma)
|
||||
BuildRequires: cmake(PlasmaQuick)
|
||||
BuildRequires: cmake(LayerShellQt)
|
||||
BuildRequires: cmake(KF6IconThemes)
|
||||
BuildRequires: cmake(PlasmaActivities)
|
||||
BuildRequires: cmake(LibKWorkspace)
|
||||
BuildRequires: cmake(PlasmaActivitiesStats)
|
||||
BuildRequires: cmake(AppStreamQt)
|
||||
|
||||
Requires: plasma-workspace
|
||||
Requires: plasma-desktop
|
||||
Requires: kf6-kiconthemes
|
||||
Requires: kf6-ksvg
|
||||
|
||||
%description
|
||||
A modern application launcher for KDE Plasma. It offers unified
|
||||
@@ -41,7 +45,7 @@ search, favorites, categories, and both a panel and a centered popup
|
||||
presentation.
|
||||
|
||||
%prep
|
||||
%autosetup -n plasma6-applet-appgrid-%{version}
|
||||
%autosetup -n %{name}-%{version}
|
||||
|
||||
%conf
|
||||
%cmake -DAPPGRID_VERSION_OVERRIDE=%{version}
|
||||
@@ -51,19 +55,20 @@ presentation.
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
%find_lang dev.xarbit.appgrid --with-kde
|
||||
%find_lang dev.xarbit.appgrid
|
||||
|
||||
%files -f dev.xarbit.appgrid.lang
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{_libdir}/qt6/plugins/plasma/applets/dev.xarbit.appgrid.so
|
||||
%{_libdir}/qt6/plugins/plasma/applets/dev.xarbit.appgrid.panel.so
|
||||
%{_datadir}/plasma/plasmoids/dev.xarbit.appgrid/
|
||||
%{_datadir}/plasma/plasmoids/dev.xarbit.appgrid.panel/
|
||||
%{_qt6_plugindir}/plasma/applets/dev.xarbit.appgrid.so
|
||||
%{_qt6_plugindir}/plasma/applets/dev.xarbit.appgrid.panel.so
|
||||
%{_metainfodir}/dev.xarbit.appgrid.metainfo.xml
|
||||
%{_datadir}/icons/hicolor/scalable/apps/dev.xarbit.appgrid.svg
|
||||
|
||||
%changelog
|
||||
* Mon Jun 15 2026 hilltty <49129010+hilltty@users.noreply.github.com> - 1.9.1-2
|
||||
- Sync with upstream
|
||||
|
||||
* Fri May 29 2026 hilltty <49129010+hilltty@users.noreply.github.com> - 1.8.5-1
|
||||
- pass version to cmake, update description
|
||||
|
||||
@@ -76,5 +81,5 @@ presentation.
|
||||
* Sat Apr 25 2026 hilltty <49129010+hilltty@users.noreply.github.com> - 1.7.8-1
|
||||
- Update to 1.7.8
|
||||
|
||||
* Thu Apr 24 2026 hilltty <49129010+hilltty@users.noreply.github.com> - 1.2.1-1
|
||||
* Fri Apr 24 2026 hilltty <49129010+hilltty@users.noreply.github.com> - 1.2.1-1
|
||||
- Initial package
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-app-launch
|
||||
%global commit c40aaeecbc1a1634f961ed6ce2b5f5cb0e5196e3
|
||||
%global commit d32f39df026806150ffcdc1dcabf08c74aa3f621
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-app-launch
|
||||
Version: 0.1.12
|
||||
Release: 1%?dist
|
||||
Version: 0.2.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Provides the Lomiri App Launch user space daemon
|
||||
License: GPL-3.0
|
||||
URL: https://gitlab.com/ubports/development/core/lomiri-app-launch
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-download-manager
|
||||
%global commit 0939d480c72871b3270cc529e16902fd41bfdda5
|
||||
%global commit 72b77e657d71f4a0b1b979d27321b7a909ff5ad7
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-download-manager
|
||||
Version: 0.3.1
|
||||
Version: 0.3.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Upload Download Manager for Lomiri
|
||||
License: LGPLv3
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-indicator-network
|
||||
%global commit 5c72fe38523e70377205cfa31c929d20fa8b29ac
|
||||
%global commit 3a7597e25d13e587188a33c881caa6ed4f055267
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-indicator-network
|
||||
Version: 1.2.0
|
||||
Release: 1%?dist
|
||||
Version: 1.99.0
|
||||
Release: 1%{?dist}
|
||||
Summary: The Network indicator for Ubuntu Touch
|
||||
License: GPL-3.0 AND LGPL-3.0
|
||||
URL: https://gitlab.com/ubports/development/core/lomiri-indicator-network
|
||||
|
||||
+2
-2
@@ -1,9 +1,9 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-settings-components
|
||||
%global commit 7bfc33d16ca234af8c88477cfbb2a95f3b7d8c9a
|
||||
%global commit 3fcff0a27374d675702671564018b10d3627bd1b
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-settings-components
|
||||
Version: 1.2.0
|
||||
Version: 1.2.1
|
||||
Release: 1%{?dist}
|
||||
Summary: The system settings components for Lomiri
|
||||
License: GPLv3 AND LGPLv3
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-system-settings
|
||||
%global commit e6b254aec0b827849bccab1337c3ca030168f892
|
||||
%global commit 611f0bdfc80f7934cf890b703a0b2ec112626a27
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-system-settings
|
||||
Version: 1.3.2
|
||||
Release: 1%?dist
|
||||
Version: 1.4.0
|
||||
Release: 1%{?dist}
|
||||
Summary: The system settings application for Lomiri
|
||||
License: GPLv3
|
||||
URL: https://gitlab.com/ubports/development/core/lomiri-system-settings
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri-ui-toolkit
|
||||
%global commit 32d39be4d36abc5de7dc3cc8ab2aecb74a7505ce
|
||||
%global commit 74d94596a8b273dc02dc6d5a44d614a16bb2383b
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri-ui-toolkit
|
||||
Version: 1.3.5906
|
||||
Version: 1.3.5907
|
||||
Release: 1%{?dist}
|
||||
Summary: QML components to ease the creation of beautiful applications in QML for Lomiri
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
%global forgeurl https://gitlab.com/ubports/development/core/lomiri
|
||||
%global commit 39840a77525e57f29cde9d6773bd2742feae2486
|
||||
%global commit d1bd01080e905154e9e8492673c8887ad5d87b7c
|
||||
%forgemeta
|
||||
|
||||
Name: lomiri
|
||||
Version: 0.5.0
|
||||
Release: 1%?dist
|
||||
Version: 0.6.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A convergent desktop environment by Ubports
|
||||
|
||||
License: GPLv3 AND LGPLv3
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global mangowc_ver 0.12.5-1
|
||||
|
||||
Name: mangowm
|
||||
Version: 0.14.2
|
||||
Version: 0.14.4
|
||||
Release: 1%{?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
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Name: nirius
|
||||
Version: 0.7.2
|
||||
Version: 0.7.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Utility commands for niri
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
%global ver 5.0.0
|
||||
|
||||
%global commit deaae83724bb5707124f98904e907a670d1ffc0f
|
||||
%global commit a7af75821ed8aa9e199b0d8044362dc882c78fbc
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260608
|
||||
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "noctalia-greeter.spec"
|
||||
}
|
||||
labels {
|
||||
nightly = 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
%global ver 1.0.0
|
||||
|
||||
%global commit db60c06b5f6ff5da4d5f1126eff312b2a41ef614
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commitdate 20260609
|
||||
|
||||
Name: noctalia-greeter
|
||||
Version: %{ver}^%{commitdate}git.%{shortcommit}
|
||||
Release: 1%{?dist}
|
||||
Summary: A minimal login greeter for greetd that matches the look and feel of Noctalia Shell.
|
||||
|
||||
License: shortcommit
|
||||
URL: https://github.com/noctalia-dev/noctalia-greeter
|
||||
Source0: https://github.com/noctalia-dev/noctalia-greeter/archive/%{commit}/noctalia-greeter-%{commit}.tar.gz
|
||||
|
||||
BuildRequires: cage
|
||||
BuildRequires: dbus
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: greetd
|
||||
BuildRequires: just
|
||||
BuildRequires: meson
|
||||
BuildRequires: pkgconfig(cairo)
|
||||
BuildRequires: pkgconfig(egl)
|
||||
BuildRequires: pkgconfig(fontconfig)
|
||||
BuildRequires: pkgconfig(freetype2)
|
||||
BuildRequires: pkgconfig(glesv2)
|
||||
BuildRequires: pkgconfig(glib-2.0)
|
||||
BuildRequires: pkgconfig(librsvg-2.0)
|
||||
BuildRequires: pkgconfig(libwebp)
|
||||
BuildRequires: pkgconfig(pango)
|
||||
BuildRequires: pkgconfig(wayland-client)
|
||||
BuildRequires: pkgconfig(wayland-protocols)
|
||||
BuildRequires: pkgconfig(xkbcommon)
|
||||
BuildRequires: polkit
|
||||
BuildRequires: wlr-randr
|
||||
|
||||
Requires: cage
|
||||
Requires: dbus
|
||||
Requires: greetd
|
||||
|
||||
Packager: Cypress Reed <cypress@fyralabs.com>
|
||||
|
||||
%description
|
||||
Noctalia Greeter is the screen you see before your desktop session starts.
|
||||
It lets you pick a user, enter your password, choose a Wayland session, and pick a color scheme - with the same visual language as Noctalia Shell.
|
||||
|
||||
%prep
|
||||
%autosetup -n noctalia-greeter-%{commit}
|
||||
|
||||
%conf
|
||||
export LDFLAGS="%{__global_ldflags} -Wl,-z,notext"
|
||||
%meson
|
||||
|
||||
%build
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
|
||||
%files
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%{_bindir}/%{name}
|
||||
%{_bindir}/%{name}-apply-appearance
|
||||
%{_bindir}/%{name}-print-greetd-config
|
||||
%{_bindir}/%{name}-session
|
||||
%{_datadir}/%{name}/*
|
||||
%{_datadir}/polkit-1/actions/org.noctalia.greeter.apply-appearance.policy
|
||||
|
||||
%changelog
|
||||
* Tue Jun 09 2026 Cypress Reed <cypress@fyralabs.com>
|
||||
- Port to terra from Fedora COPR lionheartp/Hyprland
|
||||
@@ -0,0 +1,6 @@
|
||||
rpm.global("commit", get("https://api.github.com/repos/noctalia-dev/noctalia-greeter/commits/main").json().sha);
|
||||
if rpm.changed() {
|
||||
rpm.global("ver", gh("noctalia-dev/noctalia-greeter"));
|
||||
rpm.global("commit_date", date());
|
||||
rpm.release();
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit ee69ac8e462224798c9c619b57a0699112fe7d7a
|
||||
%global commit_date 20260613
|
||||
%global commit 51ad7203edccbf9c40b68928cb5fe8ae1298a5be
|
||||
%global commit_date 20260619
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
Name: libsingularity
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit 4f2f5b032280ea391bf5e7af9b13ab5e0eb21340
|
||||
%global commit_date 20260425
|
||||
%global commit 75fb2822c9a025acf373541998d603cbbf6536f1
|
||||
%global commit_date 20260617
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
# Exclude input files from mangling
|
||||
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
%global __requires_exclude ^libaaudio\\.so.*|^libandroid\\.so.*|^libmediandk\\.so.*|^liblog\\.so.*|^libc\\.so.*|^libm\\.so.*|^libdl\\.so.*|^libcrypt\\.so.*|^libstdc\\+\\+\\.so.*|^libncursesw\\.so.*|^libtinfo\\.so.*|^libnsl\\.so.*|^libpanelw\\.so.*$
|
||||
|
||||
Name: android-studio-canary
|
||||
Version: 2026.1.2.7
|
||||
Version: 2026.1.3.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Official IDE for Android development (Canary build)
|
||||
License: Apache-2.0
|
||||
@@ -24,7 +24,7 @@ Packager: veuxit <erroor234@gmail.com>
|
||||
ExclusiveArch: x86_64
|
||||
URL: https://developer.android.com/studio/preview
|
||||
|
||||
%define suffixS quail2-canary7
|
||||
%define suffixS quail3-canary1
|
||||
|
||||
Source0: https://dl.google.com/dl/android/studio/ide-zips/%{version}/android-studio-%{suffixS}-linux.tar.gz
|
||||
|
||||
|
||||
@@ -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: 2026.1.1.9
|
||||
Version: 2026.1.1.10
|
||||
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 quail1-patch1
|
||||
%define suffixS quail1-patch2
|
||||
|
||||
Source0: https://dl.google.com/dl/android/studio/ide-zips/%{version}/android-studio-%{suffixS}-linux.tar.gz
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
%bcond test 0
|
||||
|
||||
Name: nodejs-%{npm_name}
|
||||
Version: 12.0.1
|
||||
Version: 12.0.4
|
||||
Release: 1%{?dist}
|
||||
Summary: Backport GitHub commits
|
||||
SourceLicense: Apache-2.0
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
%global crate create-tauri-app
|
||||
|
||||
Name: rust-create-tauri-app
|
||||
Version: 4.7.0
|
||||
Release: 2%?dist
|
||||
Version: 4.7.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Rapidly scaffold out a new tauri app project
|
||||
License: Apache-2.0 OR MIT
|
||||
URL: https://crates.io/crates/create-tauri-app
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 699387c2c16dd5723e8825ad608538142b07b86b
|
||||
%global commit f9c52d0cd9d0da0cd970a5863b94c655c285d83e
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global fulldate 2026-06-14
|
||||
%global fulldate 2026-06-18
|
||||
%global commit_date %(echo %{fulldate} | sed 's/-//g')
|
||||
%global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
|
||||
%global ver 1.3.2
|
||||
@@ -28,7 +28,7 @@ BuildRequires: ncurses
|
||||
BuildRequires: ncurses-devel
|
||||
BuildRequires: pandoc-cli
|
||||
BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: zig >= 0.14.0
|
||||
BuildRequires: zig >= 0.15.2
|
||||
BuildRequires: zig-rpm-macros
|
||||
BuildRequires: pkgconfig(blueprint-compiler)
|
||||
BuildRequires: pkgconfig(bzip2)
|
||||
@@ -196,7 +196,7 @@ This package contains the libraries and header files that are needed for develop
|
||||
|
||||
%prep
|
||||
/usr/bin/minisign -V -m %{SOURCE0} -x %{SOURCE1} -P %{public_key}
|
||||
%autosetup -n %{base_name}-%{ver}-main+%{shortcommit}
|
||||
%autosetup -n %{base_name}-%{ver}-main-+%{shortcommit}
|
||||
|
||||
ZIG_GLOBAL_CACHE_DIR="%{_zig_cache_dir}" ./nix/build-support/fetch-zig-cache.sh
|
||||
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "linsh.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
Name: linsh
|
||||
Version: 0.02
|
||||
Release: 1%{?dist}
|
||||
Summary: Linux shell
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://github.com/maxskiier/linsh
|
||||
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
|
||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: gcc
|
||||
|
||||
%description
|
||||
%{summary}.
|
||||
|
||||
%prep
|
||||
%autosetup
|
||||
|
||||
%build
|
||||
%make_build CC="%__cc %build_cflags %build_ldflags"
|
||||
|
||||
%install
|
||||
install -Dm755 linsh %{buildroot}%{_bindir}/linsh
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README.txt
|
||||
%{_bindir}/linsh
|
||||
|
||||
%changelog
|
||||
* Mon Jun 15 2026 Owen Zimmerman <owen@fyralabs.com> - 0.02-1
|
||||
- Initial package
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(gh_tag("maxskiier/linsh"));
|
||||
@@ -18,7 +18,7 @@
|
||||
%bcond test 1
|
||||
|
||||
Name: powershell
|
||||
Version: 7.6.2
|
||||
Version: 7.6.3
|
||||
Release: 1%{?dist}
|
||||
Summary: A cross-platform automation and configuration tool/framework
|
||||
SourceLicense: MIT
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%bcond bootstrap 0
|
||||
|
||||
Name: yarnpkg-berry
|
||||
Version: 4.16.0
|
||||
Version: 4.17.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Active development version of Yarn
|
||||
License: BSD-2-Clause
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit cccc7b2d4408ee75d5c2e9dadad2cc0b7f992dd0
|
||||
%global commit 9f56a4df515c9989bf0baa71c2150408cce0608e
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global commit_date 20260615
|
||||
%global ver 1.8.0
|
||||
%global commit_date 20260620
|
||||
%global ver 1.9.0
|
||||
|
||||
%bcond_with check
|
||||
%bcond_with debug_no_build
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
%global debug_package %{nil}
|
||||
%endif
|
||||
|
||||
%global ver 1.7.2-pre
|
||||
%global ver 1.8.0-pre
|
||||
# Exclude input files from mangling
|
||||
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
%global rustflags_debuginfo 0
|
||||
|
||||
Name: zed
|
||||
Version: 1.6.3
|
||||
Version: 1.7.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Zed is a high-performance, multiplayer code editor
|
||||
SourceLicense: AGPL-3.0-only AND Apache-2.0 AND GPL-3.0-or-later
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global __brp_mangle_shebangs %{nil}
|
||||
|
||||
Name: inputplumber
|
||||
Version: 0.77.5
|
||||
Version: 0.77.6
|
||||
Release: 1%{?dist}
|
||||
Summary: Open source input router and remapper daemon for Linux
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
%global name_pretty %{quote:Prism Launcher (Nightly)}
|
||||
%global appid org.prismlauncher.PrismLauncher-nightly
|
||||
|
||||
%global commit 5f59aa58294b24e178e30a408230dda3d98ea5b0
|
||||
%global commit f654ce821291b8b8db1f52850dec9e48ede1866f
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%global commit_date 20260612
|
||||
%global commit_date 20260618
|
||||
%global snapshot_info %{commit_date}.%{shortcommit}
|
||||
|
||||
# Change this variables if you want to use custom keys
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
# GLIBCXX_ASSERTIONS is known to break RPCS3
|
||||
%global build_cflags %(echo "%{__build_flags_lang_c}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags}
|
||||
%global build_cxxflags %(echo "%{__build_flags_lang_cxx}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags}
|
||||
%global commit c38e8229ed063d476a55e8092922b728fa6854d3
|
||||
%global ver 0.0.41-19475
|
||||
%global commit e32d19ffac500c6194f93b0338a4a64c51399b38
|
||||
%global ver 0.0.41-19499
|
||||
|
||||
Name: rpcs3
|
||||
Version: %(echo %{ver} | sed 's/-/^/g')
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
%global appid com.valvesoftware.Steam
|
||||
|
||||
Name: steam
|
||||
Version: 1.0.0.85
|
||||
Release: 11%{?dist}
|
||||
Version: 1.0.0.86
|
||||
Release: 1%{?dist}
|
||||
Summary: Installer for the Steam software distribution service
|
||||
# Redistribution and repackaging for Linux is allowed, see license file. udev rules are MIT.
|
||||
License: Steam License Agreement and MIT
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit da21a8f77f31b295e77e1b55e9ef408ca3bf9402
|
||||
%global commit be8009c62509322682299bfbe969a62cee03f4d5
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver v26.3.27
|
||||
%global commit_date 20260610
|
||||
%global commit_date 20260620
|
||||
|
||||
%global goipath github.com/XTLS/Xray-core
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
project pkg {
|
||||
rpm {
|
||||
spec = "ghc-vinyl.spec"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,116 @@
|
||||
# generated by cabal-rpm-2.3.2
|
||||
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
|
||||
|
||||
%global pkg_name vinyl
|
||||
%global pkgver %{pkg_name}-%{version}
|
||||
%{?haskell_setup}
|
||||
|
||||
# testsuite missing deps: aeson hspec lens lens-aeson unordered-containers vector microlens should-not-typecheck
|
||||
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 0.14.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Extensible Records
|
||||
|
||||
License: MIT
|
||||
URL: https://hackage.haskell.org/package/vinyl
|
||||
# Begin cabal-rpm sources:
|
||||
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
||||
# End cabal-rpm sources
|
||||
|
||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
||||
|
||||
# Begin cabal-rpm deps:
|
||||
BuildRequires: ghc-rpm-macros
|
||||
BuildRequires: ghc-Cabal-devel
|
||||
BuildRequires: ghc-array-devel
|
||||
BuildRequires: ghc-base-devel
|
||||
BuildRequires: ghc-deepseq-devel
|
||||
%if %{with ghc_prof}
|
||||
BuildRequires: ghc-array-prof
|
||||
BuildRequires: ghc-base-prof
|
||||
BuildRequires: ghc-deepseq-prof
|
||||
%endif
|
||||
# End cabal-rpm deps
|
||||
|
||||
%description
|
||||
Extensible records for Haskell with lenses.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Haskell %{pkg_name} library development files
|
||||
Provides: %{name}-static = %{version}-%{release}
|
||||
Provides: %{name}-static%{?_isa} = %{version}-%{release}
|
||||
%if %{defined ghc_version}
|
||||
Requires: ghc-compiler = %{ghc_version}
|
||||
%endif
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
This package provides the Haskell %{pkg_name} library development files.
|
||||
|
||||
|
||||
%if %{with haddock}
|
||||
%package doc
|
||||
Summary: Haskell %{pkg_name} library documentation
|
||||
BuildArch: noarch
|
||||
Requires: ghc-filesystem
|
||||
|
||||
%description doc
|
||||
This package provides the Haskell %{pkg_name} library documentation.
|
||||
%endif
|
||||
|
||||
|
||||
%if %{with ghc_prof}
|
||||
%package prof
|
||||
Summary: Haskell %{pkg_name} profiling library
|
||||
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
||||
Supplements: (%{name}-devel and ghc-prof)
|
||||
|
||||
%description prof
|
||||
This package provides the Haskell %{pkg_name} profiling library.
|
||||
%endif
|
||||
|
||||
|
||||
%prep
|
||||
# Begin cabal-rpm setup:
|
||||
%setup -q -n %{pkgver}
|
||||
# End cabal-rpm setup
|
||||
|
||||
|
||||
%build
|
||||
# Begin cabal-rpm build:
|
||||
%ghc_lib_build
|
||||
# End cabal-rpm build
|
||||
|
||||
|
||||
%install
|
||||
# Begin cabal-rpm install
|
||||
%ghc_lib_install
|
||||
# End cabal-rpm install
|
||||
|
||||
|
||||
%files -f %{name}.files
|
||||
# Begin cabal-rpm files:
|
||||
%license LICENSE
|
||||
# End cabal-rpm files
|
||||
|
||||
|
||||
%files devel -f %{name}-devel.files
|
||||
%doc CHANGELOG.md
|
||||
|
||||
|
||||
%if %{with haddock}
|
||||
%files doc -f %{name}-doc.files
|
||||
%license LICENSE
|
||||
%endif
|
||||
|
||||
|
||||
%if %{with ghc_prof}
|
||||
%files prof -f %{name}-prof.files
|
||||
%endif
|
||||
|
||||
|
||||
%changelog
|
||||
* Sun Jun 14 2026 Owen Zimmerman <owen@fyralabs.com> - 0.14.3-1
|
||||
- Initial commit
|
||||
@@ -0,0 +1 @@
|
||||
rpm.version(hackage("vinyl"));
|
||||
@@ -1,8 +1,8 @@
|
||||
%global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10
|
||||
%global commit 7171e6f01f846a511a5fad8d1ab24baaee66e308
|
||||
%global commit f8e470eb579c96515693d76ad393dbd41b393f26
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 2.3.1
|
||||
%global commit_date 20260615
|
||||
%global commit_date 20260617
|
||||
%global debug_package %nil
|
||||
|
||||
Name: nim-nightly
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
%global _desc A framework for package management.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 0.12.33
|
||||
Release: 2%?dist
|
||||
Version: 0.12.34
|
||||
Release: 1%{?dist}
|
||||
Summary: A framework for package management
|
||||
License: BSD-3-Clause
|
||||
URL: https://pkgcore.github.io/pkgcore
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global _desc Send usage data from your Python code to PostHog.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 7.18.3
|
||||
Version: 7.19.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Send usage data from your Python code to PostHog
|
||||
License: MIT
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
%global _desc Command-line client for the Public.com Trading API.
|
||||
|
||||
Name: python-%{real_name}
|
||||
Version: 1.1.0
|
||||
Release: 2%?dist
|
||||
Version: 1.2.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Command-line client for the Public.com Trading API
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/PublicDotCom/publicdotcom-cli
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
%global _desc A Python SDK for interacting with the Public Trading API, providing a simple and intuitive interface for trading operations, market data retrieval, and account management.
|
||||
|
||||
Name: python-%{real_name}
|
||||
Version: 0.1.15
|
||||
Release: 2%{?dist}
|
||||
Version: 0.1.17
|
||||
Release: 1%{?dist}
|
||||
Summary: Python SDK for interacting with the Public Trading API
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/PublicDotCom/publicdotcom-py
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
%global _desc A python library that implements optimized versions of common functionality.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 0.11.0
|
||||
Release: 2%?dist
|
||||
Version: 0.11.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Implements optimized versions of common functionality
|
||||
License: BSD-3-Clause
|
||||
URL: https://pkgcore.github.io/snakeoil
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global _desc The model-definition framework for state-of-the-art machine learning models.
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 5.12.0
|
||||
Version: 5.12.1
|
||||
Release: 1%{?dist}
|
||||
Summary: The model-definition framework for state-of-the-art machine learning models
|
||||
License: Apache-2.0
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
%global commit feeb9aa8dde3ae9269b13f3bae435b82d8538b76
|
||||
%global commit_date 20260614
|
||||
%global commit fb2af6606cf8fa85a8bf06c0d1f5689327d4b6fc
|
||||
%global commit_date 20260620
|
||||
%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.4.0
|
||||
Version: 0.4.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Text editor for your terminal: easy, powerful and fast
|
||||
URL: https://getfresh.dev
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
%global crate typst
|
||||
|
||||
Name: rust-typst
|
||||
Version: 0.14.2
|
||||
Release: 1%?dist
|
||||
Version: 0.15.0
|
||||
Release: 1%{?dist}
|
||||
Summary: New markup-based typesetting system that is powerful and easy to learn
|
||||
|
||||
License: Apache-2.0
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
%global crate usage-cli
|
||||
|
||||
Name: rust-usage-cli
|
||||
Version: 3.5.0
|
||||
Version: 3.5.2
|
||||
Release: 1%{?dist}
|
||||
Summary: CLI for working with usage-based CLIs
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%define __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
|
||||
|
||||
%global crate zoi-rs
|
||||
%global crate_version 1.18.5
|
||||
%global crate_version 1.18.6
|
||||
|
||||
Name: rust-zoi-rs
|
||||
Version: %(echo %crate_version | sed 's/-/~/g')
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
version=0.17.0-dev.857+2b2b85c5f
|
||||
version=0.17.0-dev.892+54537285c
|
||||
|
||||
mirrors=()
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
%define llvm_compat 22
|
||||
%endif
|
||||
%global llvm_version 22.0.0
|
||||
%global ver 0.17.0-dev.857+2b2b85c5f
|
||||
%global ver 0.17.0-dev.892+54537285c
|
||||
%bcond bootstrap 1
|
||||
%bcond docs %{without bootstrap}
|
||||
%bcond test 1
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
%global zig_cache_dir %{builddir}/zig-cache
|
||||
|
||||
Name: zig-master
|
||||
Version: 0.17.0~dev.857+2b2b85c5f
|
||||
Version: 0.17.0~dev.892+54537285c
|
||||
Release: 2%{?dist}
|
||||
Summary: Master builds of the Zig language
|
||||
License: MIT AND NCSA AND LGPL-2.1-or-later AND LGPL-2.1-or-later WITH GCC-exception-2.0 AND GPL-2.0-or-later AND GPL-2.0-or-later WITH GCC-exception-2.0 AND BSD-3-Clause AND Inner-Net-2.0 AND ISC AND LicenseRef-Fedora-Public-Domain AND GFDL-1.1-or-later AND ZPL-2.1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%global commit 948805f6e8cf7f8c08eba06ab1db1eef0e75e3a0
|
||||
%global shortcommit 948805f
|
||||
%global commit_date 20260613
|
||||
%global commit 1c762bf4cf2f7e2aab1648d562dc98d2abc6e6ec
|
||||
%global shortcommit 1c762bf
|
||||
%global commit_date 20260619
|
||||
|
||||
Name: astal
|
||||
Version: 0^%commit_date.%commit
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
|
||||
%global commit 948805f6e8cf7f8c08eba06ab1db1eef0e75e3a0
|
||||
%global commit 1c762bf4cf2f7e2aab1648d562dc98d2abc6e6ec
|
||||
%global shortcommit %{sub %commit 1 7}
|
||||
%global commit_date 20260613
|
||||
%global commit_date 20260619
|
||||
|
||||
Name: astal
|
||||
Version: 0^%commit_date.%shortcommit
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
%forgemeta
|
||||
|
||||
Name: cmake-extras
|
||||
Version: 1.9
|
||||
Release: 2%?dist
|
||||
Version: 1.10
|
||||
Release: 1%{?dist}
|
||||
Summary: A collection of add-ons for the CMake build tool
|
||||
License: GPL-3.0-or-later
|
||||
URL: https://gitlab.com/ubports/development/core/cmake-extras
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
%global debug_package %{nil}
|
||||
|
||||
Name: glaze-devel
|
||||
Version: 7.8.1
|
||||
Version: 7.8.2
|
||||
Release: 1%{?dist}
|
||||
License: MIT
|
||||
URL: https://stephenberry.github.io/glaze
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name: libusermetrics
|
||||
Version: 1.4.1
|
||||
Release: 2%?dist
|
||||
Version: 1.4.2
|
||||
Release: 1%{?dist}
|
||||
Summary: library for retrieving anonymous metrics about users
|
||||
License: GPL-3.0-or-later AND LGPL-3.0-or-later AND LGPL-2.1-or-later
|
||||
URL: https://gitlab.com/ubports/development/core/libusermetrics
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
%global cuda_version 13
|
||||
|
||||
Name: cuda-cudnn
|
||||
Version: 9.23.1.3
|
||||
Version: 9.23.2.1
|
||||
Release: 1%{?dist}
|
||||
Epoch: 1
|
||||
Summary: NVIDIA CUDA Deep Neural Network library (cuDNN)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit 01ea6726b2c82d8dcd0d71ec852729b04628606a
|
||||
%global commit dccbbd62a026752603f3205a12de0f2ff7ff2ab0
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 20260614143513
|
||||
%global commit_date 20260615
|
||||
%global ver 20260620002456
|
||||
%global commit_date 20260620
|
||||
|
||||
Name: v2ray-domain-list-community
|
||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
%global commit ce6485980843245f8dc13ec0d0b2258fb04435d2
|
||||
%global commit 519243fd551caf9b118d2a34c95699ce15cd74eb
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global ver 202605120112
|
||||
%global commit_date 20260512
|
||||
%global ver 202606191114
|
||||
%global commit_date 20260620
|
||||
|
||||
%global year %{gsub %commit_date %%d%%d%%d%%d$ %{quote:}}
|
||||
%global month %{gsub %commit_date %%d%%d%%d%%d(%%d%%d)%%d%%d %%1}
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
%bcond docs 0
|
||||
|
||||
Name: LCEVCdec
|
||||
Version: 4.1.0
|
||||
Version: 4.2.0
|
||||
Release: 2%{?dist}
|
||||
Summary: MPEG-5 LCEVC Decoder
|
||||
License: BSD-3-Clause-Clear
|
||||
@@ -123,42 +123,33 @@ python3 src/func_tests/run_tests.py
|
||||
%doc README.md
|
||||
%{_libdir}/liblcevc_dec_api.so.4
|
||||
%{_libdir}/liblcevc_dec_api.so.%{version}
|
||||
%{_libdir}/liblcevc_dec_legacy.so.1
|
||||
%{_libdir}/liblcevc_dec_pipeline_cpu.so.1
|
||||
%{_libdir}/liblcevc_dec_pipeline_legacy.so.1
|
||||
|
||||
%files devel
|
||||
%{_includedir}/LCEVC
|
||||
%{_libdir}/liblcevc_dec_api.so
|
||||
%{_libdir}/liblcevc_dec_legacy.so
|
||||
%{_libdir}/liblcevc_dec_pipeline_cpu.so
|
||||
%{_libdir}/liblcevc_dec_pipeline_legacy.so
|
||||
%{_libdir}/pkgconfig/lcevc_dec.pc
|
||||
%{_libdir}/pkgconfig/lcevc_dec_extract.pc
|
||||
%{_libdir}/pkgconfig/lcevc_dec_utility.pc
|
||||
|
||||
# Static:
|
||||
%{_libdir}/liblcevc_dec_api_utility.a
|
||||
%{_libdir}/liblcevc_dec_common.a
|
||||
%{_libdir}/liblcevc_dec_enhancement.a
|
||||
%{_libdir}/liblcevc_dec_extract.a
|
||||
%{_libdir}/liblcevc_dec_pipeline.a
|
||||
%{_libdir}/liblcevc_dec_pixel_processing.a
|
||||
%{_libdir}/liblcevc_dec_sequencer.a
|
||||
%{_libdir}/liblcevc_dec_unit_test_utilities.a
|
||||
%{_libdir}/liblcevc_dec_utility.a
|
||||
%{_libdir}/pkgconfig/lcevc_dec.pc
|
||||
|
||||
%files samples
|
||||
%{_bindir}/lcevc_dec_common_test_unit
|
||||
%{_bindir}/lcevc_dec_enhancement_sample
|
||||
%{_bindir}/lcevc_dec_enhancement_test_unit
|
||||
%{_bindir}/lcevc_dec_legacy_test_unit
|
||||
%{_bindir}/lcevc_dec_pipeline_cpu_test_unit
|
||||
%{_bindir}/lcevc_dec_pipeline_legacy_test_unit
|
||||
%{_bindir}/lcevc_dec_pipeline_test_unit
|
||||
%{_bindir}/lcevc_dec_pixel_processing_test_unit
|
||||
%{_bindir}/lcevc_dec_sample
|
||||
%{_bindir}/lcevc_dec_test_harness
|
||||
%{_bindir}/lcevc_dec_test_unit
|
||||
%{_bindir}/lcevc_dec_utility_test_unit
|
||||
%{_bindir}/lcevc_sequencer_test_unit
|
||||
|
||||
%changelog
|
||||
%autochangelog
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user