diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-11-03 03:04:04 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-11-03 03:04:04 +0000 |
commit | 212000bb5eabdfeb9a6e7a9b8f28e2740cae555a (patch) | |
tree | dbbe26e892147b95a24336cc44d791dbe0c0ce5f /net-im/dino | |
parent | 37a097af13d675b83911ac006ee9ee22d2163f9a (diff) |
gentoo auto-resync : 03:11:2024 - 03:04:03
Diffstat (limited to 'net-im/dino')
-rw-r--r-- | net-im/dino/Manifest | 2 | ||||
-rw-r--r-- | net-im/dino/files/dino-0.4.3-c99.patch | 57 | ||||
-rw-r--r-- | net-im/dino/files/dino-0.4.3-vala-gpgme.patch | 32 |
3 files changed, 0 insertions, 91 deletions
diff --git a/net-im/dino/Manifest b/net-im/dino/Manifest index 80d7f1ab2cbc..916399bce22f 100644 --- a/net-im/dino/Manifest +++ b/net-im/dino/Manifest @@ -1,6 +1,4 @@ AUX README.gentoo 469 BLAKE2B e7176c3fa41c859f13f93f2805bf317817de1c736b56a55a1cd21340b2195f1192a96c56ae973c347430f3553715e829420ef6e0d91b26835cf06d06b744b9ec SHA512 a800f5ae1f02a1574602c1595f005eeffbd2db6c100bb59f7a4cf9dbb0bea79bb3d1a17cf9559a09f318f4d8189ecfce964e594829228ab16f861b3c966c3f41 -AUX dino-0.4.3-c99.patch 2378 BLAKE2B a88b813a59e836f23e437e11bda54e48bfbad6f78ede682cabf596562d0cae810ea80054086605f131f9b3a50bafa2aa6e2e4eb41ebf6cb047294c8e047a1228 SHA512 221085118ef69e992920f87f5878b018b360b6c0ce82d6683aa1e36ec15fc41ab0abafbe458a860a3fe566497b11a1b6af73d39b16352f31bb6e176ff9e5ecd6 -AUX dino-0.4.3-vala-gpgme.patch 1333 BLAKE2B 2528634b980de3671dcc3fb36bb7ab10ede05cd860a8f8dd1e6161f2b0444625cff256875d4ada727ab7a173ad026d2f3e03b303ab9e5f9945d239529b7aaedc SHA512 68eb12aacd48a4fc52c9ab58fcc011b14924fba38eaa40207d893caa5d45c2f49c3ef533263a4772b401cd97eb745362acb19ef40ac12b1b52890b8e44ac4be7 DIST dino-0.4.4.tar.gz 884259 BLAKE2B 5290543aeaf89f2adf5acf648b6ff4fb7daafc7d4e0b9e948f34a4af81ea49073664aa37d2541753e2f75dbfe492ac82ebdda5fe9ab5749e7b251d6788a36f3a SHA512 d2d5553c60d20e163930c0d8468727109871651f7305bf86940b7efd70a42d11ca85572f4dbea01e67ec8ce48fb0a244acb29b491d5d43bf188653ddc6ecface EBUILD dino-0.4.4.ebuild 2016 BLAKE2B de057b6a5a57289da7fa692ab0289579c5c1c299e58917fcdbcf5f3a2506a3b0148d0735618f0c9dbc0914bdd9b15b6c560a50d164b6f145f4684bd3b7b91b2c SHA512 454ebe7cce99f9b2e48d74719fcea210b5efc2be692cafd03353608881c0d3fb1fe96f4380c8034f8919fe6a6752ea0a25807b5d93bcc40130d5fdf74d41f2fa EBUILD dino-9999.ebuild 2017 BLAKE2B 923c79d60908110c94a5ff34bbf460dafc5c46039af881f17d0a61879bce4f1fb259a764dd36a5ba953f4af7bd5222c0818e3356ff65b94feed8992317702997 SHA512 5ad5c9f7ebfb2a68c0ba374a64046f4fb47d093a4a40bc229600f09da0f106e088b6894c294737e76165b4504a0a5b11e8a7774f6f5acbd54ae97662b54d65bf diff --git a/net-im/dino/files/dino-0.4.3-c99.patch b/net-im/dino/files/dino-0.4.3-c99.patch deleted file mode 100644 index d21ff5e4adec..000000000000 --- a/net-im/dino/files/dino-0.4.3-c99.patch +++ /dev/null @@ -1,57 +0,0 @@ -https://bugs.gentoo.org/926073 -https://github.com/dino/dino/commit/0c45387bf903e5b0d02502d27642dd2a78aa6539 - -From 0c45387bf903e5b0d02502d27642dd2a78aa6539 Mon Sep 17 00:00:00 2001 -From: fiaxh <git@lightrise.org> -Date: Sat, 7 Oct 2023 13:56:38 +0200 -Subject: [PATCH] Fix implicit-function-declaration compiler warnings - ---- a/xmpp-vala/src/module/xep/0384_omemo/omemo_encryptor.vala -+++ b/xmpp-vala/src/module/xep/0384_omemo/omemo_encryptor.vala -@@ -72,27 +72,27 @@ namespace Xmpp.Xep.Omemo { - } - - public class EncryptionResult { -- public int lost { get; internal set; } -- public int success { get; internal set; } -- public int unknown { get; internal set; } -- public int failure { get; internal set; } -+ public int lost { get; set; } -+ public int success { get; set; } -+ public int unknown { get; set; } -+ public int failure { get; set; } - } - - public class EncryptState { -- public bool encrypted { get; internal set; } -- public int other_devices { get; internal set; } -- public int other_success { get; internal set; } -- public int other_lost { get; internal set; } -- public int other_unknown { get; internal set; } -- public int other_failure { get; internal set; } -- public int other_waiting_lists { get; internal set; } -- -- public int own_devices { get; internal set; } -- public int own_success { get; internal set; } -- public int own_lost { get; internal set; } -- public int own_unknown { get; internal set; } -- public int own_failure { get; internal set; } -- public bool own_list { get; internal set; } -+ public bool encrypted { get; set; } -+ public int other_devices { get; set; } -+ public int other_success { get; set; } -+ public int other_lost { get; set; } -+ public int other_unknown { get; set; } -+ public int other_failure { get; set; } -+ public int other_waiting_lists { get; set; } -+ -+ public int own_devices { get; set; } -+ public int own_success { get; set; } -+ public int own_lost { get; set; } -+ public int own_unknown { get; set; } -+ public int own_failure { get; set; } -+ public bool own_list { get; set; } - - public void add_result(EncryptionResult enc_res, bool own) { - if (own) { - diff --git a/net-im/dino/files/dino-0.4.3-vala-gpgme.patch b/net-im/dino/files/dino-0.4.3-vala-gpgme.patch deleted file mode 100644 index fa609a97d88d..000000000000 --- a/net-im/dino/files/dino-0.4.3-vala-gpgme.patch +++ /dev/null @@ -1,32 +0,0 @@ -https://bugs.gentoo.org/930539 -https://github.com/dino/dino/issues/1576 -https://github.com/dino/dino/commit/a90edd05389d2f8011eccda3acd5f24f3948b8b5 - -From a90edd05389d2f8011eccda3acd5f24f3948b8b5 Mon Sep 17 00:00:00 2001 -From: Rico Tzschichholz <ricotz@ubuntu.com> -Date: Sun, 28 Apr 2024 21:30:12 +0200 -Subject: [PATCH] Annotating with array_null_terminated doesn't imply a missing - array_length - -Taken from https://github.com/GNOME/vala-extra-vapis/commit/6b8a3e4faaabc462f90ffcb0cf0f91991ee58077 ---- - plugins/gpgme-vala/vapi/gpgme_public.vapi | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/plugins/gpgme-vala/vapi/gpgme_public.vapi b/plugins/gpgme-vala/vapi/gpgme_public.vapi -index bcf125696..4f9010c98 100644 ---- a/plugins/gpgme-vala/vapi/gpgme_public.vapi -+++ b/plugins/gpgme-vala/vapi/gpgme_public.vapi -@@ -22,9 +22,9 @@ public class Key { - public string issuer_name; - public string chain_id; - public Validity owner_trust; -- [CCode(array_null_terminated = true)] -+ [CCode (array_length = false, array_null_terminated = true)] - public SubKey[] subkeys; -- [CCode(array_null_terminated = true)] -+ [CCode (array_length = false, array_null_terminated = true)] - public UserID[] uids; - public KeylistMode keylist_mode; - // public string fpr; // requires gpgme >= 1.7.0 - |