Blob Blame History Raw
# Generated by go2rpm
%bcond_without check

# https://github.com/nicksnyder/go-i18n
%global goipath         github.com/nicksnyder/go-i18n
Version:                2.0.0

%gometa

# Remove in F33
%global godevelheader %{expand:
Obsoletes:      golang-github-nicksnyder-go-i18n-devel < 1.10.0-7
Obsoletes:      golang-github-nicksnyder-go-i18n-unit-test-devel < 1.10.0-7
}

%global common_description %{expand:
go-i18n is a Go package and a command that helps you translate Go programs into
multiple languages.

 - Supports pluralized strings for all 200+ languages in the Unicode Common
   Locale Data Repository (CLDR).
    - Code and tests are automatically generated from CLDR data.
 - Supports strings with named variables using text/template syntax.
 - Supports message files of any format (e.g. JSON, TOML, YAML, etc.).
 - Documented and tested!}

%global golicenses      LICENSE
%global godocs          CHANGELOG.md README.md dev.md example

Name:           %{goname}
Release:        2%{?dist}
Summary:        Translate your Go program into multiple languages

License:        MIT
URL:            %{gourl}
Source0:        %{gosource}

BuildRequires:  golang(github.com/BurntSushi/toml)
BuildRequires:  golang(github.com/pelletier/go-toml)
BuildRequires:  golang(golang.org/x/text/language)
BuildRequires:  golang(gopkg.in/yaml.v2)

Provides:       go-i18n = %{version}-%{release}
# Remove in F33:
Obsoletes:      go-i18n < 1.10.0-7

%description
%{common_description}

%gopkg

%prep
%goprep

%build
for cmd in v2/goi18n; do
  %gobuild -o %{gobuilddir}/bin/$(basename $cmd) %{goipath}/$cmd
done

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

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

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

%gopkgfiles

%changelog
* Tue Jul 09 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 2.0.0-2
- Add binary subpackage
- Add Obsoletes for old name

* Thu May 23 18:53:45 CEST 2019 Robert-André Mauchin <zebob.m@gmail.com> - 2.0.0-1
- Release 2.0.0

* Tue Feb 19 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.10.0-1
- First package for Fedora