Blame golang-github-gofrs-flock.spec

5285821
# https://github.com/gofrs/flock
5285821
%global goipath		github.com/gofrs/flock
5285821
Version:		0.7.0
5285821
5285821
%gometa
5285821
5285821
Name:		%{goname}
5285821
Release:	1%{?dist}
5285821
Summary:	Thread-safe file locking library in Go
5285821
License:	BSD
5285821
URL:		%{gourl}
5285821
Source0:	%{gosource}
5285821
BuildRequires:	golang(gopkg.in/check.v1)
5285821
5285821
%description
5285821
flock implements a thread-safe sync.Locker interface for file locking. It also
5285821
includes a non-blocking TryLock() function to allow locking without blocking
5285821
execution.
5285821
5285821
%package devel
5285821
Summary:	%{summary}
5285821
BuildArch:	noarch
5285821
5285821
%description devel
5285821
flock implements a thread-safe sync.Locker interface for file locking. It also
5285821
includes a non-blocking TryLock() function to allow locking without blocking
5285821
execution.
5285821
5285821
This package contains library source intended for building other packages that
5285821
use import path with the %{goipath} prefix.
5285821
5285821
%prep
5285821
%forgesetup
5285821
5285821
%install
5285821
%goinstall
5285821
5285821
%check
5285821
%gochecks
5285821
5285821
%files devel -f devel.file-list
5285821
%license LICENSE
5285821
%doc README.md
5285821
5285821
%changelog
5285821
* Thu Jan 17 2019 Paul Howarth <paul@city-fan.org> - 0.7.0-1
5285821
- Initial RPM version