File howl.spec of Package failed_howl
Name: howl
Version: 0.1
Release: 4.1
Summary: Howl - example package
License: MIT
URL: https://example.org/howl
Source0: howl-%{version}.tar.gz
# If your package originally referenced many %patchN lines (e.g. %patch24300 -p1),
# those have been converted to the modern form "%patch <N> <args>".
# The obsolete "%patchN" syntax is not supported by newer rpmbuild versions.
%description
Howl is an example package. This spec was minimally adjusted to replace
obsolete "%patchN" usages with the supported "%patch N" form.
%prep
%setup -q
# Replace any obsolete "%patchN -p1" usage with the new form:
# (Example: original "%patch24300 -p1" -> corrected below)
%patch 24300 -p1
%build
# no-op build for minimal spec (adjust to your real build steps)
true
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}%{_bindir}
# no real binaries in this minimal spec
true
%files
%doc README
%license LICENSE
%changelog
* Fri Aug 08 2025 packager <packager@example.org> - 0.1-4.1
- Replace obsolete "%patchN" syntax with "%patch N" to be compatible with modern rpmbuild.