summaryrefslogtreecommitdiffstats
path: root/python/python-moreorless.spec
diff options
context:
space:
mode:
authorMichel Alexandre Salim <salimma@fedoraproject.org>2020-11-19 16:13:25 -0800
committerMichel Alexandre Salim <salimma@fedoraproject.org>2020-11-19 16:13:25 -0800
commit96ab700a27b1f7e1eaec8121751f6ee6f49872ff (patch)
tree7bdbcdd02f625f8f5de541e79182d02ae9273bca /python/python-moreorless.spec
parentb4f26c9e68b3e396e9bb87626968d1db65f7dd9e (diff)
downloadspecs-96ab700a27b1f7e1eaec8121751f6ee6f49872ff.tar.gz
specs-96ab700a27b1f7e1eaec8121751f6ee6f49872ff.tar.xz
specs-96ab700a27b1f7e1eaec8121751f6ee6f49872ff.zip
+ python-bowler and dependencies
Signed-off-by: Michel Alexandre Salim <salimma@fedoraproject.org>
Diffstat (limited to 'python/python-moreorless.spec')
-rw-r--r--python/python-moreorless.spec67
1 files changed, 67 insertions, 0 deletions
diff --git a/python/python-moreorless.spec b/python/python-moreorless.spec
new file mode 100644
index 0000000..a6bc84a
--- /dev/null
+++ b/python/python-moreorless.spec
@@ -0,0 +1,67 @@
+%global srcname moreorless
+
+%bcond_without tests
+
+Name: python-%{srcname}
+Version: 0.3.0
+Release: 1%{?dist}
+Summary: Python diff wrapper
+License: MIT
+URL: https://github.com/thatch/moreorless/
+Source0: %{pypi_source}
+
+BuildArch: noarch
+
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: %{py3_dist setuptools_scm}
+%if %{with tests}
+BuildRequires: %{py3_dist click}
+BuildRequires: %{py3_dist coverage}
+BuildRequires: %{py3_dist parameterized}
+BuildRequires: %{py3_dist volatile}
+%endif
+
+
+%global _description %{expand:
+This is a thin wrapper around difflib.unified_diff that Does The Right Thing for
+"No newline at eof". The args are also simplified compared to difflib.}
+
+%description %_description
+
+
+%package -n python3-%{srcname}
+Summary: %{summary}
+
+%description -n python3-%{srcname} %_description
+
+
+%prep
+%autosetup -p1 -n %{srcname}-%{version}
+
+
+%build
+%py3_build
+
+
+%install
+%py3_install
+
+
+%if %{with tests}
+%check
+%{python3} -m coverage run -m moreorless.tests
+%endif
+
+
+%files -n python3-%{srcname}
+%license LICENSE
+%doc README.md
+%{python3_sitelib}/%{srcname}/
+%exclude %{python3_sitelib}/%{srcname}/py.typed
+%{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info/
+
+
+%changelog
+* Thu Nov 19 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.3.0-1
+- Initial package