## START: Set by rpmautospec
## (rpmautospec version 0.3.0)
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
    release_number = 1;
    base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
    print(release_number + base_release_number - 1);
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
## END: Set by rpmautospec

# Generated by go2rpm 1.8.1
#
# This specfile is licensed under:
# SPDX-License-Identifier: MIT
# License text: https://spdx.org/licenses/MIT.html
# SPDX-FileCopyrightText: 2022 Maxwell G <gotmax@e.email>
# SPDX-FileCopyrightText: Fedora Project Authors

%bcond_without check
%global debug_package %{nil}

# https://github.com/agnivade/levenshtein
%global goipath         github.com/agnivade/levenshtein
Version:                1.1.1

%gometa -f

%global common_description %{expand:
Go implementation to calculate Levenshtein Distance.}

%global godocs          README.md
%global golicenses      License.txt

Name:           %{goname}
Release:        %autorelease
Summary:        Go implementation to calculate Levenshtein Distance

License:        MIT
URL:            %{gourl}
Source:         %{gosource}
# We do not want to run benchmarks. They are irrelevant for downstream usage
# and pull in extra dependencies.
# This is a downstream only patch.
Patch:          0001-Remove-benchmarking-tests.patch

%description %{common_description}

%gopkg

%prep
%goprep
%autopatch -p1

%generate_buildrequires
%go_generate_buildrequires

%install
%gopkginstall

%if %{with check}
%check
%gocheck
%endif

%gopkgfiles

%changelog
* Tue Sep 20 2022 Maxwell G <gotmax@e.email> 1.1.1-1
- Initial import (rhbz#2123980)