From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH v2] automake: Add non detected dependencies of perl modules Date: Sun, 18 Oct 2015 00:40:34 +0200 Message-ID: <1445121634-20594-1-git-send-email-stefan.schantl@ipfire.org> In-Reply-To: <1445121346-20367-1-git-send-email-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0332587263384526237==" List-Id: --===============0332587263384526237== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit automake has non detected dependencies to perl(threads) and perl(Thread::Queue). After updating perl to version 5.20 those modules have been moved into own sub-packages which are not installed because these dependencies are not correctly detected and tracked in the automake package. Manually adding them will solve this problem and provides a working version of automake again. The whole problem also has been filed on the RH bugtracker: https://bugzilla.redhat.com/show_bug.cgi?id=919810 Fixes #10944. Signed-off-by: Stefan Schantl --- automake/automake.nm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/automake/automake.nm b/automake/automake.nm index 59bf3b0..128ba2c 100644 --- a/automake/automake.nm +++ b/automake/automake.nm @@ -5,7 +5,7 @@ name = automake version = 1.13.2 -release = 1 +release = 2 arch = noarch groups = Development/Tools @@ -26,12 +26,17 @@ required_autoconf_version = 2.62 build requires autoconf >= %{required_autoconf_version} - perl + perl(threads) + perl(Thread::Queue) end end packages package %{name} - requires = autoconf >= %{required_autoconf_version} + requires + autoconf >= %{required_autoconf_version} + perl(threads) + perl(Thread::Queue) + end end end -- 2.4.3 --===============0332587263384526237==--