mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-18 17:40:38 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d9506772a6 | |||
| f0c0fb549a | |||
| 4bb96ebe17 | |||
| f9b15c32ff | |||
| 78693ca98d | |||
| bb9c47f0f0 |
@@ -2,6 +2,9 @@
|
|||||||
"name": "Terra Devcontainer",
|
"name": "Terra Devcontainer",
|
||||||
"image": "ghcr.io/terrapkg/builder:frawhide",
|
"image": "ghcr.io/terrapkg/builder:frawhide",
|
||||||
"runArgs": ["--privileged"],
|
"runArgs": ["--privileged"],
|
||||||
|
"features": {
|
||||||
|
"ghcr.io/devcontainers/features/common-utils:2": {}
|
||||||
|
},
|
||||||
"customizations": {
|
"customizations": {
|
||||||
"vscode": {
|
"vscode": {
|
||||||
"extensions": [
|
"extensions": [
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ jobs:
|
|||||||
- name: Set workspace as safe
|
- name: Set workspace as safe
|
||||||
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Generate build matrix
|
- name: Generate build matrix
|
||||||
|
|||||||
@@ -24,20 +24,11 @@ jobs:
|
|||||||
dnf5 swap -y --setopt=install_weak_deps=False systemd-standalone-sysusers systemd
|
dnf5 swap -y --setopt=install_weak_deps=False systemd-standalone-sysusers systemd
|
||||||
dnf5 install -y --setopt=install_weak_deps=False curl wget git-core openssl-devel cargo podman fuse-overlayfs dnf5-plugins rpmbuild script
|
dnf5 install -y --setopt=install_weak_deps=False curl wget git-core openssl-devel cargo podman fuse-overlayfs dnf5-plugins rpmbuild script
|
||||||
|
|
||||||
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
with:
|
with:
|
||||||
ref: f${{ matrix.version }}
|
ref: f${{ matrix.version }}
|
||||||
fetch-depth: 1
|
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
|
- name: Build anda-srpm-macros
|
||||||
run: |
|
run: |
|
||||||
mkdir -p anda-build/rpm/rpms
|
mkdir -p anda-build/rpm/rpms
|
||||||
@@ -46,11 +37,11 @@ jobs:
|
|||||||
dnf5 install -y ./anda-build/rpm/rpms/anda-*.rpm
|
dnf5 install -y ./anda-build/rpm/rpms/anda-*.rpm
|
||||||
|
|
||||||
- name: Install build dependencies
|
- name: Install build dependencies
|
||||||
run: dnf5 builddep -y anda/terra/{mock-configs,srpm-macros,appstream-helper}/*.spec anda/{buildsys/anda,tools/subatomic}/*.spec
|
run: dnf5 builddep -y anda/terra/{mock-configs,srpm-macros}/*.spec anda/tools/buildsys/{anda,subatomic}/*.spec
|
||||||
|
|
||||||
- name: Install Anda
|
- name: Install Anda
|
||||||
run: |
|
run: |
|
||||||
rpmbuild -bb anda/buildsys/anda/*.spec --undefine=_disable_source_fetch -D "_sourcedir $(pwd)/anda/buildsys/anda/" -D "_rpmdir $(pwd)/anda-build/rpm/rpms/"
|
rpmbuild -bb anda/tools/buildsys/anda/*.spec --undefine=_disable_source_fetch -D "_sourcedir $(pwd)/anda/tools/buildsys/anda/" -D "_rpmdir $(pwd)/anda-build/rpm/rpms/"
|
||||||
mv ./anda-build/rpm/rpms/*/anda-*.rpm ./anda-build/rpm/rpms/
|
mv ./anda-build/rpm/rpms/*/anda-*.rpm ./anda-build/rpm/rpms/
|
||||||
dnf5 install -y ./anda-build/rpm/rpms/anda-*.rpm
|
dnf5 install -y ./anda-build/rpm/rpms/anda-*.rpm
|
||||||
|
|
||||||
@@ -70,7 +61,7 @@ jobs:
|
|||||||
run: anda build -D "vendor Terra" -D "__python %{__python3}" -rrpmbuild anda/terra/appstream-helper/pkg
|
run: anda build -D "vendor Terra" -D "__python %{__python3}" -rrpmbuild anda/terra/appstream-helper/pkg
|
||||||
|
|
||||||
- name: Build Subatomic
|
- name: Build Subatomic
|
||||||
run: anda build -D "vendor Terra" -rrpmbuild anda/tools/subatomic/pkg
|
run: anda build -D "vendor Terra" -rrpmbuild anda/tools/buildsys/subatomic/pkg
|
||||||
- name: Install Subatomic
|
- name: Install Subatomic
|
||||||
run: dnf5 install -y ./anda-build/rpm/rpms/subatomic-*.rpm
|
run: dnf5 install -y ./anda-build/rpm/rpms/subatomic-*.rpm
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ jobs:
|
|||||||
options: --cap-add=SYS_ADMIN --privileged
|
options: --cap-add=SYS_ADMIN --privileged
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Setup Git
|
- name: Setup Git
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ jobs:
|
|||||||
options: --cap-add=SYS_ADMIN --privileged
|
options: --cap-add=SYS_ADMIN --privileged
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
@@ -73,6 +73,6 @@ jobs:
|
|||||||
# Upload the results to GitHub's code scanning dashboard (optional).
|
# Upload the results to GitHub's code scanning dashboard (optional).
|
||||||
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
|
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
|
||||||
- name: "Upload to code-scanning"
|
- name: "Upload to code-scanning"
|
||||||
uses: github/codeql-action/upload-sarif@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4
|
uses: github/codeql-action/upload-sarif@e46ed2cbd01164d986452f91f178727624ae40d7 # v4
|
||||||
with:
|
with:
|
||||||
sarif_file: results.sarif
|
sarif_file: results.sarif
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ jobs:
|
|||||||
options: --cap-add=SYS_ADMIN --privileged
|
options: --cap-add=SYS_ADMIN --privileged
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
with:
|
with:
|
||||||
ref: ${{ matrix.branch }}
|
ref: ${{ matrix.branch }}
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ jobs:
|
|||||||
container:
|
container:
|
||||||
image: ghcr.io/terrapkg/builder:frawhide
|
image: ghcr.io/terrapkg/builder:frawhide
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
- name: Push to subatomic
|
- name: Push to subatomic
|
||||||
run: |
|
run: |
|
||||||
branch=${{ github.ref_name }}
|
branch=${{ github.ref_name }}
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ jobs:
|
|||||||
options: --cap-add=SYS_ADMIN --privileged
|
options: --cap-add=SYS_ADMIN --privileged
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }}
|
ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }}
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ jobs:
|
|||||||
options: --cap-add=SYS_ADMIN --privileged
|
options: --cap-add=SYS_ADMIN --privileged
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }}
|
ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }}
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ jobs:
|
|||||||
options: --cap-add=SYS_ADMIN --privileged
|
options: --cap-add=SYS_ADMIN --privileged
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }}
|
ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }}
|
||||||
|
|||||||
@@ -6,4 +6,3 @@ anda-build/
|
|||||||
**/*.nupkg
|
**/*.nupkg
|
||||||
**/*.rpm
|
**/*.rpm
|
||||||
**/*.kate-swp
|
**/*.kate-swp
|
||||||
**/.DS_Store
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ This monorepo contains the package manifests for all packages in Terra.
|
|||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
The latest detailed instructions are available in our docs: https://docs.terrapkg.com/usage/installing
|
The latest detailed instructions are available in our Devdocs: https://developer.fyralabs.com/terra/installing
|
||||||
|
|
||||||
### Fedora
|
### Fedora
|
||||||
|
|
||||||
@@ -34,7 +34,7 @@ On Fedora, you can optionally install the Terra subrepos. Extra care and caution
|
|||||||
- Install `terra-release-extras` to enable the Extras subrepo. This repo contains packages which conflict with Fedora packages in some way, such as being a patched version of the same package.
|
- Install `terra-release-extras` to enable the Extras subrepo. This repo contains packages which conflict with Fedora packages in some way, such as being a patched version of the same package.
|
||||||
- Install `terra-release-mesa` to install the Mesa subrepo which contains a patched and codec complete Mesa.
|
- Install `terra-release-mesa` to install the Mesa subrepo which contains a patched and codec complete Mesa.
|
||||||
- Install `terra-release-nvidia` to install the NVIDIA subrepo which contains NVIDIA drivers.
|
- Install `terra-release-nvidia` to install the NVIDIA subrepo which contains NVIDIA drivers.
|
||||||
- Install `terra-release-multimedia` for multimedia packages in Terra. **This repository is currently considered unstable and a work in progress.**
|
- Install `terra-release-multimedia` for multimedia packages in Terra. This repository is currently considered a work in progress.
|
||||||
|
|
||||||
### Enterprise Linux (EL)
|
### Enterprise Linux (EL)
|
||||||
|
|
||||||
@@ -56,13 +56,13 @@ sudo dnf install --nogpgcheck --repofrompath 'terra,https://repos.fyralabs.com/t
|
|||||||
|
|
||||||
First of all, thanks for being interested in contributing to Terra! If you have any questions about contributing, please [join our chats](https://wiki.ultramarine-linux.org/en/community/community/).
|
First of all, thanks for being interested in contributing to Terra! If you have any questions about contributing, please [join our chats](https://wiki.ultramarine-linux.org/en/community/community/).
|
||||||
|
|
||||||
- [Contribution Guide](https://docs.terrapkg.com/contributing/getting-started)
|
- [Contribution Guide](https://developer.fyralabs.com/terra/contributing)
|
||||||
- [FAQ](https://docs.terrapkg.com/reference/faq)
|
- [FAQ](https://developer.fyralabs.com/terra/faq)
|
||||||
- [Guidelines](https://docs.terrapkg.com/contributing/guidelines)
|
- [Guidelines](https://developer.fyralabs.com/terra/guidelines)
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
Our documentation can be found on our [docs site](https://docs.terrapkg.com).
|
Our documentation can be found on our [Devdocs](https://developer.fyralabs.com/terra/).
|
||||||
|
|
||||||
## Searching Packages
|
## Searching Packages
|
||||||
|
|
||||||
@@ -72,6 +72,6 @@ Our documentation can be found on our [docs site](https://docs.terrapkg.com).
|
|||||||
|
|
||||||
Feel free to reach out by [joining our community](https://wiki.ultramarine-linux.org/en/community/community/). We're always happy to help!
|
Feel free to reach out by [joining our community](https://wiki.ultramarine-linux.org/en/community/community/). We're always happy to help!
|
||||||
|
|
||||||
- [Contribution Guide](https://docs.terrapkg.com/contributing/getting-started)
|
- [Contribution Guide](https://developer.fyralabs.com/terra/contributing)
|
||||||
- [FAQ](https://docs.terrapkg.com/reference/faq)
|
- [FAQ](https://developer.fyralabs.com/terra/faq)
|
||||||
- [Guidelines](https://docs.terrapkg.com/contributing/guidelines)
|
- [Guidelines](https://developer.fyralabs.com/terra/guidelines)
|
||||||
|
|||||||
@@ -1,128 +0,0 @@
|
|||||||
%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.77
|
|
||||||
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
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
rpm.version(pypi("arctis-sound-manager"));
|
|
||||||
@@ -1,74 +0,0 @@
|
|||||||
Name: ktailctl
|
|
||||||
Version: 0.21.5
|
|
||||||
Release: 1%{?dist}
|
|
||||||
Summary: A GUI to monitor and manage Tailscale on your Linux desktop
|
|
||||||
License: GPL-3.0-only
|
|
||||||
URL: https://github.com/f-koehler/KTailctl
|
|
||||||
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
|
|
||||||
|
|
||||||
BuildRequires: cmake
|
|
||||||
BuildRequires: extra-cmake-modules
|
|
||||||
BuildRequires: gcc-c++
|
|
||||||
BuildRequires: golang
|
|
||||||
BuildRequires: json-devel
|
|
||||||
BuildRequires: golang
|
|
||||||
BuildRequires: kf6-breeze-icons-devel
|
|
||||||
BuildRequires: kf6-kconfig-devel
|
|
||||||
BuildRequires: kf6-kcoreaddons-devel
|
|
||||||
BuildRequires: kf6-kdbusaddons-devel
|
|
||||||
BuildRequires: kf6-kguiaddons-devel
|
|
||||||
BuildRequires: kf6-ki18n-devel
|
|
||||||
BuildRequires: kf6-kirigami-addons-devel
|
|
||||||
BuildRequires: kf6-kirigami-devel
|
|
||||||
BuildRequires: kf6-knotifications-devel
|
|
||||||
BuildRequires: kf6-kwindowsystem-devel
|
|
||||||
BuildRequires: qt6-qtbase-devel
|
|
||||||
BuildRequires: qt6-qtdeclarative-devel
|
|
||||||
BuildRequires: qt6-qtsvg-devel
|
|
||||||
|
|
||||||
Requires: tailscale
|
|
||||||
Requires: kf5-qqc2-desktop-style
|
|
||||||
Requires: hicolor-icon-theme
|
|
||||||
|
|
||||||
Provides: KTailctl
|
|
||||||
|
|
||||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
|
||||||
|
|
||||||
%description
|
|
||||||
%{summary}.
|
|
||||||
|
|
||||||
%package static
|
|
||||||
%pkg_static_files
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -n KTailctl-%{version}
|
|
||||||
cd src/wrapper
|
|
||||||
go mod vendor
|
|
||||||
|
|
||||||
%conf
|
|
||||||
%cmake
|
|
||||||
|
|
||||||
%build
|
|
||||||
%cmake_build
|
|
||||||
|
|
||||||
%install
|
|
||||||
%cmake_install
|
|
||||||
|
|
||||||
%files
|
|
||||||
%doc README.md
|
|
||||||
%license LICENSE.txt
|
|
||||||
%{_bindir}/ktailctl
|
|
||||||
%{_libdir}/qt6/qml/org/fkoehler/KTailctl/Components/*.qml
|
|
||||||
%{_libdir}/qt6/qml/org/fkoehler/KTailctl/Components/*.version
|
|
||||||
%{_libdir}/qt6/qml/org/fkoehler/KTailctl/Components/*.qmltypes
|
|
||||||
%{_libdir}/qt6/qml/org/fkoehler/KTailctl/Components/qmldir
|
|
||||||
# Exclusive libs that the package needs to run
|
|
||||||
%{_libdir}/qt6/qml/org/fkoehler/KTailctl/Components/libktailctl_components.so
|
|
||||||
%{_libdir}/libktailctl_wrapper_logging.so
|
|
||||||
%{_appsdir}/org.fkoehler.KTailctl.desktop
|
|
||||||
%{_scalableiconsdir}/org.fkoehler.KTailctl.svg
|
|
||||||
%{_metainfodir}/org.fkoehler.KTailctl.metainfo.xml
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Sat May 23 2026 Owen Zimmerman <owen@fyralabs.com> - 0.21.5-1
|
|
||||||
- Initial commit
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
rpm.version(gh("f-koehler/KTailctl"));
|
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
%global xurl https://files.pythonhosted.org/packages/9c/a2/05729090f54c5489c79dee9177fb1d99860850d311247256eebb360ec622/anki-26.5-cp310-abi3-manylinux_2_35_x86_64.whl
|
%global xurl https://files.pythonhosted.org/packages/29/17/68debda9fa3a8234c8a345256254665112180bced608354f7d1361647580/anki-25.9.3-cp39-abi3-manylinux_2_36_x86_64.whl
|
||||||
%global aurl https://files.pythonhosted.org/packages/67/ec/354efa779cb7293aa5feb460f552ff475063149523afc1099433bbe8e65f/anki-26.5-cp310-abi3-manylinux_2_35_aarch64.whl
|
%global aurl https://files.pythonhosted.org/packages/f9/c7/5d7351f09deed1e294724cfde077d5b2a0c91659b984d05cec291417e806/anki-25.9.3-cp39-abi3-manylinux_2_36_aarch64.whl
|
||||||
%global qurl https://files.pythonhosted.org/packages/2b/a1/8978e8200afcc9a9b5440366e5d579f9fb1e959147004943cb0ec97cdf0f/aqt-26.5-py3-none-any.whl
|
%global qurl https://files.pythonhosted.org/packages/54/a3/d5d68ed478b02d44dec3a4a7ba0d671be271dd2203d8ba1d49318b2221ef/aqt-25.9.3-py3-none-any.whl
|
||||||
|
|
||||||
Name: anki-bin
|
Name: anki-bin
|
||||||
Version: 26.5
|
Version: 25.9.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Flashcard program for using space repetition learning (Installed with wheel)
|
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
|
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
|
Name: anki-qt5
|
||||||
Version: 26.05
|
Version: 25.09.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Flashcard program for using space repetition learning
|
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
|
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
|
Name: anki
|
||||||
Version: 26.05
|
Version: 25.09.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Flashcard program for using space repetition learning
|
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
|
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,12 +1,12 @@
|
|||||||
%global __requires_exclude ^lib-.*.so
|
%global __requires_exclude ^lib-.*.so
|
||||||
%global __provides_exclude ^lib-.*.so
|
%global __provides_exclude ^lib-.*.so
|
||||||
|
|
||||||
%global ver Audacity-3.7.8
|
%global ver Audacity-3.7.7
|
||||||
%global sanitized_ver %(echo %{ver} | sed 's/Audacity-//g')
|
%global sanitized_ver %(echo %{ver} | sed 's/Audacity-//g')
|
||||||
|
|
||||||
Name: audacity-freeworld
|
Name: audacity-freeworld
|
||||||
Version: %{sanitized_ver}
|
Version: %{sanitized_ver}
|
||||||
Release: 1%{?dist}
|
Release: 1%?dist
|
||||||
Summary: Multitrack audio editor
|
Summary: Multitrack audio editor
|
||||||
License: GPLv2
|
License: GPLv2
|
||||||
URL: https://www.audacityteam.org/
|
URL: https://www.audacityteam.org/
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Name: python-auto-cpufreq
|
Name: python-auto-cpufreq
|
||||||
Version: 3.0.0
|
Version: 3.0.0
|
||||||
Release: 3%?dist
|
Release: 2%?dist
|
||||||
Summary: Automatic CPU speed & power optimizer for Linux
|
Summary: Automatic CPU speed & power optimizer for Linux
|
||||||
License: LGPL-3.0-or-later
|
License: LGPL-3.0-or-later
|
||||||
URL: https://foolcontrol.org/?p=4603
|
URL: https://foolcontrol.org/?p=4603
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: bazzite-portal
|
Name: bazzite-portal
|
||||||
Version: 0.2.3
|
Version: 0.2.2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Bazzite Portal is a tabbed frontend for curated script execution, with a focus on distro specific QOL shortcuts
|
Summary: Bazzite Portal is a tabbed frontend for curated script execution, with a focus on distro specific QOL shortcuts
|
||||||
URL: https://github.com/ublue-os/yafti-gtk
|
URL: https://github.com/ublue-os/yafti-gtk
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
project pkg {
|
|
||||||
rpm {
|
|
||||||
spec = "bazzite-updater.spec"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,77 +0,0 @@
|
|||||||
%global appid io.github.rfrench3.bazzite-updater
|
|
||||||
|
|
||||||
Name: bazzite-updater
|
|
||||||
Version: 0.7.3
|
|
||||||
Release: 1%{?dist}
|
|
||||||
Summary: Update your Bazzite system
|
|
||||||
|
|
||||||
License: GPL-2.0-or-later AND BSD-3-Clause AND CC0-1.0
|
|
||||||
URL: https://github.com/rfrench3/bazzite-updater
|
|
||||||
Source0: %{url}/archive/refs/tags/%{version}.tar.gz
|
|
||||||
|
|
||||||
Packager: Robert French <frenchrobertm@outlook.com>
|
|
||||||
|
|
||||||
BuildRequires: desktop-file-utils
|
|
||||||
BuildRequires: libappstream-glib
|
|
||||||
BuildRequires: systemd-rpm-macros
|
|
||||||
|
|
||||||
BuildRequires: cmake
|
|
||||||
BuildRequires: extra-cmake-modules
|
|
||||||
BuildRequires: kf6-rpm-macros
|
|
||||||
BuildRequires: cmake(SDL3)
|
|
||||||
BuildRequires: cmake(Qt6Core)
|
|
||||||
BuildRequires: cmake(Qt6Gui)
|
|
||||||
BuildRequires: cmake(Qt6Qml)
|
|
||||||
BuildRequires: cmake(Qt6QuickControls2)
|
|
||||||
BuildRequires: cmake(Qt6Svg)
|
|
||||||
BuildRequires: cmake(Qt6Widgets)
|
|
||||||
|
|
||||||
BuildRequires: cmake(KF6Kirigami)
|
|
||||||
BuildRequires: cmake(KF6CoreAddons)
|
|
||||||
BuildRequires: cmake(KF6Config)
|
|
||||||
BuildRequires: cmake(KF6I18n)
|
|
||||||
BuildRequires: cmake(KF6IconThemes)
|
|
||||||
BuildRequires: cmake(KF6KirigamiAddons)
|
|
||||||
|
|
||||||
Requires: kf6-kirigami%{?_isa}
|
|
||||||
Requires: kf6-kirigami-addons%{?_isa}
|
|
||||||
Requires: kf6-qqc2-desktop-style%{?_isa}
|
|
||||||
Requires: which%{?_isa}
|
|
||||||
Requires: qt6-controllable%{?_isa}
|
|
||||||
Requires: uupd%{?_isa}
|
|
||||||
Requires: hicolor-icon-theme
|
|
||||||
|
|
||||||
Provides: bazzite-updater = %{evr}
|
|
||||||
|
|
||||||
%description
|
|
||||||
This is a convenient, easy-to-use interface for updating your Bazzite system.
|
|
||||||
- Simple and powerful
|
|
||||||
- Full support for all input types (keyboard/mouse, controller, touchscreen)
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup
|
|
||||||
|
|
||||||
%conf
|
|
||||||
%cmake
|
|
||||||
|
|
||||||
%build
|
|
||||||
%cmake_build
|
|
||||||
|
|
||||||
%install
|
|
||||||
%cmake_install
|
|
||||||
|
|
||||||
%check
|
|
||||||
appstream-util validate-relax --nonet %{buildroot}%{_kf6_metainfodir}/%{appid}.*.xml || :
|
|
||||||
desktop-file-validate %{buildroot}%{_kf6_datadir}/applications/%{appid}.desktop
|
|
||||||
|
|
||||||
%files
|
|
||||||
%license LICENSES/{BSD-3-Clause.txt,CC0-1.0.txt,GPL-2.0-or-later.txt}
|
|
||||||
%doc README.md
|
|
||||||
%{_bindir}/bazzite-updater
|
|
||||||
%{_appsdir}/%{appid}.desktop
|
|
||||||
%{_metainfodir}/%{appid}.*.xml
|
|
||||||
%{_scalableiconsdir}/%{appid}.svg
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Thu Feb 05 2026 Robert French
|
|
||||||
- Initial rpm build of Bazzite Updater
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
rpm.version(gh("rfrench3/bazzite-updater"));
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: bitwarden-cli.bin
|
Name: bitwarden-cli.bin
|
||||||
Version: 2026.5.0
|
Version: 2026.4.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Bitwarden command-line client
|
Summary: Bitwarden command-line client
|
||||||
License: GPL-3.0-only
|
License: GPL-3.0-only
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: bitwarden-cli
|
Name: bitwarden-cli
|
||||||
Version: 2026.5.0
|
Version: 2026.4.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Bitwarden command-line client
|
Summary: Bitwarden command-line client
|
||||||
License: GPL-3.0-only
|
License: GPL-3.0-only
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
%undefine __brp_mangle_shebangs
|
%undefine __brp_mangle_shebangs
|
||||||
|
|
||||||
Name: chdig
|
Name: chdig
|
||||||
Version: 26.6.1
|
Version: 26.4.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Dig into ClickHouse with TUI interface
|
Summary: Dig into ClickHouse with TUI interface
|
||||||
URL: https://github.com/azat/chdig
|
URL: https://github.com/azat/chdig
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ for background device management, as well as a GUI to expertly customize your se
|
|||||||
%global __brp_mangle_shebangs %{nil}
|
%global __brp_mangle_shebangs %{nil}
|
||||||
|
|
||||||
Name: coolercontrol
|
Name: coolercontrol
|
||||||
Version: 4.3.1
|
Version: 4.2.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Cooling device control for Linux
|
Summary: Cooling device control for Linux
|
||||||
ExclusiveArch: x86_64 aarch64
|
ExclusiveArch: x86_64 aarch64
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||||
|
|
||||||
Name: discord-canary-openasar
|
Name: discord-canary-openasar
|
||||||
Version: 1.0.1308
|
Version: 1.0.1036
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||||
License: MIT AND https://discord.com/terms
|
License: MIT AND https://discord.com/terms
|
||||||
|
|||||||
@@ -1,17 +1,20 @@
|
|||||||
|
%define debug_package %{nil}
|
||||||
|
%global _build_id_links none
|
||||||
|
|
||||||
|
# Exclude private libraries
|
||||||
|
%global __requires_exclude libffmpeg.so
|
||||||
|
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||||
|
|
||||||
Name: discord-canary
|
Name: discord-canary
|
||||||
Version: 1.0.1308
|
Version: 1.0.1036
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Free Voice and Text Chat for Gamers
|
Summary: Free Voice and Text Chat for Gamers
|
||||||
URL: discord.com
|
URL: discord.com
|
||||||
Source0: https://dl-canary.discordapp.net/apps/linux/%{version}/%{name}-%{version}.tar.gz
|
Source0: https://dl-canary.discordapp.net/apps/linux/%{version}/discord-canary-%{version}.tar.gz
|
||||||
Source1: https://discord.com/terms#/terms.html
|
License: https://discord.com/terms
|
||||||
License: Proprietary
|
Requires: glibc GConf2 nspr >= 4.13 nss >= 3.27 libX11 >= 1.6 libXtst >= 1.2
|
||||||
Requires: zenity
|
|
||||||
Group: Applications/Internet
|
Group: Applications/Internet
|
||||||
ExclusiveArch: x86_64
|
ExclusiveArch: x86_64
|
||||||
|
|
||||||
%electronmeta -D
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
All-in-one voice and text chat for gamers that's free, secure, and works on
|
All-in-one voice and text chat for gamers that's free, secure, and works on
|
||||||
both your desktop and phone.
|
both your desktop and phone.
|
||||||
@@ -22,23 +25,23 @@ both your desktop and phone.
|
|||||||
%build
|
%build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
install -Dpm755 updater_bootstrap -t %{buildroot}%{_datadir}/%{name}
|
rm -rf $RPM_BUILD_ROOT
|
||||||
install -Dpm755 %{name} -t %{buildroot}%{_bindir}
|
mkdir -p %{buildroot}%{_bindir}
|
||||||
install -Dpm644 discord.png %{buildroot}%{_datadir}/pixmaps/%{name}.png
|
mkdir -p %{buildroot}%{_datadir}/discord-canary
|
||||||
%desktop_file_install %{name}.desktop
|
cp -rv * %{buildroot}%{_datadir}/discord-canary
|
||||||
cp %{SOURCE1} -t .
|
mkdir -p %{buildroot}%{_datadir}/applications/
|
||||||
|
mkdir -p %{buildroot}%{_datadir}/pixmaps
|
||||||
|
ln -s %_datadir/discord-canary/discord-canary.desktop %{buildroot}%{_datadir}/applications/
|
||||||
|
ln -s %_datadir/discord-canary/discord.png %{buildroot}%{_datadir}/pixmaps/discord-canary.png
|
||||||
|
ln -s %_datadir/discord-canary/DiscordCanary %buildroot%_bindir/discord-canary
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license terms.html
|
%_bindir/discord-canary
|
||||||
%{_bindir}/%{name}
|
%{_datadir}/discord-canary/
|
||||||
%{_datadir}/%{name}/
|
%{_datadir}/applications/discord-canary.desktop
|
||||||
%{_appsdir}/%{name}.desktop
|
%{_datadir}/pixmaps/discord-canary.png
|
||||||
%{_datadir}/pixmaps/%{name}.png
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue May 5 2026 Gilver E. <roachy@fyralabs.com> - 1.0.1025-2
|
|
||||||
- Update build for new bootstrap format
|
|
||||||
|
|
||||||
* Thu Dec 01 2022 root - 0.0.144-1
|
* Thu Dec 01 2022 root - 0.0.144-1
|
||||||
- new version
|
- new version
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||||
|
|
||||||
Name: discord-openasar
|
Name: discord-openasar
|
||||||
Version: 1.0.143
|
Version: 1.0.137
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||||
License: MIT AND https://discord.com/terms
|
License: MIT AND https://discord.com/terms
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||||
|
|
||||||
Name: discord-ptb-openasar
|
Name: discord-ptb-openasar
|
||||||
Version: 1.0.195
|
Version: 1.0.189
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A snappier Discord rewrite with features like further customization and theming
|
Summary: A snappier Discord rewrite with features like further customization and theming
|
||||||
License: MIT AND https://discord.com/terms
|
License: MIT AND https://discord.com/terms
|
||||||
|
|||||||
@@ -1,17 +1,24 @@
|
|||||||
|
%define debug_package %{nil}
|
||||||
|
%global _build_id_links none
|
||||||
|
|
||||||
|
# Exclude private libraries
|
||||||
|
%global __requires_exclude libffmpeg.so
|
||||||
|
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||||
|
|
||||||
Name: discord-ptb
|
Name: discord-ptb
|
||||||
Version: 1.0.195
|
Version: 1.0.189
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Free Voice and Text Chat for Gamers.
|
Summary: Free Voice and Text Chat for Gamers.
|
||||||
URL: https://discord.com
|
URL: https://discord.com
|
||||||
Source0: https://dl-ptb.discordapp.net/apps/linux/%{version}/%{name}-%{version}.tar.gz
|
Source0: https://dl-ptb.discordapp.net/apps/linux/%{version}/discord-ptb-%{version}.tar.gz
|
||||||
Source1: https://discord.com/terms#/terms.html
|
License: https://discord.com/terms
|
||||||
License: Proprietary
|
Requires: glibc GConf2
|
||||||
Requires: zenity
|
Requires: nspr >= 4.13
|
||||||
|
Requires: nss >= 3.27
|
||||||
|
Requires: libX11 >= 1.6
|
||||||
|
Requires: libXtst >= 1.2
|
||||||
Group: Applications/Internet
|
Group: Applications/Internet
|
||||||
ExclusiveArch: x86_64
|
ExclusiveArch: x86_64
|
||||||
|
|
||||||
%electronmeta -D
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
All-in-one voice and text chat for gamers that's free, secure, and works on
|
All-in-one voice and text chat for gamers that's free, secure, and works on
|
||||||
both your desktop and phone.
|
both your desktop and phone.
|
||||||
@@ -22,23 +29,23 @@ both your desktop and phone.
|
|||||||
%build
|
%build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
install -Dpm755 updater_bootstrap -t %{buildroot}%{_datadir}/%{name}
|
rm -rf $RPM_BUILD_ROOT
|
||||||
install -Dpm755 %{name} -t %{buildroot}%{_bindir}
|
mkdir -p %{buildroot}%{_bindir}
|
||||||
install -Dpm644 discord.png %{buildroot}%{_datadir}/pixmaps/%{name}.png
|
mkdir -p %{buildroot}%{_datadir}/discord-ptb
|
||||||
%desktop_file_install %{name}.desktop
|
cp -rv * %{buildroot}%{_datadir}/discord-ptb
|
||||||
cp %{SOURCE1} -t .
|
mkdir -p %{buildroot}%{_datadir}/applications/
|
||||||
|
mkdir -p %{buildroot}%{_datadir}/pixmaps
|
||||||
|
ln -s %_datadir/discord-ptb/discord-ptb.desktop %{buildroot}%{_datadir}/applications/
|
||||||
|
ln -s %_datadir/discord-ptb/discord.png %{buildroot}%{_datadir}/pixmaps/discord-ptb.png
|
||||||
|
ln -s %_datadir/discord-ptb/discord-ptb %buildroot%_bindir/discord-ptb
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license terms.html
|
%_bindir/discord-ptb
|
||||||
%{_bindir}/%{name}
|
%{_datadir}/discord-ptb/
|
||||||
%{_datadir}/%{name}/
|
%{_datadir}/applications/discord-ptb.desktop
|
||||||
%{_appsdir}/%{name}.desktop
|
%{_datadir}/pixmaps/discord-ptb.png
|
||||||
%{_datadir}/pixmaps/%{name}.png
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue May 5 2026 Gilver E. <roachy@fyralabs.com> - 1.0.189-2
|
|
||||||
- Update build for new bootstrap format
|
|
||||||
|
|
||||||
* Thu Nov 17 2022 madonuko <mado@fyralabs.com> - 0.0.35-1
|
* Thu Nov 17 2022 madonuko <mado@fyralabs.com> - 0.0.35-1
|
||||||
- new version
|
- new version
|
||||||
|
|
||||||
|
|||||||
@@ -1,14 +1,13 @@
|
|||||||
Name: discord
|
Name: discord
|
||||||
Version: 1.0.143
|
Version: 1.0.137
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Free Voice and Text Chat for Gamers
|
Summary: Free Voice and Text Chat for Gamers
|
||||||
URL: https://discord.com
|
URL: https://discord.com
|
||||||
Source0: https://dl.discordapp.net/apps/linux/%{version}/%{name}-%{version}.tar.gz
|
Source0: https://dl.discordapp.net/apps/linux/%{version}/discord-%{version}.tar.gz
|
||||||
Source1: https://discord.com/terms#/terms.html
|
Source1: https://discord.com/terms#/terms.html
|
||||||
License: Proprietary
|
License: Proprietary
|
||||||
Requires: zenity
|
Group: Applications/Internet
|
||||||
Group: Applications/Internet
|
ExclusiveArch: x86_64
|
||||||
ExclusiveArch: x86_64
|
|
||||||
|
|
||||||
%electronmeta -D
|
%electronmeta -D
|
||||||
|
|
||||||
@@ -22,22 +21,23 @@ both your desktop and phone.
|
|||||||
%build
|
%build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
install -Dpm755 updater_bootstrap -t %{buildroot}%{_datadir}/%{name}
|
mkdir -p %{buildroot}%{_bindir}
|
||||||
install -Dpm755 %{name} -t %{buildroot}%{_bindir}
|
install -Dpm755 ./* -t %{buildroot}%{_datadir}/discord
|
||||||
install -Dpm644 %{name}.png -t %{buildroot}%{_datadir}/pixmaps
|
mkdir -p %{buildroot}%{_appsdir}
|
||||||
%desktop_file_install %{name}.desktop
|
mkdir -p %{buildroot}%{_datadir}/pixmaps
|
||||||
|
mv %{buildroot}%{_datadir}/discord/discord.desktop -t %{buildroot}%{_appsdir}
|
||||||
|
mv %{buildroot}%{_datadir}/discord/discord.png -t %{buildroot}%{_datadir}/pixmaps
|
||||||
|
mv %{buildroot}%{_datadir}/discord/discord -t %{buildroot}%{_bindir}
|
||||||
cp %{SOURCE1} -t .
|
cp %{SOURCE1} -t .
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license terms.html
|
%license terms.html
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/discord
|
||||||
%{_datadir}/%{name}/
|
%{_datadir}/discord/
|
||||||
%{_appsdir}/%{name}.desktop
|
%{_appsdir}/discord.desktop
|
||||||
%{_datadir}/pixmaps/%{name}.png
|
%{_datadir}/pixmaps/discord.png
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue May 5 2026 Gilver E. <roachy@fyralabs.com> - 1.0.136-4
|
|
||||||
- Remove unused files from package
|
|
||||||
* Mon May 4 2026 Gilver E. <roachy@fyralabs.com> - 1.0.136-2
|
* Mon May 4 2026 Gilver E. <roachy@fyralabs.com> - 1.0.136-2
|
||||||
- Updated /usr/bin symlink
|
- Updated /usr/bin symlink
|
||||||
* Thu Jan 19 2023 madonuko <mado@fyralabs.com> - 0.0.143-1
|
* Thu Jan 19 2023 madonuko <mado@fyralabs.com> - 0.0.143-1
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
%global commit 373646a12620a82e9684d79c1066f9b48bf3eed1
|
%global commit 0149a82705e97b2f9cdccbc6076b4f213c9dc890
|
||||||
%global commit_date 20260613
|
%global commit_date 20260410
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
Name: envision-nightly
|
Name: envision-nightly
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
%global appid com.pikaos.falcondgui
|
|
||||||
|
|
||||||
Name: falcond-gui
|
Name: falcond-gui
|
||||||
Version: 1.0.3
|
Version: 1.0.2
|
||||||
Release: 1%{?dist}
|
Release: 1%?dist
|
||||||
Summary: A GTK4/LibAdwaita application to control and monitor the Falcond gaming optimization daemon
|
Summary: A GTK4/LibAdwaita application to control and monitor the Falcond gaming optimization daemon
|
||||||
SourceLicense: MIT
|
SourceLicense: MIT
|
||||||
License: (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND CC0-1.0 AND ISC AND (MIT OR Apache-2.0) AND MIT AND (Unlicense OR MIT)
|
License: (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND CC0-1.0 AND ISC AND (MIT OR Apache-2.0) AND MIT AND (Unlicense OR MIT)
|
||||||
@@ -32,12 +30,12 @@ falcond-gui provides a user-friendly graphical interface for managing falcond. I
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%cargo_install
|
%cargo_install
|
||||||
%desktop_file_install res/%{appid}.desktop
|
desktop-file-install res/%{name}.desktop
|
||||||
install -Dm644 res/%{appid}.png -t %{buildroot}%{_hicolordir}/512x512/apps/
|
install -Dm644 res/falcond.png -t %{buildroot}%{_hicolordir}/512x512/apps/
|
||||||
%{cargo_license_online} > LICENSE.dependencies
|
%{cargo_license_online} > LICENSE.dependencies
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%desktop_file_validate %{buildroot}%{_datadir}/applications/%{appid}.desktop
|
desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
|
||||||
|
|
||||||
%posttrans
|
%posttrans
|
||||||
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor/ &>/dev/null || :
|
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor/ &>/dev/null || :
|
||||||
@@ -46,8 +44,8 @@ install -Dm644 res/%{appid}.png -t %{buildroot}%{_hicolordir}/512x512/apps/
|
|||||||
%doc ../README.md
|
%doc ../README.md
|
||||||
%license ../LICENSE.md
|
%license ../LICENSE.md
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
%{_hicolordir}/512x512/apps/%{appid}.png
|
%{_hicolordir}/512x512/apps/falcond.png
|
||||||
%{_appsdir}/%{appid}.desktop
|
%{_appsdir}/%{name}.desktop
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Jan 1 2026 Gilver E. <roachy@fyralabs.com> - 1.0.0-1
|
* Thu Jan 1 2026 Gilver E. <roachy@fyralabs.com> - 1.0.0-1
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
rpm.version(gitea("git.pika-os.com", "general-packages/falcond-gui"));
|
rpm.version(get("https://git.pika-os.com/api/v1/repos/general-packages/falcond-gui/releases").json_arr()[0].tag_name);
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
%global __provides_exclude_from %{_datadir}/%{name}/.*\\.so
|
||||||
|
|
||||||
Name: feishin
|
Name: feishin
|
||||||
Version: 1.13.0
|
Version: 1.11.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A modern self-hosted music player
|
Summary: A modern self-hosted music player
|
||||||
License: GPL-3.0
|
License: GPL-3.0
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#? https://github.com/flameshot-org/flameshot/blob/master/packaging/rpm/fedora/flameshot.spec
|
#? https://github.com/flameshot-org/flameshot/blob/master/packaging/rpm/fedora/flameshot.spec
|
||||||
|
|
||||||
%global ver 13.3.0
|
%global ver 13.3.0
|
||||||
%global commit 18accdcc9a739233438b1591965067e3e9cdec72
|
%global commit 1534a895e757b51d34ab5b1184344f04d67b8ebc
|
||||||
%global shortcommit %{sub %{commit} 1 7}
|
%global shortcommit %{sub %{commit} 1 7}
|
||||||
%global commit_date 20260618
|
%global commit_date 20260504
|
||||||
%global devel_name QtColorWidgets
|
%global devel_name QtColorWidgets
|
||||||
%global _distro_extra_cflags -fuse-ld=mold
|
%global _distro_extra_cflags -fuse-ld=mold
|
||||||
%global _distro_extra_cxxflags -fuse-ld=mold
|
%global _distro_extra_cxxflags -fuse-ld=mold
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Name: fontviewer
|
Name: fontviewer
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 1.3.0
|
Version: 1.2.0
|
||||||
Release: 1%{?dist}
|
Release: 1%?dist
|
||||||
Summary: View and install fonts
|
Summary: View and install fonts
|
||||||
|
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
%global commit 7cd0395ebd3e0591c0ae4f850f22425b0be30a45
|
%global commit eebb15d3d940823883afa67bf62692874df7f2d1
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commit_date 20260612
|
%global commit_date 20260426
|
||||||
%global ver 2.2.1^
|
%global ver 2.2.1^
|
||||||
%global base_name goofcord
|
%global base_name goofcord
|
||||||
%global git_name GoofCord
|
%global git_name GoofCord
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
%global crate halloy
|
%global crate halloy
|
||||||
|
|
||||||
Name: halloy
|
Name: halloy
|
||||||
Version: 2026.7.2
|
Version: 2026.6
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: An open-source IRC client written in Rust, with the Iced GUI library
|
Summary: An open-source IRC client written in Rust, with the Iced GUI library
|
||||||
Packager: Yoong jin <solomoncyj@gmail.com>
|
Packager: Yoong jin <solomoncyj@gmail.com>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: helium-browser-bin
|
Name: helium-browser-bin
|
||||||
Version: 0.13.4.1
|
Version: 0.12.1.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Private, fast, and honest web browser based on Chromium
|
Summary: Private, fast, and honest web browser based on Chromium
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Name: juce
|
Name: juce
|
||||||
Version: 8.0.13
|
Version: 8.0.12
|
||||||
Release: 1%{?dist}
|
Release: 4%{?dist}
|
||||||
License: AGPL-3.0-or-later
|
License: AGPL-3.0-or-later
|
||||||
Summary: framework for audio application and plug-in development
|
Summary: framework for audio application and plug-in development
|
||||||
URL: https://juce.com
|
URL: https://juce.com
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
%global pure_protobuf_version 2.0.0
|
%global pure_protobuf_version 2.0.0
|
||||||
|
|
||||||
Name: komikku
|
Name: komikku
|
||||||
Version: 50.7.0
|
Version: 50.3.0
|
||||||
%forgemeta
|
%forgemeta
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A manga reader for GNOME
|
Summary: A manga reader for GNOME
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
Name: kopia
|
Name: kopia
|
||||||
%electronmeta -D
|
%electronmeta -D
|
||||||
Version: 0.23.1
|
Version: 0.22.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A backup/restore tool that allows you to create encrypted snapshots
|
Summary: A backup/restore tool that allows you to create encrypted snapshots
|
||||||
|
|
||||||
@@ -43,7 +43,6 @@ A graphical user interface for %{name}.
|
|||||||
%build
|
%build
|
||||||
%global gomodulesmode GO111MODULE=on
|
%global gomodulesmode GO111MODULE=on
|
||||||
%gobuild -o %{name} .
|
%gobuild -o %{name} .
|
||||||
echo "Electron Builder" > %{rpmbuilddir}/webapp-tool.txt
|
|
||||||
|
|
||||||
pushd app
|
pushd app
|
||||||
%npm_build -B
|
%npm_build -B
|
||||||
|
|||||||
@@ -4,5 +4,6 @@ project pkg {
|
|||||||
}
|
}
|
||||||
labels {
|
labels {
|
||||||
nightly = 1
|
nightly = 1
|
||||||
|
mock = 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,16 +1,19 @@
|
|||||||
%global commit 158f537e7d4ce13ff7df49b6cb09c0cd27b8a517
|
%global commit e55cd408f7eee7d1009a5c0bb4003914292f082d
|
||||||
%global commit_date 20260616
|
%global commit_date 20260427
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global debug_package %nil
|
%global debug_package %nil
|
||||||
# terrible evil no good very bad hack
|
%global __strip /bin/true
|
||||||
# fix one day
|
%global __provides_exclude ^((libffmpeg[.]so.*)|(lib.*\\.so.*))$
|
||||||
%global __requires_exclude_from (.*)lib(.*)so(.*)
|
%ifnarch aarch64
|
||||||
|
%global __requires_exclude ^((libffmpeg[.]so.*)|(lib.*\\.so.*)|(.*\\aarch64*\\.so.*))$
|
||||||
|
%elifarch aarch64
|
||||||
|
%global __requires_exclude ^((libffmpeg[.]so.*)|(lib.*\\.so.*)|(.*\\x86_64*\\.so.*)|(.*\\x86-64*\\.so.*))$
|
||||||
|
%endif
|
||||||
|
|
||||||
Name: legcord-nightly
|
Name: legcord-nightly
|
||||||
%electronmeta -D
|
|
||||||
Version: %commit_date.%shortcommit
|
Version: %commit_date.%shortcommit
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: OSL-3.0 AND %{electron_license}
|
License: OSL-3.0
|
||||||
Summary: Custom lightweight Discord client designed to enhance your experience
|
Summary: Custom lightweight Discord client designed to enhance your experience
|
||||||
URL: https://github.com/Legcord/Legcord
|
URL: https://github.com/Legcord/Legcord
|
||||||
Group: Applications/Internet
|
Group: Applications/Internet
|
||||||
@@ -28,21 +31,38 @@ while keeping everything lightweight.
|
|||||||
%git_clone %{url}.git %{commit}
|
%git_clone %{url}.git %{commit}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
echo "Electron Builder" > %{rpmbuilddir}/webapp-tool.txt
|
pnpm install
|
||||||
%pnpm_build -r build
|
pnpm run build
|
||||||
|
pnpm run package --linux AppImage tar.gz
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%electron_install -i legcord -l -I dist/.icon-set/icon_16.png -I dist/.icon-set/icon_32.png -I dist/.icon-set/icon_48x48.png -I dist/.icon-set/icon_64.png -I dist/.icon-set/icon_128.png -I dist/.icon-set/icon_256.png -I dist/.icon-set/icon_512.png -I dist/.icon-set/icon_1024.png
|
mkdir -p %{buildroot}%{_datadir}/legcord
|
||||||
|
%ifarch aarch64
|
||||||
|
mv dist/linux-arm64-unpacked/* %{buildroot}%{_datadir}/legcord
|
||||||
|
%else
|
||||||
|
mv dist/linux-unpacked/* -t %{buildroot}%{_datadir}/legcord
|
||||||
|
%endif
|
||||||
|
|
||||||
|
mkdir -p %{buildroot}%{_bindir}
|
||||||
|
ln -sf %{_datadir}/legcord/legcord %{buildroot}%{_bindir}/legcord
|
||||||
|
install -Dm644 dist/.icon-set/icon_16.png %{buildroot}%{_iconsdir}/hicolor/16x16/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_32.png %{buildroot}%{_iconsdir}/hicolor/32x32/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_48x48.png %{buildroot}%{_iconsdir}/hicolor/48x48/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_64.png %{buildroot}%{_iconsdir}/hicolor/64x64/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_128.png %{buildroot}%{_iconsdir}/hicolor/128x128/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_256.png %{buildroot}%{_iconsdir}/hicolor/256x256/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_512.png %{buildroot}%{_iconsdir}/hicolor/512x512/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_1024.png %{buildroot}%{_iconsdir}/hicolor/1024x1024/apps/legcord.png
|
||||||
|
|
||||||
dist/Legcord-*.AppImage --appimage-extract '*.desktop'
|
dist/Legcord-*.AppImage --appimage-extract '*.desktop'
|
||||||
%desktop_file_install -k Exec,Icon -v "%{_libdir}/legcord-nightly/Legcord",legcord -u %U -f squashfs-root/Legcord.desktop
|
desktop-file-install --set-key=Exec --set-value="%{_datadir}/legcord/legcord %U" squashfs-root/legcord.desktop
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc README.md
|
%doc README.md
|
||||||
%license license.txt
|
%license license.txt
|
||||||
%{_bindir}/legcord-nightly
|
%{_bindir}/legcord
|
||||||
%{_datadir}/applications/Legcord.desktop
|
%{_datadir}/applications/legcord.desktop
|
||||||
%{_libdir}/legcord-nightly/
|
%{_datadir}/legcord/
|
||||||
%{_iconsdir}/hicolor/16x16/apps/legcord.png
|
%{_iconsdir}/hicolor/16x16/apps/legcord.png
|
||||||
%{_iconsdir}/hicolor/32x32/apps/legcord.png
|
%{_iconsdir}/hicolor/32x32/apps/legcord.png
|
||||||
%{_iconsdir}/hicolor/48x48/apps/legcord.png
|
%{_iconsdir}/hicolor/48x48/apps/legcord.png
|
||||||
@@ -53,9 +73,6 @@ dist/Legcord-*.AppImage --appimage-extract '*.desktop'
|
|||||||
%{_iconsdir}/hicolor/1024x1024/apps/legcord.png
|
%{_iconsdir}/hicolor/1024x1024/apps/legcord.png
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon May 18 2026 june-fish <june@fyralabs.com> - 1.2.4-1
|
|
||||||
- Use electron macros
|
|
||||||
|
|
||||||
* Fri Nov 22 2024 owen <owen@fyralabs.com> - 1.0.2-2
|
* Fri Nov 22 2024 owen <owen@fyralabs.com> - 1.0.2-2
|
||||||
- Add nightly package.
|
- Add nightly package.
|
||||||
|
|
||||||
|
|||||||
@@ -2,4 +2,7 @@ project pkg {
|
|||||||
rpm {
|
rpm {
|
||||||
spec = "legcord.spec"
|
spec = "legcord.spec"
|
||||||
}
|
}
|
||||||
|
labels {
|
||||||
|
mock =1
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,17 @@
|
|||||||
%global debug_package %nil
|
%define debug_package %nil
|
||||||
|
|
||||||
# terrible evil no good very bad hack
|
# Exclude private libraries
|
||||||
# fix one day
|
%global __provides_exclude ^((libffmpeg[.]so.*)|(lib.*\\.so.*))$
|
||||||
%global __requires_exclude_from (.*)lib(.*)so(.*)
|
%ifnarch aarch64
|
||||||
|
%global __requires_exclude ^((libffmpeg[.]so.*)|(lib.*\\.so.*)|(.*\\aarch64*\\.so.*))$
|
||||||
|
%elifarch aarch64
|
||||||
|
%global __requires_exclude ^((libffmpeg[.]so.*)|(lib.*\\.so.*)|(.*\\x86_64*\\.so.*)|(.*\\x86-64*\\.so.*))$
|
||||||
|
%endif
|
||||||
|
|
||||||
Name: legcord
|
Name: legcord
|
||||||
%electronmeta -D
|
|
||||||
Version: 1.2.4
|
Version: 1.2.4
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: OSL-3.0 AND %{electron_license}
|
License: OSL-3.0
|
||||||
Summary: Custom lightweight Discord client designed to enhance your experience
|
Summary: Custom lightweight Discord client designed to enhance your experience
|
||||||
URL: https://github.com/Legcord/Legcord
|
URL: https://github.com/Legcord/Legcord
|
||||||
Group: Applications/Internet
|
Group: Applications/Internet
|
||||||
@@ -27,21 +30,38 @@ while keeping everything lightweight.
|
|||||||
%git_clone %url v%version
|
%git_clone %url v%version
|
||||||
|
|
||||||
%build
|
%build
|
||||||
echo "Electron Builder" > %{rpmbuilddir}/webapp-tool.txt
|
pnpm install
|
||||||
%pnpm_build -r build
|
pnpm run build
|
||||||
|
pnpm run package --linux AppImage tar.gz
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%electron_install -i legcord -l -I dist/.icon-set/icon_16.png -I dist/.icon-set/icon_32.png -I dist/.icon-set/icon_48x48.png -I dist/.icon-set/icon_64.png -I dist/.icon-set/icon_128.png -I dist/.icon-set/icon_256.png -I dist/.icon-set/icon_512.png -I dist/.icon-set/icon_1024.png
|
mkdir -p %{buildroot}%{_datadir}/legcord
|
||||||
|
%ifarch aarch64
|
||||||
|
mv dist/linux-arm64-unpacked/* %{buildroot}%{_datadir}/legcord
|
||||||
|
%else
|
||||||
|
mv dist/linux-unpacked/* -t %{buildroot}%{_datadir}/legcord
|
||||||
|
%endif
|
||||||
|
|
||||||
|
mkdir -p %{buildroot}%{_bindir}
|
||||||
|
ln -sf %{_datadir}/legcord/legcord %{buildroot}%{_bindir}/legcord
|
||||||
|
install -Dm644 dist/.icon-set/icon_16.png %{buildroot}%{_iconsdir}/hicolor/16x16/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_32.png %{buildroot}%{_iconsdir}/hicolor/32x32/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_48x48.png %{buildroot}%{_iconsdir}/hicolor/48x48/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_64.png %{buildroot}%{_iconsdir}/hicolor/64x64/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_128.png %{buildroot}%{_iconsdir}/hicolor/128x128/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_256.png %{buildroot}%{_iconsdir}/hicolor/256x256/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_512.png %{buildroot}%{_iconsdir}/hicolor/512x512/apps/legcord.png
|
||||||
|
install -Dm644 dist/.icon-set/icon_1024.png %{buildroot}%{_iconsdir}/hicolor/1024x1024/apps/legcord.png
|
||||||
|
|
||||||
dist/Legcord-*.AppImage --appimage-extract '*.desktop'
|
dist/Legcord-*.AppImage --appimage-extract '*.desktop'
|
||||||
%desktop_file_install -k Exec,Icon -v "%{_libdir}/legcord/Legcord",legcord -u %U -f squashfs-root/Legcord.desktop
|
desktop-file-install --set-key=Exec --set-value="%{_datadir}/legcord/legcord %U" squashfs-root/legcord.desktop
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc README.md
|
%doc README.md
|
||||||
%license license.txt
|
%license license.txt
|
||||||
%{_bindir}/legcord
|
%{_bindir}/legcord
|
||||||
%{_datadir}/applications/Legcord.desktop
|
%{_datadir}/applications/legcord.desktop
|
||||||
%{_libdir}/legcord/
|
%{_datadir}/legcord/
|
||||||
%{_iconsdir}/hicolor/16x16/apps/legcord.png
|
%{_iconsdir}/hicolor/16x16/apps/legcord.png
|
||||||
%{_iconsdir}/hicolor/32x32/apps/legcord.png
|
%{_iconsdir}/hicolor/32x32/apps/legcord.png
|
||||||
%{_iconsdir}/hicolor/48x48/apps/legcord.png
|
%{_iconsdir}/hicolor/48x48/apps/legcord.png
|
||||||
@@ -52,9 +72,6 @@ dist/Legcord-*.AppImage --appimage-extract '*.desktop'
|
|||||||
%{_iconsdir}/hicolor/1024x1024/apps/legcord.png
|
%{_iconsdir}/hicolor/1024x1024/apps/legcord.png
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon May 18 2026 june-fish <june@fyralabs.com> - 1.2.4-1
|
|
||||||
- Use electron macros
|
|
||||||
|
|
||||||
* Mon Oct 21 2024 madonuko <mado@fyralabs.com> - 1.0.2-2
|
* Mon Oct 21 2024 madonuko <mado@fyralabs.com> - 1.0.2-2
|
||||||
- Rename to LegCord.
|
- Rename to LegCord.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
project pkg {
|
|
||||||
arches = ["x86_64"]
|
|
||||||
rpm {
|
|
||||||
spec = "mount-manager.spec"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
Name: mount-manager
|
|
||||||
Version: 0.1.5
|
|
||||||
Release: 1%{?dist}
|
|
||||||
Summary: SMB Mount Manager helps users mount SMB shares through a simple GTK interface. It checks the share, asks for credentials, tests the mount, and creates a startup mount managed by systemd.
|
|
||||||
URL: https://github.com/Xarishark/mount-manager
|
|
||||||
Source0: https://github.com/Xarishark/mount-manager/archive/refs/tags/v%{version}.tar.gz
|
|
||||||
License: GPL-3.0-only
|
|
||||||
Requires: cifs-utils
|
|
||||||
Requires: gtk4
|
|
||||||
Requires: polkit
|
|
||||||
Requires: python3-gobject
|
|
||||||
Provides: SMB-Mount-Manager
|
|
||||||
BuildArch: noarch
|
|
||||||
Packager: Zacharias Xenakis <xarishark@outlook.com>
|
|
||||||
|
|
||||||
%description
|
|
||||||
%{summary}.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -n mount-manager-%{version}
|
|
||||||
|
|
||||||
%build
|
|
||||||
|
|
||||||
%install
|
|
||||||
install -Dm 755 mount_manager.py %{buildroot}%{_bindir}/mount-manager
|
|
||||||
install -Dm 644 data/applications/io.github.xarishark.mount-manager.desktop %{buildroot}%{_appsdir}/io.github.xarishark.mount-manager.desktop
|
|
||||||
install -Dm 644 data/icons/hicolor/scalable/apps/io.github.xarishark.mount-manager.svg %{buildroot}%{_scalableiconsdir}/io.github.xarishark.mount-manager.svg
|
|
||||||
install -Dm 644 data/metainfo/io.github.xarishark.mount-manager.metainfo.xml %{buildroot}%{_metainfodir}/io.github.xarishark.mount-manager.metainfo.xml
|
|
||||||
|
|
||||||
%files
|
|
||||||
%doc README.md
|
|
||||||
%license LICENSE
|
|
||||||
%{_bindir}/mount-manager
|
|
||||||
%{_appsdir}/io.github.xarishark.mount-manager.desktop
|
|
||||||
%{_scalableiconsdir}/io.github.xarishark.mount-manager.svg
|
|
||||||
%{_metainfodir}/io.github.xarishark.mount-manager.metainfo.xml
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Fri May 15 2026 Zacharias Xenakis <xarishark@outlook.com>
|
|
||||||
- Initial package
|
|
||||||
* Fri May 15 2026 Zacharias Xenakis <xarishark@outlook.com>
|
|
||||||
- migrated to new source GIT
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
rpm.version(gh("Xarishark/mount-manager"));
|
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
# Disable X11 for RHEL 10+
|
# Disable X11 for RHEL 10+
|
||||||
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
|
%bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10]
|
||||||
|
|
||||||
%global commit 2d5dfb343aeac72e4ee7303dbf34347a0ff4425d
|
%global commit cfd818bcaef262f82596f49444ee80073fa6d49a
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global commit_date 20260618
|
%global commit_date 20260506
|
||||||
%global ver 0.41.0
|
%global ver 0.41.0
|
||||||
|
|
||||||
Name: mpv-nightly
|
Name: mpv-nightly
|
||||||
@@ -21,7 +21,6 @@ BuildRequires: gcc
|
|||||||
BuildRequires: libappstream-glib
|
BuildRequires: libappstream-glib
|
||||||
BuildRequires: libatomic
|
BuildRequires: libatomic
|
||||||
BuildRequires: meson
|
BuildRequires: meson
|
||||||
BuildRequires: cmake
|
|
||||||
BuildRequires: python3-docutils
|
BuildRequires: python3-docutils
|
||||||
|
|
||||||
BuildRequires: perl(Encode)
|
BuildRequires: perl(Encode)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
project pkg {
|
project pkg {
|
||||||
rpm {
|
rpm {
|
||||||
spec = "KTailctl.spec"
|
spec = "multipass.spec"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
Name: multipass
|
||||||
|
Version: 1.16.1
|
||||||
|
Release: 1%?dist
|
||||||
|
Summary: Multipass orchestrates virtual Ubuntu instances
|
||||||
|
License: GPL-3.0
|
||||||
|
URL: https://canonical.com/multipass
|
||||||
|
|
||||||
|
BuildRequires: cmake gcc-c++ mold ninja-build cmake(fmt) openssl-devel cmake(gRPC) cmake(yaml-cpp) cmake(semver) cmake(Qt6) cmake(Qt6Core) cmake(Qt6Concurrent) cmake(Qt6Network)
|
||||||
|
|
||||||
|
%description
|
||||||
|
Multipass is a lightweight VM manager for Linux, Windows and macOS. It's
|
||||||
|
designed for developers who want to spin up a fresh Ubuntu environment with a
|
||||||
|
single command. It uses KVM on Linux, Hyper-V on Windows and QEMU on macOS to
|
||||||
|
run virtual machines with minimal overhead. It can also use VirtualBox on
|
||||||
|
Windows and macOS. Multipass will fetch Ubuntu images for you and keep them up
|
||||||
|
to date.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%git_clone https://github.com/canonical/%{name}.git v%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
export VCPKG_FORCE_SYSTEM_BINARIES=1
|
||||||
|
%cmake .
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%files
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Oct 27 2025 Jaiden Riordan <jade@fyralabs.com>
|
||||||
|
- Initial package
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
project pkg {
|
|
||||||
rpm {
|
|
||||||
spec = "neohtop-cli.spec"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
%define debug_package %{nil}
|
|
||||||
|
|
||||||
%global goipath github.com/abdenasser/neohtop-cli
|
|
||||||
Version: 0.1.13
|
|
||||||
|
|
||||||
%gometa -f
|
|
||||||
|
|
||||||
Name: neohtop-cli
|
|
||||||
Release: 1%{?dist}
|
|
||||||
Summary: A cross-platform terminal process monitor with btop-style visualizations
|
|
||||||
License: MIT
|
|
||||||
URL: https://github.com/Abdenasser/neohtop-cli
|
|
||||||
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
|
|
||||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
|
||||||
BuildRequires: go-rpm-macros
|
|
||||||
|
|
||||||
%description
|
|
||||||
%summary.
|
|
||||||
|
|
||||||
%gopkg
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup
|
|
||||||
|
|
||||||
%build
|
|
||||||
%define gomodulesmode GO111MODULE=on
|
|
||||||
pushd cli
|
|
||||||
%gobuild -o %{gobuilddir}/../neohtop-cli %{goipath}/
|
|
||||||
popd
|
|
||||||
|
|
||||||
%install
|
|
||||||
install -Dm 0755 cli/neohtop-cli %{buildroot}%{_bindir}/neohtop-cli
|
|
||||||
|
|
||||||
%files
|
|
||||||
%doc README.md CONTRIBUTING.md
|
|
||||||
%license LICENSE
|
|
||||||
%{_bindir}/neohtop-cli
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Sun Jun 14 2026 Owen Zimmerman <owen@fyralabs.com>
|
|
||||||
- Use go packaging
|
|
||||||
|
|
||||||
* Sun Mar 29 2026 Owen Zimmerman <owen@fyralabs.com>
|
|
||||||
- Initial commit
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
rpm.version(gh("Abdenasser/neohtop-cli"));
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
%define debug_package %nil
|
%define debug_package %nil
|
||||||
|
|
||||||
Name: peazip
|
Name: peazip
|
||||||
Version: 11.1.0
|
Version: 11.0.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Free Zip / Unzip software and Rar file extractor. Cross-platform file and archive manager
|
Summary: Free Zip / Unzip software and Rar file extractor. Cross-platform file and archive manager
|
||||||
License: LGPL-3.0-only
|
License: LGPL-3.0-only
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
%global metainfo_commit 47f57d55cc9897a31ac8d0a6411def15cddfe1c4
|
%global metainfo_commit 92832ea1d6adc2b226742d29bc41f5156426f898
|
||||||
|
|
||||||
Name: proton-vpn-gtk-app
|
Name: proton-vpn-gtk-app
|
||||||
Version: 4.16.5
|
Version: 4.16.1
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Official ProtonVPN Linux app
|
Summary: Official ProtonVPN Linux app
|
||||||
License: GPL-3.0-only
|
License: GPL-3.0-only
|
||||||
URL: https://protonvpn.com/download-linux
|
URL: https://protonvpn.com/download-linux
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
Name: terra-%{pypi_name}
|
Name: terra-%{pypi_name}
|
||||||
Version: 1.14.1
|
Version: 1.14.1
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Simple wrapper that does winetricks things for Proton enabled games
|
Summary: Simple wrapper that does winetricks things for Proton enabled games
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
%global commit d4283e2e9bae6a95673227e41d2c345d7780990a
|
%global commit b8a8e25fdc8a9f7c479535144ca8f99a31aa299f
|
||||||
%global commit_date 20260519
|
%global commit_date 20260325
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
Name: rasputin
|
Name: rasputin
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
project pkg {
|
|
||||||
rpm {
|
|
||||||
spec = "resources.spec"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,70 +0,0 @@
|
|||||||
Name: resources
|
|
||||||
Version: 1.10.2
|
|
||||||
Release: 1%{?dist}
|
|
||||||
Summary: Keep an eye on system resources
|
|
||||||
License: GPL-3.0-or-later
|
|
||||||
URL: https://gitlab.gnome.org/GNOME/Incubator/resources
|
|
||||||
Source0: %{url}/-/archive/v%{version}/resources-v%{version}.tar.gz
|
|
||||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
|
||||||
|
|
||||||
BuildRequires: meson
|
|
||||||
BuildRequires: gcc
|
|
||||||
BuildRequires: cargo
|
|
||||||
BuildRequires: ninja-build
|
|
||||||
BuildRequires: desktop-file-utils
|
|
||||||
BuildRequires: pkgconfig(gtk4)
|
|
||||||
BuildRequires: pkgconfig(libadwaita-1)
|
|
||||||
|
|
||||||
Requires: cairo
|
|
||||||
Requires: graphene
|
|
||||||
Requires: gtk4
|
|
||||||
Requires: hicolor-icon-theme
|
|
||||||
Requires: libadwaita
|
|
||||||
Requires: libgcc
|
|
||||||
Requires: polkit
|
|
||||||
|
|
||||||
|
|
||||||
%description
|
|
||||||
Resources is a simple yet powerful monitor for your system resources
|
|
||||||
and processes, written in Rust and using GTK 4 and libadwaita for its GUI.
|
|
||||||
It’s capable of displaying usage and details of your CPU, memory, GPUs, NPUs,
|
|
||||||
network interfaces and block devices. It’s also capable of listing and
|
|
||||||
terminating running graphical applications as well as processes.
|
|
||||||
|
|
||||||
Resources is not a program that will try to display every single possible
|
|
||||||
piece of information about each tiny part of your device. Instead, it aims
|
|
||||||
to strike a balance between information richness, user-friendliness and a
|
|
||||||
balanced user interface — showing you most of the information most
|
|
||||||
of you need most of the time.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -n %{name}-v%{version}
|
|
||||||
|
|
||||||
%conf
|
|
||||||
%meson
|
|
||||||
|
|
||||||
%build
|
|
||||||
%meson_build
|
|
||||||
|
|
||||||
%install
|
|
||||||
%meson_install
|
|
||||||
%find_lang resources
|
|
||||||
|
|
||||||
%files -f resources.lang
|
|
||||||
%doc README.md
|
|
||||||
%license LICENSE
|
|
||||||
%{_bindir}/resources
|
|
||||||
%{_libexecdir}/resources/resources-adjust
|
|
||||||
%{_libexecdir}/resources/resources-kill
|
|
||||||
%{_libexecdir}/resources/resources-processes
|
|
||||||
%{_appsdir}/net.nokyan.Resources.Devel.desktop
|
|
||||||
%{_datadir}/glib-2.0/schemas/net.nokyan.Resources.Devel.gschema.xml
|
|
||||||
%{_datadir}/polkit-1/actions/net.nokyan.Resources.Devel.policy
|
|
||||||
%{_datadir}/resources/resources.gresource
|
|
||||||
%{_scalableiconsdir}/net.nokyan.Resources.Devel.svg
|
|
||||||
%{_hicolordir}/symbolic/apps/net.nokyan.Resources.Devel-symbolic.svg
|
|
||||||
%{_metainfodir}/net.nokyan.Resources.Devel.metainfo.xml
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Sat May 16 2026 Owen Zimmerman <owen@fyralabs.com>
|
|
||||||
- Initial commit
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
rpm.version(gitlab_tag("https://gitlab.gnome.org", "39041"));
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
%global commit d4283e2e9bae6a95673227e41d2c345d7780990a
|
%global commit b8a8e25fdc8a9f7c479535144ca8f99a31aa299f
|
||||||
%global commit_date 20260519
|
%global commit_date 20260325
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
Name: appset
|
Name: appset
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
%global commit 8d837571ef02a4c1c4d74e419ebc59d66b47b685
|
%global commit ecc8fff9109001717d913dd5a4d30573f4a3f2c5
|
||||||
%global commit_date 20260521
|
%global commit_date 20260401
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
Name: rp-bookshelf
|
Name: rp-bookshelf
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
%global commit 0e6cd08585bccd8f56c69bf8785777c2e3e67c4a
|
%global commit 7b4843db7b7774110077760973e8050b4e632f86
|
||||||
%global commit_date 20260520
|
%global commit_date 20260331
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
Name: rpcc
|
Name: rpcc
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
%global commit 697168fa320f7d0cabeb5edcf9778fff48e32be2
|
%global commit 8ce6f3eadf8e41d364d76d0853ae7f0cbb4fc23d
|
||||||
%global commit_date 20260519
|
%global commit_date 20260501
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
Name: rpinters
|
Name: rpinters
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
%global ver 2026-06-18
|
%global ver 2026-05-07
|
||||||
%global goodver %(echo %ver | sed 's/-//g')
|
%global goodver %(echo %ver | sed 's/-//g')
|
||||||
%global __brp_mangle_shebangs %{nil}
|
%global __brp_mangle_shebangs %{nil}
|
||||||
%bcond_without mold
|
%bcond_without mold
|
||||||
@@ -23,7 +23,6 @@ BuildRequires: pkgconfig(alsa)
|
|||||||
BuildRequires: pkgconfig(gtk+-3.0)
|
BuildRequires: pkgconfig(gtk+-3.0)
|
||||||
BuildRequires: pkgconfig(libudev)
|
BuildRequires: pkgconfig(libudev)
|
||||||
BuildRequires: pkgconfig(xcb-cursor)
|
BuildRequires: pkgconfig(xcb-cursor)
|
||||||
BuildRequires: pkgconfig(openssl)
|
|
||||||
Packager: madonuko <mado@fyralabs.com>
|
Packager: madonuko <mado@fyralabs.com>
|
||||||
|
|
||||||
%description %_description
|
%description %_description
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: rustnet
|
Name: rustnet
|
||||||
Version: 1.4.0
|
Version: 1.3.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A cross-platform network monitoring terminal UI tool built with Rust
|
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
|
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
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: scrcpy
|
Name: scrcpy
|
||||||
Version: 4.0
|
Version: 3.3.4
|
||||||
Release: 1%{?dist}
|
Release: 1%?dist
|
||||||
Summary: Display and control your Android device
|
Summary: Display and control your Android device
|
||||||
License: Apache-2.0 AND Proprietary
|
License: Apache-2.0 AND Proprietary
|
||||||
URL: https://github.com/Genymobile/scrcpy
|
URL: https://github.com/Genymobile/scrcpy
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
- "node": "24.15.0"
|
- "node": "24.14.0"
|
||||||
+ "node": ">= 22"
|
+ "node": ">= 22"
|
||||||
},
|
},
|
||||||
"build": {
|
"build": {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Name: signal-desktop
|
Name: signal-desktop
|
||||||
%electronmeta -aD
|
%electronmeta -aD
|
||||||
Version: 8.15.0
|
Version: 8.8.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A private messenger for Windows, macOS, and Linux
|
Summary: A private messenger for Windows, macOS, and Linux
|
||||||
URL: https://signal.org
|
URL: https://signal.org
|
||||||
@@ -70,11 +70,9 @@ pushd sticker-creator
|
|||||||
popd
|
popd
|
||||||
%dnl %pnpm_build -r generate,build:policy-files,generate,build:esbuild:prod
|
%dnl %pnpm_build -r generate,build:policy-files,generate,build:esbuild:prod
|
||||||
%{__pnpm} run generate
|
%{__pnpm} run generate
|
||||||
%{__pnpm} run build-linux --%{_electron_cpu} --linux AppImage
|
%{__pnpm} run build-linux
|
||||||
echo "Electron Builder" > %{rpmbuilddir}/webapp-tool.txt
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mv ./packages/mute-state-change/LICENSE ./packages/mute-state-change/LICENSE.mute-state-change
|
|
||||||
%electron_install -i signal -l -I build/icons/png
|
%electron_install -i signal -l -I build/icons/png
|
||||||
|
|
||||||
%desktop_file_install %{SOURCE1}
|
%desktop_file_install %{SOURCE1}
|
||||||
@@ -84,15 +82,13 @@ install -Dm644 $OUTDIR/resources/$policy %{buildroot}%{_datadir}/polkit-1/rules.
|
|||||||
rm $OUTDIR/resources/$policy
|
rm $OUTDIR/resources/$policy
|
||||||
done
|
done
|
||||||
|
|
||||||
mv LICENSE LICENSE.signal-desktop
|
|
||||||
|
|
||||||
%terra_appstream -o %{SOURCE2}
|
%terra_appstream -o %{SOURCE2}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%desktop_file_validate %{buildroot}%{_appsdir}/signal.desktop
|
%desktop_file_validate %{buildroot}%{_appsdir}/signal.desktop
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license LICENSE.signal-desktop
|
%license LICENSE
|
||||||
%doc README.md CONTRIBUTING.md ACKNOWLEDGMENTS.md
|
%doc README.md CONTRIBUTING.md ACKNOWLEDGMENTS.md
|
||||||
%license bundled_licenses/*
|
%license bundled_licenses/*
|
||||||
%{_bindir}/signal-desktop
|
%{_bindir}/signal-desktop
|
||||||
@@ -104,9 +100,6 @@ mv LICENSE LICENSE.signal-desktop
|
|||||||
%{_metainfodir}/org.signal.Signal.metainfo.xml
|
%{_metainfodir}/org.signal.Signal.metainfo.xml
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Sun Jun 14 2026 june-fish <git@june.fish>
|
|
||||||
- Fix license name conflicts
|
|
||||||
|
|
||||||
* Mon Dec 22 2025 Owen Zimmerman <owen@fyralabs.com>
|
* Mon Dec 22 2025 Owen Zimmerman <owen@fyralabs.com>
|
||||||
- Use more electron macros, correct build failures
|
- Use more electron macros, correct build failures
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Name: spotify-launcher
|
Name: spotify-launcher
|
||||||
Version: 0.6.6
|
Version: 0.6.5
|
||||||
Release: 1%{?dist}
|
Release: 3%?dist
|
||||||
Summary: Client for spotify's apt repository in Rust
|
Summary: Client for spotify's apt repository in Rust
|
||||||
License: Apache-2.0 AND MIT AND ((Apache-2.0 OR MIT) AND BSD-3-Clause) AND ((MIT OR Apache-2.0) AND Unicode-3.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-3-Clause AND CDLA-Permissive-2.0 AND ISC AND (ISC AND (Apache-2.0 OR ISC)) AND (ISC AND (Apache-2.0 OR ISC) AND OpenSSL) AND (MIT OR Apache-2.0) AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND MPL-2.0 AND Unicode-3.0 AND (Unlicense OR MIT) AND Zlib
|
License: Apache-2.0 AND MIT AND ((Apache-2.0 OR MIT) AND BSD-3-Clause) AND ((MIT OR Apache-2.0) AND Unicode-3.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-3-Clause AND CDLA-Permissive-2.0 AND ISC AND (ISC AND (Apache-2.0 OR ISC)) AND (ISC AND (Apache-2.0 OR ISC) AND OpenSSL) AND (MIT OR Apache-2.0) AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND MPL-2.0 AND Unicode-3.0 AND (Unlicense OR MIT) AND Zlib
|
||||||
Packager: veuxit <erroor234@gmail.com>
|
Packager: veuxit <erroor234@gmail.com>
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
%global realname subtitleedit
|
%global realname subtitleedit
|
||||||
|
|
||||||
Name: %realname.bin
|
Name: %realname.bin
|
||||||
Version: 4.0.16
|
Version: 4.0.15
|
||||||
Release: 1%{?dist}
|
Release: 1%?dist
|
||||||
Summary: An advanced subtitle editor and converter
|
Summary: An advanced subtitle editor and converter
|
||||||
License: GPL-3.0-only
|
License: GPL-3.0-only
|
||||||
URL: https://www.nikse.dk/SubtitleEdit
|
URL: https://www.nikse.dk/SubtitleEdit
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
diff --git a/requirements.txt b/requirements.txt
|
||||||
|
index a0471ddb..e8ca00a9 100644
|
||||||
|
--- a/requirements.txt
|
||||||
|
+++ b/requirements.txt
|
||||||
|
@@ -18,7 +18,7 @@ keyboard; sys_platform == 'win32'
|
||||||
|
lynxtray; sys_platform == 'win32'
|
||||||
|
opencc; sys_platform != 'win32' # optional
|
||||||
|
opencc-python-reimplemented; sys_platform == 'win32' # optional
|
||||||
|
-pypresence>=4.5.0 # optional
|
||||||
|
+pypresence # optional
|
||||||
|
tekore # optional
|
||||||
|
natsort # optional
|
||||||
|
#picard # optional
|
||||||
@@ -3,12 +3,13 @@
|
|||||||
%undefine __brp_mangle_shebangs
|
%undefine __brp_mangle_shebangs
|
||||||
|
|
||||||
Name: python-tauon
|
Name: python-tauon
|
||||||
Version: 10.0.1
|
Version: 9.1.3
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A music player for the desktop. Designed to be powerful and streamlined
|
Summary: A music player for the desktop. Designed to be powerful and streamlined
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
URL: https://tauonmusicbox.rocks/
|
URL: https://tauonmusicbox.rocks/
|
||||||
Source0: https://github.com/Taiko2k/Tauon/archive/refs/tags/v%{version}.tar.gz
|
Source0: https://github.com/Taiko2k/Tauon/archive/refs/tags/v%{version}.tar.gz
|
||||||
|
Patch0: remove-reqed-version.patch
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-wheel
|
BuildRequires: python3-wheel
|
||||||
@@ -39,8 +40,7 @@ Summary: %{summary}
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%git_clone https://github.com/Taiko2k/Tauon v%{version}
|
%git_clone https://github.com/Taiko2k/Tauon v%{version}
|
||||||
|
%patch -P0 -p1
|
||||||
%pyproject_patch_dependency pypresence:drop_constraints
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%pyproject_wheel
|
%pyproject_wheel
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
v1.13.13
|
v1.13.11
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
#? https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=throne-git
|
#? https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=throne-git
|
||||||
|
|
||||||
Name: throne
|
Name: throne
|
||||||
Version: 1.1.6
|
Version: 1.1.2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Qt based cross-platform GUI proxy configuration manager (backend: sing-box)
|
Summary: Qt based cross-platform GUI proxy configuration manager (backend: sing-box)
|
||||||
URL: https://github.com/throneproj/Throne
|
URL: https://github.com/throneproj/Throne
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
project pkg {
|
project "pkg" {
|
||||||
|
arches = ["x86_64"]
|
||||||
rpm {
|
rpm {
|
||||||
spec = "twintaillauncher.spec"
|
spec = "twintaillauncher.spec"
|
||||||
}
|
}
|
||||||
+14
-7
@@ -6,8 +6,8 @@
|
|||||||
|
|
||||||
Name: twintaillauncher
|
Name: twintaillauncher
|
||||||
|
|
||||||
Version: 2.3.0
|
Version: 2.0.0
|
||||||
Release: 1%{?dist}
|
Release: 3%{?dist}
|
||||||
Summary: A multi-platform launcher for your anime games
|
Summary: A multi-platform launcher for your anime games
|
||||||
Packager: Yoong Jin <solomoncyj@gmail.com>
|
Packager: Yoong Jin <solomoncyj@gmail.com>
|
||||||
|
|
||||||
@@ -16,6 +16,8 @@ License: GPL-3.0-only AND (((Apache-2.0 OR MIT) AND BSD-3-Clause) AND ((M
|
|||||||
URL: https://twintaillauncher.app/
|
URL: https://twintaillauncher.app/
|
||||||
Source0: https://github.com/TwintailTeam/TwintailLauncher/archive/refs/tags/ttl-v%{version}.tar.gz
|
Source0: https://github.com/TwintailTeam/TwintailLauncher/archive/refs/tags/ttl-v%{version}.tar.gz
|
||||||
|
|
||||||
|
ExclusiveArch: x86_64
|
||||||
|
|
||||||
Requires: cairo
|
Requires: cairo
|
||||||
Requires: desktop-file-utils
|
Requires: desktop-file-utils
|
||||||
Requires: gdk-pixbuf2
|
Requires: gdk-pixbuf2
|
||||||
@@ -58,7 +60,7 @@ TTL is an all-in-one tool for downloading, managing, and launching your favorite
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%tauri_install
|
%tauri_install
|
||||||
mkdir -p %{buildroot}%{_prefix}/lib/twintaillauncher/resources
|
mkdir -p %{buildroot}/usr/lib/twintaillauncher/resources
|
||||||
|
|
||||||
#app expects files to be present there
|
#app expects files to be present there
|
||||||
mv %{buildroot}/%{_datadir}/cargo/registry/twintaillauncher-%{version}/resources %{buildroot}/usr/lib/twintaillauncher
|
mv %{buildroot}/%{_datadir}/cargo/registry/twintaillauncher-%{version}/resources %{buildroot}/usr/lib/twintaillauncher
|
||||||
@@ -73,20 +75,25 @@ rm -rf %{buildroot}/%{_datadir}/cargo/registry/twintaillauncher-%{version}
|
|||||||
install -Dm644 public/launcher-icon.png %{buildroot}%{_hicolordir}/512x512/apps/%{name}.png
|
install -Dm644 public/launcher-icon.png %{buildroot}%{_hicolordir}/512x512/apps/%{name}.png
|
||||||
install -Dm644 public/launcher-icon-128.png %{buildroot}%{_hicolordir}/128x128/apps/%{name}.png
|
install -Dm644 public/launcher-icon-128.png %{buildroot}%{_hicolordir}/128x128/apps/%{name}.png
|
||||||
|
|
||||||
|
chmod 0755 %{buildroot}/usr/lib/twintaillauncher/resources -R
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license LICENSE.dependencies
|
%license LICENSE.dependencies
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.md
|
%doc README.md
|
||||||
|
|
||||||
%{_bindir}/twintaillauncher
|
%{_bindir}/twintaillauncher
|
||||||
%{_prefix}/lib/%{name}/resources
|
/usr/lib/twintaillauncher/resources
|
||||||
%{_hicolordir}/512x512/apps/%{name}.png
|
%{_hicolordir}/512x512/apps/%{name}.png
|
||||||
%{_hicolordir}/128x128/apps/%{name}.png
|
%{_hicolordir}/128x128/apps/%{name}.png
|
||||||
%{_appsdir}/%{name}.desktop
|
%_appsdir/twintaillauncher.desktop
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Sat May 9 2026 Gilver E. <roachy@fyralabs.com> - 2.1.0-2
|
|
||||||
- Enable aarch64 builds
|
|
||||||
* Wed Apr 15 2026 Yoong Jin <solomoncyj@gmail.com> - 2.0.0-3
|
* Wed Apr 15 2026 Yoong Jin <solomoncyj@gmail.com> - 2.0.0-3
|
||||||
- Fix folders
|
- Fix folders
|
||||||
- filx perms
|
- filx perms
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
project pkg {
|
|
||||||
rpm {
|
|
||||||
spec = "wavemon.spec"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
rpm.version(gh("uoaerg/wavemon"));
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
Name: wavemon
|
|
||||||
Version: 0.9.7
|
|
||||||
Release: 1%{?dist}
|
|
||||||
Summary: ncurses-based monitoring application for wireless network devices on Linux
|
|
||||||
License: GPL-3.0-or-later
|
|
||||||
URL: https://github.com/uoaerg/wavemon
|
|
||||||
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
|
|
||||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
|
||||||
|
|
||||||
BuildRequires: gcc
|
|
||||||
BuildRequires: ncurses-devel
|
|
||||||
BuildRequires: pkgconfig(libnl-3.0)
|
|
||||||
BuildRequires: autoconf
|
|
||||||
BuildRequires: automake
|
|
||||||
|
|
||||||
%description
|
|
||||||
%{summary}.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup
|
|
||||||
sed -e '/^CFLAGS=/d' -i configure.ac
|
|
||||||
sed -r 's|\?=|=|g' -i Makefile.in
|
|
||||||
autoreconf -fiv
|
|
||||||
|
|
||||||
%conf
|
|
||||||
CFLAGS="$RPM_OPT_FLAGS -fPIC -pie -Wl,-z,relro -Wl,-z,now"
|
|
||||||
CXXFLAGS="$RPM_OPT_FLAGS -fPIC -pie -Wl,-z,relro -Wl,-z,now"
|
|
||||||
export CFLAGS
|
|
||||||
export CXXFLAGS
|
|
||||||
%configure
|
|
||||||
|
|
||||||
%build
|
|
||||||
%make_build
|
|
||||||
|
|
||||||
%install
|
|
||||||
%make_install
|
|
||||||
# Delete wrong placed readme and license
|
|
||||||
rm -rf %{buildroot}%{_datadir}/%{name}/*
|
|
||||||
|
|
||||||
%files
|
|
||||||
%doc README.md
|
|
||||||
%license LICENSE
|
|
||||||
%{_mandir}/man*/%{name}*.*
|
|
||||||
%{_bindir}/%{name}
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Tue May 19 2026 Owen Zimmerman <owen@fyralabs.com>
|
|
||||||
- Initial commit
|
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
# Fedora sometimes sources the snapshots under stable versions and just bumps release
|
# Fedora sometimes sources the snapshots under stable versions and just bumps release
|
||||||
# For user clarity I have separated these into different packages
|
# For user clarity I have separated these into different packages
|
||||||
%global commit 08304e81f9ac9a83c552a6bd78689040d174bf95
|
%global commit 14b802e419aff260b9d630e71027d88855e224e7
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
%global ver 20260125
|
%global ver 20260125
|
||||||
%global commit_date 20260531
|
%global commit_date 20260411
|
||||||
|
|
||||||
Name: winetricks-git
|
Name: winetricks-git
|
||||||
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
Version: %{ver}^%{commit_date}git.%{shortcommit}
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
%global crate anda
|
%global crate anda
|
||||||
|
|
||||||
Name: anda
|
Name: anda
|
||||||
Version: 0.7.1
|
Version: 0.5.4
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Andaman Build toolchain
|
Summary: Andaman Build toolchain
|
||||||
SourceLicense: MIT
|
SourceLicense: MIT
|
||||||
License: ((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 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND Apache-2.0 AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND BSD-3-Clause AND BSL-1.0 AND CDLA-Permissive-2.0 AND ISC AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Apache-2.0) AND (MIT OR Zlib OR Apache-2.0) AND MIT AND MPL-2.0-or-later AND MPL-2.0-only AND Unicode-3.0 AND (Unlicense OR MIT)
|
License: ((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 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND Apache-2.0 AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND BSD-3-Clause AND BSL-1.0 AND CDLA-Permissive-2.0 AND ISC AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Apache-2.0) AND (MIT OR Zlib OR Apache-2.0) AND MIT AND MPL-2.0-or-later AND MPL-2.0-only AND Unicode-3.0 AND (Unlicense OR MIT)
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
project pkg {
|
|
||||||
rpm {
|
|
||||||
spec = "bsc.spec"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,85 +0,0 @@
|
|||||||
%define debug_package %{nil}
|
|
||||||
%global __provides_exclude_from ^%{_libdir}/bsc/SAT/.*
|
|
||||||
%global __requires_exclude libstp\\.so\\.1|libyices\\.so\\.2\\.6
|
|
||||||
|
|
||||||
Name: bsc
|
|
||||||
Version: 2026.01
|
|
||||||
Release: 1%{?dist}
|
|
||||||
Summary: Bluespec Compiler (BSC)
|
|
||||||
|
|
||||||
License: BSD-3-Clause AND BSD-2-Clause AND MIT AND LGPL-2.0-or-later AND AND BSL-1.0
|
|
||||||
URL: https://github.com/B-Lang-org/bsc
|
|
||||||
Source: %{url}/archive/refs/tags/%{version}.tar.gz
|
|
||||||
|
|
||||||
BuildRequires: ghc
|
|
||||||
BuildRequires: ghc-regex-compat-devel
|
|
||||||
BuildRequires: ghc-syb-devel
|
|
||||||
BuildRequires: ghc-old-time-devel
|
|
||||||
BuildRequires: ghc-split-devel
|
|
||||||
BuildRequires: ghc-strict-concurrency-devel
|
|
||||||
BuildRequires: gperf
|
|
||||||
BuildRequires: gcc-c++
|
|
||||||
BuildRequires: autoconf
|
|
||||||
BuildRequires: flex
|
|
||||||
BuildRequires: bison
|
|
||||||
BuildRequires: zlib-ng-compat-devel
|
|
||||||
BuildRequires: tcl-devel
|
|
||||||
|
|
||||||
# For check
|
|
||||||
BuildRequires: binutils
|
|
||||||
BuildRequires: iverilog
|
|
||||||
|
|
||||||
Provides: bundled(stp)
|
|
||||||
Provides: bundled(yices)
|
|
||||||
|
|
||||||
Packager: Owen Zimmerman <owen@fyralabs.com>
|
|
||||||
|
|
||||||
%description
|
|
||||||
Compiler, simulator, and tools for the Bluespec Hardware Description Language.
|
|
||||||
Bluespec is a single language for digital electronic hardware designs that
|
|
||||||
comes in two syntactic flavors, which are interchangeable:
|
|
||||||
|
|
||||||
Bluespec SystemVerilog (BSV)
|
|
||||||
Bluespec Haskell (BH, or "Bluespec Classic")
|
|
||||||
|
|
||||||
Bluespec is a high-level hardware description language. It has a variety of
|
|
||||||
advanced features including a powerful type system that can prevent errors prior
|
|
||||||
to synthesis time, and its most distinguishing feature, Guarded Atomic Actions,
|
|
||||||
allow you to define hardware components in a modular manner based on their
|
|
||||||
invariants, and let the compiler pick a scheduler.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%git_clone %{url} %{version}
|
|
||||||
|
|
||||||
%build
|
|
||||||
%make_build install-src GHCJOBS=%{_smp_build_ncpus}
|
|
||||||
|
|
||||||
%install
|
|
||||||
mkdir -p %{buildroot}%{_datadir}/bsc/
|
|
||||||
mkdir -p %{buildroot}%{_bindir}
|
|
||||||
cp -r inst/ %{buildroot}%{_datadir}/bsc/
|
|
||||||
|
|
||||||
# https://github.com/B-Lang-org/bsc/blob/main/INSTALL.md#overview
|
|
||||||
# Note this is symlinking the wrapper scripts, not the ELFs
|
|
||||||
%{__ln_s} -f %{_datadir}/bsc/inst/bin/bsc %{buildroot}%{_bindir}/bsc
|
|
||||||
%{__ln_s} -f %{_datadir}/bsc/inst/bin/bluetcl %{buildroot}%{_bindir}/bluetcl
|
|
||||||
|
|
||||||
# Patch wrapper scripts to use correct paths
|
|
||||||
for wrapper in %{buildroot}%{_datadir}/bsc/inst/bin/bsc %{buildroot}%{_datadir}/bsc/inst/bin/bluetcl; do
|
|
||||||
sed -i 's|BLUESPECDIR="$(cd ${BINDIR}/../lib; echo $PWD)"|BLUESPECDIR="%{_datadir}/bsc/inst/lib"|' $wrapper
|
|
||||||
sed -i 's|BLUESPECEXEC=${BINDIR}/core/${SCRIPTNAME}|BLUESPECEXEC="%{_datadir}/bsc/inst/bin/core/${SCRIPTNAME}"|' $wrapper
|
|
||||||
done
|
|
||||||
|
|
||||||
%check
|
|
||||||
%{make_build} check-smoke
|
|
||||||
|
|
||||||
%files
|
|
||||||
%doc README.md DEVELOP.md
|
|
||||||
%license COPYING LICENSES/
|
|
||||||
%{_bindir}/bsc
|
|
||||||
%{_bindir}/bluetcl
|
|
||||||
%{_datadir}/bsc/*
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Fri Apr 24 2026 Owen Zimmerman <owen@fyralabs.com>
|
|
||||||
- Initial commit
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
rpm.version(gh("B-Lang-org/bsc"));
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
Name: gradle
|
Name: gradle
|
||||||
Version: 9.5.1
|
Version: 9.5.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Powerful build system for the JVM
|
Summary: Powerful build system for the JVM
|
||||||
URL: https://gradle.org/
|
URL: https://gradle.org/
|
||||||
@@ -41,7 +41,6 @@ export PATH="/usr/lib/jvm/java-21-openjdk/bin:${PATH}"
|
|||||||
-Pgradle_installPath="$(pwd)/dist" \
|
-Pgradle_installPath="$(pwd)/dist" \
|
||||||
-Porg.gradle.ignoreBuildJavaVersionCheck=true \
|
-Porg.gradle.ignoreBuildJavaVersionCheck=true \
|
||||||
--warning-mode all \
|
--warning-mode all \
|
||||||
-Dorg.gradle.unsafe.isolated-projects=false \
|
|
||||||
--no-configuration-cache
|
--no-configuration-cache
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user