Blame SPECS/chan.spec

801536
Name: chan
801536
Version: 0.0.4
801536
Release: 3%{?dist}
801536
Summary: Pure C implementation of Go channels
801536
License: ASL 2.0
801536
URL: https://github.com/tylertreat/%{name}
801536
Source0: https://github.com/tylertreat/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
801536
801536
BuildRequires: gcc autoconf automake libtool
801536
#Requires:       
801536
801536
%description
801536
Pure C implementation of Go channels. Unbuffered, buffered
801536
and closing channels are available.
801536
801536
%package devel
801536
Summary: Development files for %{name}
801536
Requires: %{name}%{?_isa} = %{version}-%{release}
801536
801536
%description devel
801536
The %{name}-devel package contains libraries and header files for
801536
developing applications that use %{name}.
801536
801536
801536
%prep
801536
%autosetup -n %{name}-%{version}
801536
801536
801536
%build
801536
./autogen.sh
801536
%configure --disable-static
801536
%make_build
801536
801536
%check
801536
%make_build src/chan_test
801536
./src/chan_test
801536
801536
%install
801536
rm -rf $RPM_BUILD_ROOT
801536
%make_install
801536
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
801536
801536
%ldconfig_post
801536
801536
%ldconfig_postun
801536
801536
801536
%files
801536
%license LICENSE
801536
%doc README.md
801536
%{_libdir}/lib%{name}.so.0.0.0
801536
%{_libdir}/lib%{name}.so.0
801536
801536
%files devel
801536
%dir %{_includedir}/%{name}
801536
%{_includedir}/%{name}/queue.h
801536
%{_includedir}/%{name}/%{name}.h
801536
%{_libdir}/lib%{name}.so
801536
801536
801536
%changelog
801536
* Wed May 20 2020 Mark Goodwin <mgoodwin@redhat.com> - 0.0.4-3
801536
- Initial version for RHEL-8, rebuild for CI/gating
801536
801536
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-2
801536
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
801536
801536
* Wed Aug 14 2019 Lukáš Zapletal 0.0.4-1
801536
- Initial package version