You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.6 KiB
67 lines
1.6 KiB
# debuginfo doesn't work yet
|
|
%global debug_package %{nil}
|
|
|
|
Epoch: 2
|
|
Name: aardvark-dns
|
|
Version: 1.1.0
|
|
License: ASL 2.0 and BSD and MIT
|
|
Release: 4%{?dist}
|
|
ExclusiveArch: %{rust_arches}
|
|
Summary: Authoritative DNS server for A/AAAA container records
|
|
URL: https://github.com/containers/aardvark-dns
|
|
Source0: %{url}/archive/v%{version}.tar.gz
|
|
Source1: %{url}/releases/download/v%{version}/%{name}-v%{version}-vendor.tar.gz
|
|
Patch0: https://patch-diff.githubusercontent.com/raw/containers/aardvark-dns/pull/201.patch
|
|
BuildRequires: cargo
|
|
BuildRequires: git-core
|
|
BuildRequires: make
|
|
BuildRequires: rust-srpm-macros
|
|
Conflicts: netavark < %{epoch}:%{version}
|
|
|
|
%description
|
|
%{summary}
|
|
|
|
Forwards other request to configured resolvers.
|
|
Read more about configuration in `src/backend/mod.rs`.
|
|
|
|
%prep
|
|
%autosetup -Sgit
|
|
tar fx %{SOURCE1}
|
|
mkdir -p .cargo
|
|
|
|
cat >.cargo/config << EOF
|
|
[source.crates-io]
|
|
replace-with = "vendored-sources"
|
|
|
|
[source.vendored-sources]
|
|
directory = "vendor"
|
|
EOF
|
|
|
|
%build
|
|
%{__make} build
|
|
|
|
%install
|
|
%{__make} DESTDIR=%{buildroot} PREFIX=%{_prefix} install
|
|
|
|
%files
|
|
%license LICENSE
|
|
%dir %{_libexecdir}/podman
|
|
%{_libexecdir}/podman/%{name}
|
|
|
|
%changelog
|
|
* Wed Aug 24 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.1.0-4
|
|
- remove windows binaries and regenerate vendor tarball
|
|
- Related: #2061316
|
|
|
|
* Tue Aug 23 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.1.0-3
|
|
- conflict with older versions than aardvark-dns itself
|
|
- Related: #2061316
|
|
|
|
* Thu Aug 04 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.1.0-2
|
|
- add Epoch to preserve upgrade path
|
|
- Related: #2061316
|
|
|
|
* Wed Aug 3 2022 Jindrich Novy <jnovy@redhat.com> 1.1.0-1
|
|
- initial import
|
|
- Related: #2061316
|