From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/asterisk/, net-misc/asterisk/files/
Date: Wed, 1 Jul 2020 06:39:08 +0000 (UTC) [thread overview]
Message-ID: <1593585512.ff22a39875feb55d1920acdaa282f32e51d9f19e.juippis@gentoo> (raw)
commit: ff22a39875feb55d1920acdaa282f32e51d9f19e
Author: Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Tue Jun 30 11:20:56 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Jul 1 06:38:32 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff22a398
net-misc/asterisk: USE=-ssl fixes (13.33.0)
Bug: https://bugs.gentoo.org/725888
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-misc/asterisk/asterisk-13.33.0.ebuild | 3 +-
.../asterisk/files/asterisk-13.33.0-nossl.patch | 94 ++++++++++++++++++++++
2 files changed, 96 insertions(+), 1 deletion(-)
diff --git a/net-misc/asterisk/asterisk-13.33.0.ebuild b/net-misc/asterisk/asterisk-13.33.0.ebuild
index 85e6f8facee..1e709bfbd06 100644
--- a/net-misc/asterisk/asterisk-13.33.0.ebuild
+++ b/net-misc/asterisk/asterisk-13.33.0.ebuild
@@ -26,7 +26,8 @@ REQUIRED_USE="gtalk? ( xmpp )
"
PATCHES=(
- "${FILESDIR}/asterisk-historic-no-var-run-install.patch"
+ "${FILESDIR}/${PN}-historic-no-var-run-install.patch"
+ "${FILESDIR}/${PN}-13.33.0-nossl.patch"
)
DEPEND="acct-user/asterisk
diff --git a/net-misc/asterisk/files/asterisk-13.33.0-nossl.patch b/net-misc/asterisk/files/asterisk-13.33.0-nossl.patch
new file mode 100644
index 00000000000..5fb0c5650e5
--- /dev/null
+++ b/net-misc/asterisk/files/asterisk-13.33.0-nossl.patch
@@ -0,0 +1,94 @@
+From 2513235859fc50e8c28545977702b9b7b439f5f5 Mon Sep 17 00:00:00 2001
+From: Joshua C. Colp <jcolp@sangoma.com>
+Date: Wed, 24 Jun 2020 07:25:47 -0300
+Subject: [PATCH] menuselect: Resolve infinite loop in dependency scenario.
+
+Given a scenario where a module has a dependency on both
+an external library and a module if the external library was
+available and the module was not an infinite loop would
+occur. This happened due to the code changing the dependecy
+status to no failure on each dependency checking loop
+iteration, resulting in the code thinking that it had
+gone from no failure to failure each time triggering another
+dependency check.
+
+This change makes it so that the old dependency status is
+preserved throughout the dependency checking allowing it to
+determine that after the first iteration the dependency
+status does not transition from no failure to failure.
+
+ASTERISK-28930
+
+Change-Id: Iea06d45d9fd6d8bfd068882a0bb7e23a53ec3e84
+---
+
+diff --git a/menuselect/menuselect.c b/menuselect/menuselect.c
+index 83f6098..a595ce8 100644
+--- a/menuselect/menuselect.c
++++ b/menuselect/menuselect.c
+@@ -630,14 +630,14 @@
+ struct member *mem;
+ struct reference *dep;
+ struct dep_file *dep_file;
+- unsigned int changed, old_failure;
++ unsigned int changed;
+
+ AST_LIST_TRAVERSE(&categories, cat, list) {
+ AST_LIST_TRAVERSE(&cat->members, mem, list) {
+ if (mem->is_separator) {
+ continue;
+ }
+- old_failure = mem->depsfailed;
++ mem->depsfailedold = mem->depsfailed;
+ AST_LIST_TRAVERSE(&mem->deps, dep, list) {
+ if (dep->member)
+ continue;
+@@ -655,7 +655,7 @@
+ break; /* This dependency is not met, so we can stop now */
+ }
+ }
+- if (old_failure == SOFT_FAILURE && mem->depsfailed != HARD_FAILURE)
++ if (mem->depsfailedold == SOFT_FAILURE && mem->depsfailed != HARD_FAILURE)
+ mem->depsfailed = SOFT_FAILURE;
+ }
+ }
+@@ -673,8 +673,6 @@
+ continue;
+ }
+
+- old_failure = mem->depsfailed;
+-
+ if (mem->depsfailed == HARD_FAILURE)
+ continue;
+
+@@ -693,7 +691,7 @@
+ }
+ }
+
+- if (mem->depsfailed != old_failure) {
++ if (mem->depsfailed != mem->depsfailedold) {
+ if ((mem->depsfailed == NO_FAILURE) && mem->was_defaulted) {
+ mem->enabled = !strcasecmp(mem->defaultenabled, "yes");
+ print_debug("Just set %s enabled to %d\n", mem->name, mem->enabled);
+@@ -702,6 +700,8 @@
+ print_debug("Just set %s enabled to %d\n", mem->name, mem->enabled);
+ }
+ changed = 1;
++ /* We need to update the old failed deps for the next loop of this */
++ mem->depsfailedold = mem->depsfailed;
+ break; /* This dependency is not met, so we can stop now */
+ }
+ }
+diff --git a/menuselect/menuselect.h b/menuselect/menuselect.h
+index 78ae8ef..d41859e 100644
+--- a/menuselect/menuselect.h
++++ b/menuselect/menuselect.h
+@@ -78,6 +78,8 @@
+ unsigned int was_enabled:1;
+ /*! This module has failed dependencies */
+ unsigned int depsfailed:2;
++ /*! Previous failed dependencies when calculating */
++ unsigned int depsfailedold:2;
+ /*! This module has failed conflicts */
+ unsigned int conflictsfailed:2;
+ /*! This module's 'enabled' flag was changed by a default only */
next reply other threads:[~2020-07-01 6:39 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-01 6:39 Joonas Niilola [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-25 22:55 [gentoo-commits] repo/gentoo:master commit in: net-misc/asterisk/, net-misc/asterisk/files/ Matt Jolly
2024-02-06 14:55 Joonas Niilola
2023-05-11 1:29 Sam James
2022-12-13 5:27 Sam James
2022-08-23 8:59 Matthew Smith
2022-02-19 5:17 Sam James
2021-11-12 1:36 Sam James
2021-07-25 4:00 Sam James
2021-05-22 15:10 Sam James
2021-05-11 12:55 Joonas Niilola
2021-03-19 8:52 Joonas Niilola
2021-03-09 9:44 Sam James
2021-01-22 3:51 Sam James
2020-10-06 21:45 Sam James
2020-05-14 22:12 Aaron Bauman
2020-04-09 12:38 Joonas Niilola
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1593585512.ff22a39875feb55d1920acdaa282f32e51d9f19e.juippis@gentoo \
--to=juippis@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox