Use two lines between specfile sections

This is conventional and makes the specfile more readable.
This commit is contained in:
Maxwell G 2023-06-07 21:33:27 +00:00
parent 5c9b86e0f7
commit b9118b192b
No known key found for this signature in database
GPG Key ID: F79E4E25E8C661F8

View File

@ -12,11 +12,13 @@ BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pytest
%description
Path Specification (pathspec) is a utility library for pattern matching of file
paths. So far this only includes Git's wildmatch pattern matching which itself
is derived from Rsync's wildmatch. Git uses wildmatch for its gitignore files.
%package -n python3-pathspec
Summary: %{summary}
@ -29,9 +31,11 @@ is derived from Rsync's wildmatch. Git uses wildmatch for its gitignore files.
%prep
%autosetup -n pathspec-%{version}
%build
%py3_build
%install
%py3_install
@ -39,12 +43,14 @@ is derived from Rsync's wildmatch. Git uses wildmatch for its gitignore files.
%check
%pytest
%files -n python3-pathspec
%doc README.rst
%license LICENSE
%{python3_sitelib}/pathspec
%{python3_sitelib}/pathspec-%{version}-py%{python3_version}.egg-info
%changelog
* Fri Mar 24 2023 Dan Radez <dradez@redhat.com> - 0.11.1-1
- update to 0.11.1 rhbz#2178386