From b9118b192b6f24601c7f3412ab59a45df1fd90a3 Mon Sep 17 00:00:00 2001 From: Maxwell G Date: Wed, 7 Jun 2023 21:33:27 +0000 Subject: [PATCH] Use two lines between specfile sections This is conventional and makes the specfile more readable. --- python-pathspec.spec | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/python-pathspec.spec b/python-pathspec.spec index 1e3cb23..e33fd6d 100644 --- a/python-pathspec.spec +++ b/python-pathspec.spec @@ -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 - 0.11.1-1 - update to 0.11.1 rhbz#2178386