diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-01 10:04:07 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-01 10:04:07 +0000 |
commit | 95ed036bfa797f831372809bc64b31ebb218ccb9 (patch) | |
tree | de55c5dc6b21256e30da6b142b8368140a18c806 | |
parent | 1df50b3debe8fada5f31a72527d01d68f480d021 (diff) |
automatic import of aardvark-dnsopeneuler24.03_LTSopeneuler23.09
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | aardvark-dns.spec | 104 | ||||
-rw-r--r-- | sources | 2 |
3 files changed, 108 insertions, 0 deletions
@@ -0,0 +1,2 @@ +/aardvark-dns-v1.9.0-vendor.tar.gz +/v1.9.0.tar.gz diff --git a/aardvark-dns.spec b/aardvark-dns.spec new file mode 100644 index 0000000..de894ba --- /dev/null +++ b/aardvark-dns.spec @@ -0,0 +1,104 @@ +# debuginfo doesn't work yet +%global debug_package %{nil} + +Epoch: 2 +Name: aardvark-dns +Version: 1.9.0 +License: ASL 2.0 and BSD and MIT +Release: 1%{?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 +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" + +[net] +offline = true +EOF + +%build +%{__make} build + +%install +%{__make} DESTDIR=%{buildroot} PREFIX=%{_prefix} install + +%files +%license LICENSE +%dir %{_libexecdir}/podman +%{_libexecdir}/podman/%{name} + +%changelog +* Wed Dec 06 2023 Lokesh Mandvekar <lsm5@redhat.com> - 2:1.9.0-1 +- update to https://github.com/containers/aardvark-dns/releases/tag/v1.9.0 +- Related: Jira:RHEL-2112 + +* Fri Sep 29 2023 Jindrich Novy <jnovy@redhat.com> - 2:1.8.0-1 +- update to https://github.com/containers/aardvark-dns/releases/tag/v1.8.0 +- Related: Jira:RHEL-2112 + +* Fri Jul 07 2023 Jindrich Novy <jnovy@redhat.com> - 2:1.7.0-1 +- update to https://github.com/containers/aardvark-dns/releases/tag/v1.7.0 +- Related: #2176063 + +* Wed Apr 12 2023 Jindrich Novy <jnovy@redhat.com> - 2:1.6.0-1 +- update to https://github.com/containers/aardvark-dns/releases/tag/v1.6.0 +- Related: #2176063 + +* Fri Feb 03 2023 Jindrich Novy <jnovy@redhat.com> - 2:1.5.0-2 +- build always offline +- Related: #2124478 + +* Fri Feb 03 2023 Jindrich Novy <jnovy@redhat.com> - 2:1.5.0-1 +- update to https://github.com/containers/aardvark-dns/releases/tag/v1.5.0 +- Related: #2124478 + +* Thu Dec 08 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.4.0-1 +- update to https://github.com/containers/aardvark-dns/releases/tag/v1.4.0 +- Related: #2124478 + +* Wed Nov 16 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.3.0-1 +- update to https://github.com/containers/aardvark-dns/releases/tag/v1.3.0 +- Related: #2124478 + +* Tue Oct 18 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.2.0-1 +- update to https://github.com/containers/aardvark-dns/releases/tag/v1.2.0 +- Related: #2124478 + +* 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 @@ -0,0 +1,2 @@ +01ead4bbd427fc6fa4fb45a2e984314d aardvark-dns-v1.9.0-vendor.tar.gz +db2232e9e419b4bedee6893850d9a13e v1.9.0.tar.gz |