Blob Blame History Raw
%global debug_package   %{nil}
%global provider        github
%global provider_tld    com
%global project         smartystreets
%global repo            assertions
# https://github.com/smartystreets/assertions
%global import_path     %{provider}.%{provider_tld}/%{project}/%{repo}
%global commit          4727d767ce8a81811c40eedc2a836c85aebb4d09
%global shortcommit     %(c=%{commit}; echo ${c:0:7})

Name:           golang-%{provider}-%{project}-%{repo}
Version:        0
Release:        0.1.git%{shortcommit}%{?dist}
Summary:        Fluent assertion-style functions
License:        MIT
URL:            https://%{import_path}
Source0:        https://%{import_path}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz

%if 0%{?fedora} >= 19 || 0%{?rhel} >= 7
BuildArch:      noarch
%else
ExclusiveArch:  %{ix86} x86_64 %{arm}
%endif

%description
%{summary}

%package devel
Summary:       %{summary}

BuildRequires: golang >= 1.2.1-3
# cyclic dependency between golang-github-smartystreets-goconvey and
# golang-github-smartystreets-assertions
#BuildRequires: golang(github.com/smartystreets/goconvey/convey/reporting)
Requires:      golang(github.com/smartystreets/goconvey/convey/reporting)
Provides:      golang(%{import_path}) = %{version}-%{release}
Provides:      golang(%{import_path}/internal/oglematchers) = %{version}-%{release}
Provides:      golang(%{import_path}/internal/oglemock) = %{version}-%{release}
Provides:      golang(%{import_path}/internal/oglemock/generate) = %{version}-%{release}
Provides:      golang(%{import_path}/internal/oglemock/generate/test_cases) = %{version}-%{release}
Provides:      golang(%{import_path}/internal/oglemock/generate/test_cases/complicated_pkg) = %{version}-%{release}
Provides:      golang(%{import_path}/internal/oglemock/generate/test_cases/renamed_pkg) = %{version}-%{release}
Provides:      golang(%{import_path}/internal/oglemock/sample/mock_io) = %{version}-%{release}
Provides:      golang(%{import_path}/internal/ogletest) = %{version}-%{release}
Provides:      golang(%{import_path}/internal/ogletest/test_cases) = %{version}-%{release}
Provides:      golang(%{import_path}/internal/ogletest/test_cases/mock_image) = %{version}-%{release}
Provides:      golang(%{import_path}/should) = %{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}

%build

%install
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
cp -pav *.go %{buildroot}/%{gopath}/src/%{import_path}/

rm -rf internal/*/.gitignore

# copy directories
for file in ./* ; do
    if [ -d $file ]; then
        cp -rpav $file %{buildroot}%{gopath}/src/%{import_path}/
    fi
done

%check
# cyclic dependency between golang-github-smartystreets-goconvey and
# golang-github-smartystreets-assertions


%files devel
%if 0%{?fedora}
%license LICENSE.md
%doc README.md
%else
%doc README.md LICENSE.md
%endif
%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project}
%{gopath}/src/%{import_path}

%changelog
* Thu Apr 23 2015 jchaloup <jchaloup@redhat.com> - 0-0.1.git4727d76
- First package for Fedora
  resolves: #1214816