File scx.spec of Package scx
#
# spec file for package scx
#
# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
# Spec file borrowed from SirLucjan thank you Sir
%define _lto_cflags %{nil}
%define libbpf_min_ver 1.4
%define llvm_min_ver 17
Name: scx
Version: 1.0.18
Release: 0
Summary: Sched_ext CPU schedulers
License: GPL-2.0-only
URL: https://github.com/sched-ext/scx
Source0: %{name}-%{version}.tar.zst
Source1: vendor.tar.zst
BuildRequires: bpftool >= 7.5.0
BuildRequires: clang >= %{llvm_min_ver}
BuildRequires: jq
BuildRequires: libbpf-devel >= %{libbpf_min_ver}
BuildRequires: lld
BuildRequires: llvm >= %{llvm_min_ver}
BuildRequires: pkgconfig
BuildRequires: rust+cargo >= 1.82
BuildRequires: zstd
BuildRequires: pkgconfig(libbpf) >= %{libbpf_min_ver}
BuildRequires: pkgconfig(libseccomp)
BuildRequires: pkgconfig(protobuf)
BuildRequires: pkgconfig(systemd)
ExclusiveArch: %{rust_arches}
Requires: scx-tools
%description
sched_ext is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them. This package contains various scheduler implementations and support utilities.
%prep
%autosetup -n scx-%{version} -a1
%build
export CARGO_HOME=%{_builddir}/.cargo
cargo build \
--release \
--frozen \
--all-features \
--workspace \
--exclude scx_rlfifo \
--exclude scx_mitosis \
--exclude scx_wd40 \
--exclude xtask \
--exclude scxcash \
--exclude vmlinux_docify \
--exclude scx_arena_selftests
%install
# Install all built executables (skip .so and .d files)
find target/release \
-maxdepth 1 -type f -executable ! -name '*.so' \
-exec install -Dm755 -t %{buildroot}%{_bindir} {} +
%files
# Binaries
%{_bindir}/*
%changelog