diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-10-05 01:18:42 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-10-05 01:18:42 +0100 |
commit | 5b84ef1b7530528af1eda8310641c6396df8143c (patch) | |
tree | 1dd8187ec16709816078d4b474e15257409a25db /sci-libs/gloo | |
parent | 07b0c0005f55e652101816d9f4cfe73403bf0906 (diff) |
gentoo auto-resync : 05:10:2022 - 01:18:42
Diffstat (limited to 'sci-libs/gloo')
-rw-r--r-- | sci-libs/gloo/Manifest | 2 | ||||
-rw-r--r-- | sci-libs/gloo/files/gloo-2022.05.18-gentoo.patch | 30 |
2 files changed, 31 insertions, 1 deletions
diff --git a/sci-libs/gloo/Manifest b/sci-libs/gloo/Manifest index 4aa555f46c88..213b2b7acd87 100644 --- a/sci-libs/gloo/Manifest +++ b/sci-libs/gloo/Manifest @@ -1,4 +1,4 @@ -AUX gloo-2022.05.18-gentoo.patch 2597 BLAKE2B 120e1b6268f3b46cf93b46e98640c32603321c47946c2ba54345d6dc512d5079a880a74a46cc78a9628ff56f5a2496ac93e88939cab653c6210930dcb9bdd603 SHA512 fbcd5fbb75ce54de36d0781d8e55fe9dbf5a8f519c6ed0a1a57d5f1877c24096bb452a294765710dfeb9e2a50e07496db15c08c75ab3297cfe3a1187ffca241a +AUX gloo-2022.05.18-gentoo.patch 3385 BLAKE2B 4dfe8691ac3e381ef93254716eefc769698e6e6e788091d4e48d79369ef195d7617181d4a7098f8a5b096d20d52a9e9b403b968aacd0c76916f203929e253e74 SHA512 72312c20ed9a28f16ccad56bec4ee3f1eb9a6c50d1cb89ebe3262d30b08b269ec937fdeba415a7e2b574333af5a6352c07b1f6a2f97092db749d4ecc517ad9b2 DIST gloo-2022.05.18.tar.gz 251778 BLAKE2B 90bd97cff437d030b87c333ebb6679f199491b97826f09278b7a6740d781ca750af4e8eda18f29a4311462473146aae1fd0686443a0eb2c73e8ba34e6837b0af SHA512 356b4bd4480fda0f9db039babd223c17ed24c35945877bdb6c5b28eb45ee8ce08def73d308bc906c478c4c9d485bb0f74080d90c7a4fafe84818df0a97a7f6e2 EBUILD gloo-2022.05.18.ebuild 1044 BLAKE2B 3123f3d977677405e28d7a80b7666a781fad05880a6894e56187a92c4167a7d72a9d2a0e488ca379668bc15fe2d9a9bc7551a8d0c001f4f9f9ae7ac55a0274d9 SHA512 022673a9308eecf06f81e17b26f58fd29f8daca24b959e1e4ebc44db6b7a0ed49052104a2da683685a530576c0164fd5dafa288780f9936000aada25b1ccd9b7 MISC metadata.xml 492 BLAKE2B be64dabc0bd193d99c4458e6bad8c78042ef1d65800ebd3a3818ffdac3b361f18011ae044036e3c73deba03886e8aa6ffdcb5c2a66b635ecc2f29d636c660227 SHA512 e342a7d570f7ff12718f51e91fd6d359d038670dfb3b679a4cd8d7de61bef8d4b048e2362303bb925eddfd7c40e67f4179e89c24dc2f9b5c21e5a220bf9d4aa2 diff --git a/sci-libs/gloo/files/gloo-2022.05.18-gentoo.patch b/sci-libs/gloo/files/gloo-2022.05.18-gentoo.patch index e445dc9effdb..09f7588a1858 100644 --- a/sci-libs/gloo/files/gloo-2022.05.18-gentoo.patch +++ b/sci-libs/gloo/files/gloo-2022.05.18-gentoo.patch @@ -72,3 +72,33 @@ #include "gloo/common/linux.h" #include "gloo/common/logging.h" +--- a/gloo/transport/tcp/tls/pair.cc 2022-10-04 21:14:04.099150060 +0200 ++++ b/gloo/transport/tcp/tls/pair.cc 2022-10-04 21:14:22.330886610 +0200 +@@ -17,6 +17,7 @@ + + #include <cstring> + #include <poll.h> ++#include <array> + + namespace gloo { + namespace transport { +--- a/gloo/common/linux.cc 2022-10-04 21:20:21.401691929 +0200 ++++ b/gloo/common/linux.cc 2022-10-04 21:23:13.924192100 +0200 +@@ -198,7 +198,7 @@ + } ecmd; + int rv; + +- ifr->ifr_data = (__caddr_t)&ecmd; ++ ifr->ifr_data = (char *)&ecmd; + memset(&ecmd, 0, sizeof(ecmd)); + ecmd.req.cmd = ETHTOOL_GLINKSETTINGS; + +@@ -226,7 +226,7 @@ + struct ethtool_cmd edata; + int rv; + +- ifr->ifr_data = (__caddr_t)&edata; ++ ifr->ifr_data = (char *)&edata; + memset(&edata, 0, sizeof(edata)); + edata.cmd = ETHTOOL_GSET; + |