73 lines
1.7 KiB
RPMSpec
73 lines
1.7 KiB
RPMSpec
%global git0 https://github.com/rootless-containers/%{name}
|
|
%global commit0 4992082b2af77c09bca6bd8504e2ebfa5e118c18
|
|
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
|
|
|
|
Name: slirp4netns
|
|
Version: 0.3.0
|
|
Release: 3%{?dist}
|
|
# no go-md2man in ix86
|
|
ExcludeArch: %{ix86}
|
|
Summary: slirp for network namespaces
|
|
License: GPLv2
|
|
URL: %{git0}
|
|
Source0: %{git0}/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: gcc
|
|
BuildRequires: git
|
|
BuildRequires: glib2-devel
|
|
BuildRequires: go-md2man
|
|
BuildRequires: make
|
|
|
|
%description
|
|
User-mode networking for unprivileged network namespaces.
|
|
|
|
%package devel
|
|
Summary: %{summary}
|
|
BuildArch: noarch
|
|
|
|
%description devel
|
|
%{summary}
|
|
|
|
This package contains the devel files for %{name}.
|
|
|
|
%prep
|
|
%autosetup -Sgit -n %{name}-%{commit0}
|
|
|
|
%build
|
|
./autogen.sh
|
|
./configure --prefix=%{_usr} --libdir=%{_libdir}
|
|
%{__make} generate-man
|
|
|
|
%install
|
|
make DESTDIR=%{buildroot} install install-man
|
|
|
|
%check
|
|
|
|
#define license tag if not already defined
|
|
%{!?_licensedir:%global license %doc}
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc README.md
|
|
%{_bindir}/%{name}
|
|
%{_mandir}/man1/%{name}.1.gz
|
|
|
|
%changelog
|
|
* Fri Jun 07 2019 Lokesh Mandvekar <lsm5@redhat.com> - 0.3.0-3
|
|
- Resolves: #1683217 - BR: glib2-devel
|
|
|
|
* Fri Jun 07 2019 Lokesh Mandvekar <lsm5@redhat.com> - 0.3.0-2
|
|
- Resolves: #1683217 - bump slirp4netns to v0.3.0
|
|
|
|
* Thu Feb 28 2019 Lokesh Mandvekar <lsm5@redhat.com> - 0.3.0-1.alpha.2.git30883b5
|
|
- bump to v0.3.0-alpha.2
|
|
|
|
* Fri Nov 16 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.1-2.dev.gitc4e1bc5
|
|
- changed summary
|
|
|
|
* Fri Aug 10 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.1-1.dev.gitc4e1bc5
|
|
- First package for RHEL 8
|
|
- import from Fedora rawhide
|
|
- Exclude ix86 and ppc64
|