summaryrefslogtreecommitdiff
path: root/net-dns
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-02-20 17:40:11 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-02-20 17:40:11 +0000
commitf3439d6caba79c7067991ef0403d855917255726 (patch)
tree1c1816b545d00d4dc70a8a89f386963f5e5f51f9 /net-dns
parentd6ecedbb65041ed35010095376e87dd7de4270c5 (diff)
gentoo auto-resync : 20:02:2024 - 17:40:11
Diffstat (limited to 'net-dns')
-rw-r--r--net-dns/Manifest.gzbin8033 -> 8035 bytes
-rw-r--r--net-dns/dnsdist/Manifest1
-rw-r--r--net-dns/dnsdist/files/dnsdist-1.7.3-gcc13.patch62
3 files changed, 0 insertions, 63 deletions
diff --git a/net-dns/Manifest.gz b/net-dns/Manifest.gz
index 7f4751e615a5..aa5c18dbcb2b 100644
--- a/net-dns/Manifest.gz
+++ b/net-dns/Manifest.gz
Binary files differ
diff --git a/net-dns/dnsdist/Manifest b/net-dns/dnsdist/Manifest
index 8a5c9e9bb404..6f667addebf0 100644
--- a/net-dns/dnsdist/Manifest
+++ b/net-dns/dnsdist/Manifest
@@ -1,4 +1,3 @@
-AUX dnsdist-1.7.3-gcc13.patch 1970 BLAKE2B ac671f45112bb0b9d79c7385a0936382ea64d016220b759cbecd8ef268d34e4f5ffd59da25962303dcf59ea9abae4a9e78454cb3151691540f1b0d753b6a4f47 SHA512 6f7479425c7176717bc801c117af5a024399978183c0537977140735201f695ed6517f3a74ae7ba92ca323f25a50249d1e55b24564d93695c2ae8cf4a8fbd651
AUX dnsdist.conf.example 524 BLAKE2B e9d140129dfbd276d1fb927d73bee4e4c29920ae70d587765ea5d432f02694b1a8583340c2e14e191bbdf5ddd5b921274cb2336c3520839d7cfe6f399a4d6c26 SHA512 385bee5725d927feb50fc0f40cd48cd365a495e39c0d947aa53dc454d84b7fe3806cd1d206056c96d111e7251db2cda27570ff8154c70bed145d37bc7d1db01d
AUX dnsdist.confd 266 BLAKE2B c201b0aa3599ea7606e998348d777796ff391f3d4b0e46744160298456c86a9d9bbf65d1a339c0c13db4c796efb7c3adba01110882542fe501c735c9dd190f92 SHA512 935afc768ae56d017f6dee8bed7a3e92615055a0d4d2ae9980afef1b8f353da0e8bd6e20b914602e50b116ad33ef17ba05535b225af8b8da9ad005694edc071f
AUX dnsdist.initd 1337 BLAKE2B e2619182674439be6942a0a936208326c12cfc2839bba4fd6a2ca3653ac6083458ebf2b644d2db63c187ed33ba2bef3437680714bb76dfc7632e1b62149a6f6a SHA512 99e38a58c97dd206ea82ffc783102feaa28f74bec5e03c1790e2db0f428f8228eec43617b2c951f22320e10dbd42ddfbf40650fed28608428f9c48eec3640a8d
diff --git a/net-dns/dnsdist/files/dnsdist-1.7.3-gcc13.patch b/net-dns/dnsdist/files/dnsdist-1.7.3-gcc13.patch
deleted file mode 100644
index 339887ca4a19..000000000000
--- a/net-dns/dnsdist/files/dnsdist-1.7.3-gcc13.patch
+++ /dev/null
@@ -1,62 +0,0 @@
-Altered slightly from upstream counterparts in order to make them apply to
-the dist tarball (updated context and filenames to match the dist).
-
-https://github.com/PowerDNS/pdns/commit/f407319cb7374baf06698786f4f39d431a36a3cc
-https://github.com/PowerDNS/pdns/commit/d8b4ea24dc5dbe7c53c24bfffba24bcae7f58e02
-
-From d8b4ea24dc5dbe7c53c24bfffba24bcae7f58e02 Mon Sep 17 00:00:00 2001
-From: Peter van Dijk <peter.van.dijk@powerdns.com>
-Date: Mon, 23 Jan 2023 14:54:09 +0100
-Subject: [PATCH] lock.hh: include <stdexcept>
-
----
- pdns/lock.hh | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/pdns/lock.hh b/pdns/lock.hh
-index e8bd82988da..a08951a266d 100644
---- a/lock.hh
-+++ b/lock.hh
-@@ -22,6 +22,7 @@
- #pragma once
- #include <mutex>
- #include <shared_mutex>
-+#include <stdexcept>
-
- /*
- This file provides several features around locks:
-From f407319cb7374baf06698786f4f39d431a36a3cc Mon Sep 17 00:00:00 2001
-From: Sander Hoentjen <shoentjen@antagonist.nl>
-Date: Mon, 20 Feb 2023 16:51:07 +0100
-Subject: [PATCH] dnsdist-protocols.hh: include <cstdint>
-
-This fixes building dnsdist with gcc13:
-```
-In file included from dnsdist-protocols.cc:26:
-dnsdist-protocols.hh:32:8: error: use of enum 'typeenum' without previous declaration
- 32 | enum typeenum : uint8_t
- | ^~~~~~~~
-dnsdist-protocols.hh:32:19: error: 'uint8_t' was not declared in this scope
- 32 | enum typeenum : uint8_t
- | ^~~~~~~
-dnsdist-protocols.hh:25:1: note: 'uint8_t' is defined in header '<cstdint>'; did you forget to '#include <cstdint>'?
- 24 | #include <vector>
- +++ |+#include <cstdint>
- 25 | #include <string>
-```
----
- pdns/dnsdist-protocols.hh | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/pdns/dnsdist-protocols.hh b/pdns/dnsdist-protocols.hh
-index c5c5743908d..bd2a4bb8ad1 100644
---- a/dnsdist-protocols.hh
-+++ b/dnsdist-protocols.hh
-@@ -22,6 +22,7 @@
- #pragma once
-
- #include <vector>
-+#include <cstdint>
- #include <string>
-
- namespace dnsdist