From 4414f619e31357a8fa1dcbb8cafa710bd3728954 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Sat, 13 Nov 2021 21:04:39 -0500 Subject: [PATCH] add more git-email perl dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There were a few dependencies missing prior to the change in git-2.33 which Ondřej fixed in the previous commit. Of the few dependencies being added, only Email::Address and Sys::Hostname weren't already pulled in by other dependencies when installing git-email. They each have fallback options, so they aren't critical to the function of the application. (We could use Recommends here, if we wanted -- though neither pull in any additional packages at this time.) --- git.spec | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/git.spec b/git.spec index 04f5b52..56340e0 100644 --- a/git.spec +++ b/git.spec @@ -80,7 +80,7 @@ Name: git Version: 2.33.1 -Release: 2%{?rcrev}%{?dist} +Release: 3%{?rcrev}%{?dist} Summary: Fast Version Control System License: GPLv2 URL: https://git-scm.com/ @@ -388,14 +388,20 @@ Summary: Git tools for sending patches via email BuildArch: noarch Requires: git = %{version}-%{release} Requires: perl(Authen::SASL) -Requires: perl(Net::SMTP::SSL) Requires: perl(Cwd) +Requires: perl(Email::Valid) +Requires: perl(File::Spec) Requires: perl(File::Spec::Functions) Requires: perl(File::Temp) +Requires: perl(IO::Socket::SSL) Requires: perl(Mail::Address) +Requires: perl(MIME::Base64) +Requires: perl(MIME::QuotedPrint) Requires: perl(Net::Domain) Requires: perl(Net::SMTP) +Requires: perl(Net::SMTP::SSL) Requires: perl(POSIX) +Requires: perl(Sys::Hostname) Requires: perl(Term::ANSIColor) Requires: perl(Term::ReadLine) Requires: perl(Text::ParseWords) @@ -998,6 +1004,10 @@ rmdir --ignore-fail-on-non-empty "$testdir" %{?with_docs:%{_pkgdocdir}/git-svn.html} %changelog +* Sun Nov 14 2021 Todd Zullinger - 2.33.1-3 +- add more git-email perl dependencies +- Resolves: rhbz#2020487 + * Thu Nov 11 2021 Ondřej Pohořelský - 2.33.1-2 - add Perl requires to git-email - Resolves: rhbz#2020487