# Generated by go2rpm 1.8.2
%bcond_without check
%global debug_package %{nil}

# https://github.com/natesales/q
%global goipath         github.com/natesales/q
Version:                0.19.2

%global src_commit 0ca9b8b13fc69121144d85365c16b3e21508ffc3
%global src_short_commit %(c=%{src_commit}; echo ${c:0:7})

# REMOVE BEFORE SUBMITTING THIS FOR REVIEW
# ---
# New Fedora packages should use %%gometa -f, which makes the package
# ExclusiveArch to %%golang_arches_future and thus excludes the package from
# %%ix86. If the new package is needed as a dependency for another pacage,
# please consider removing that package from %%ix86 in the same way, instead of
# building more go packages for i686. If your package is not a leaf package,
# you'll need to coordinate the removal of the package's dependents first.
# ---
# REMOVE BEFORE SUBMITTING THIS FOR REVIEW
%gometa -f

%global common_description %{expand:
A tiny command line DNS client with support for UDP, TCP, DoT, DoH, DoQ and
ODoH.}

%global golicenses      LICENSE transport/LICENSE
%global godocs          README.md

Name:           %{goname}
Release:        %autorelease
Summary:        A tiny command line DNS client with support for UDP, TCP, DoT, DoH, DoQ and ODoH

License:        GPL-3.0-only AND Apache-2.0
URL:            %{gourl}
Source:         %{gosource}

Provides:       q

BuildRequires:  golang >= 1.18
BuildRequires:  git >= 2.0

%description %{common_description}

%gopkg

%prep
%goprep

#%generate_buildrequires
#%go_generate_buildrequires

%build
export GO111MODULE=on
export GOPROXY='https://proxy.golang.org/,direct'
export LDFLAGS='-s -w -X main.version=%{version}-%{release} -X main.commit=%{src_short_commit} -X main.date='
%undefine _auto_set_build_flags
%global _dwz_low_mem_die_limit 0
go build %{gobuildflags} -o %{gobuilddir}/bin/q .

%install
%gopkginstall
install -m 0755 -vd                     %{buildroot}%{_bindir}
install -m 0755 -vp %{gobuilddir}/bin/* %{buildroot}%{_bindir}/

%files
%license LICENSE transport/LICENSE
%doc README.md
%{_bindir}/*

%gopkgfiles

%changelog
%autochangelog