Blob Blame History Raw
%global debug_package   %{nil}
%global provider        github
%global provider_tld    com
%global project         beorn7
%global repo            perks
%global import_path     %{provider}.%{provider_tld}/%{project}/%{repo}
%global commit          b965b613227fddccbfffe13eae360ed3fa822f8d
%global shortcommit     %(c=%{commit}; echo ${c:0:7})

Name:           golang-%{provider}-%{project}-%{repo}
Version:        0
Release:        0.1.git%{shortcommit}%{?dist}
Summary:        Effective Computation of Things
License:        MIT
URL:            https://%{import_path}
Source0:        https://%{import_path}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz
Patch0:         0001-move-license-to-LICENSE.patch
%if 0%{?fedora} >= 19 || 0%{?rhel} >= 7
BuildArch:      noarch
%else
ExclusiveArch:  %{ix86} x86_64 %{arm}
%endif

%description
%{summary}

%package devel
BuildRequires:  golang >= 1.2.1-3
Requires:       golang >= 1.2.1-3
Summary:        %{summary}
Provides:       golang(%{import_path}/histogram) = %{version}-%{release}
Provides:       golang(%{import_path}/quantile) = %{version}-%{release}
Provides:       golang(%{import_path}/topk) = %{version}-%{release}

%description devel
%{summary}

This package contains library source intended for 
building other packages which use %{project}/%{repo}.

%prep
%setup -q -n %{repo}-%{commit}
%patch0 -p1

%build

%install
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
cp -rpav topk %{buildroot}/%{gopath}/src/%{import_path}/
cp -rpav quantile %{buildroot}/%{gopath}/src/%{import_path}/
cp -rpav histogram %{buildroot}/%{gopath}/src/%{import_path}/

%check
GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/topk
GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/quantile
GOPATH=%{buildroot}/%{gopath}:%{gopath} go test %{import_path}/histogram

%files devel
%doc README.md LICENSE
%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project}
%{gopath}/src/%{import_path}

%changelog
* Thu Feb 26 2015 jchaloup <jchaloup@redhat.com> - 0-0.1.gitb965b61
- First package for Fedora
  resolves: #1196432