#187 split %doc and %license entries across multiple lines also in binary packages
Closed: Fixed 2 years ago by zbyszek. Opened 2 years ago by decathorpe.

Right now, %doc and %license entries for -devel packages are split across multiple lines, which is much nicer than what we do for binary packages:

%files       -n %{crate}
%license LICENSE
%doc CODE_OF_CONDUCT.md CONTRIBUTING.md ORG_CODE_OF_CONDUCT.md README.md RELEASES.md SECURITY.md
%{_bindir}/wasmtime

vs.

%files          devel
%license %{crate_instdir}/LICENSE
%doc %{crate_instdir}/CODE_OF_CONDUCT.md
%doc %{crate_instdir}/CONTRIBUTING.md
%doc %{crate_instdir}/ORG_CODE_OF_CONDUCT.md
%doc %{crate_instdir}/README.md
%doc %{crate_instdir}/RELEASES.md
%doc %{crate_instdir}/SECURITY.md
%{crate_instdir}/

It would be great if the list of files for binary packages could look like this, to match the new style we have for -devel packages:

%files       -n %{crate}
%license LICENSE
%doc CODE_OF_CONDUCT.md
%doc CONTRIBUTING.md
%doc ORG_CODE_OF_CONDUCT.md
%doc README.md
%doc RELEASES.md
%doc SECURITY.md
%{_bindir}/wasmtime

Metadata Update from @zbyszek:
- Issue assigned to zbyszek

2 years ago

Login to comment on this ticket.

Metadata
Related Pull Requests
  • #197 Merged 2 years ago