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