# Detect the distribution in use %global __despace head -n 1 | tr -d '[:space:]' | sed -e 's/[(].*[)]//g' %global __lower4 cut -c 1-4 | tr '[:upper:]' '[:lower:]' %global __distfile %([ -f /etc/SuSE-release ] && echo /etc/SuSE-release || echo /etc/redhat-release) %global __distinit %(sed -e 's/ release .*//' -e 's/\\([A-Za-z]\\)[^ ]*/\\1/g' %{__distfile} | %{__despace} | %{__lower4}) %global __distvers %(sed -e 's/.* release \\([^. ]*\\).*/\\1/' %{__distfile} | %{__despace}) # Identify Alma, CentOS, CentOS Stream and Rocky Linux as rhel %if "%{__distinit}" == "a" || "%{__distinit}" == "c" || "%{__distinit}" == "cl" || "%{__distinit}" == "cs" || "%{__distinit}" == "rl" %global __distinit rhel %endif # Dist tag for Fedora is still "fc" %if "%{__distinit}" == "f" %global __distinit fc %endif # TODO: BR: perl(Authen::NTLM) and perl(Digest::HMAC_MD5) when available Summary: Send mail with attachments through an SMTP server Name: perl-Mail-Sender Epoch: 1 Version: 0.903 Release: 21.%{__distinit}%{__distvers} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Mail-Sender Source0: https://cpan.metacpan.org/modules/by-module/Mail/Mail-Sender-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: sed # Module Runtime BuildRequires: perl(base) BuildRequires: perl(Carp) BuildRequires: perl(Data::Dumper) BuildRequires: perl(Encode) BuildRequires: perl(Exporter) BuildRequires: perl(File::Basename) BuildRequires: perl(IO::Handle) BuildRequires: perl(IO::Socket::INET) BuildRequires: perl(MIME::Base64) BuildRequires: perl(MIME::QuotedPrint) BuildRequires: perl(Socket) BuildRequires: perl(Symbol) BuildRequires: perl(strict) BuildRequires: perl(Tie::Handle) BuildRequires: perl(Time::Local) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(File::Spec) BuildRequires: perl(Test::More) >= 0.88 # Optional Tests BuildRequires: perl(CPAN::Meta) >= 2.120900 BuildRequires: perl(CPAN::Meta::Prereqs) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(Symbol) Requires: perl(Tie::Handle) # Optional Functionality BuildRequires: perl(IO::Socket::SSL) BuildRequires: perl(Net::SSLeay) Requires: perl(IO::Socket::SSL) Requires: perl(Net::SSLeay) %description Mail::Sender - module for sending mails with attachments through an SMTP server. PLEASE CONSIDER USING EMAIL-SENDER INSTEAD. %prep %setup -q -n Mail-Sender-%{version} # Remove Win32 bit that creates bad dependency sed -i -e '/Win32/d' MANIFEST rm -f lib/Mail/Sender/CType/Win32.pm # Filter out redundant unversioned provide if present, by making it versioned %if 0%{?__perllib_provides:1} %global provfilt /bin/sh -c "%{__perllib_provides} | sed 's/^\\(perl(Mail::Sender)\\) *$/\\1 = %{version}/'" %global __perllib_provides %{provfilt} %else %global provfilt /bin/sh -c "%{__perl_provides} | sed 's/^\\(perl(Mail::Sender)\\) *$/\\1 = %{version}/'" %global __perl_provides %{provfilt} %endif %build PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete %{_fixperms} -c %{buildroot} %check make test %files %license LICENSE %doc Changes README %{perl_vendorlib}/Mail/ %{_mandir}/man3/Mail::Sender.3* %{_mandir}/man3/Mail::Sender::CType::Ext.3* %changelog * Fri Jun 9 2023 Paul Howarth - 1:0.903-21 - Use SPDX-format license tag - Switch upstream from search.cpan.org to metacpan.org - Use %%license unconditionally * Fri Apr 27 2018 Paul Howarth - 1:0.903-5 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl * Thu Jun 15 2017 Paul Howarth - 1:0.903-3 - Drop the default configuration so we don't try sending mail in %%check - Drop support for EOL distributions prior to F-13 - Drop BuildRoot: and Group: tags - Drop explicit buildroot cleaning in %%install section - Drop explicit %%clean section - Drop workaround for building with Test::More < 0.88 * Thu Nov 17 2016 Paul Howarth - 1:0.903-1 - Update to 0.903 - Fixed an errant extra test requirement (GH#3) - Marked the entire dist as DEPRECATED as it should no longer be used * Tue Jul 12 2016 Paul Howarth - 1:0.902-1 - Update to 0.902 - Fixed multiple $VERSION variables (GH#2) - Addressed some testing issues with bad SMTP host - Turned off uninitialized warnings until they can all be resolved - Let DZil version the CType:: classes - Removed unused EXPORT_OK option * Wed Jul 6 2016 Paul Howarth - 1:0.901-1 - Epoch bump as per Fedora version * Thu Jun 30 2016 Paul Howarth - 0.901000-1 - Update to 0.901 - Fixed a bug introduced in 0.900 where the auth method call pointed to the wrong scope - Explicitly require IO::Socket::SSL and Net::SSLeay for SSL functionality * Mon Jun 13 2016 Paul Howarth - 0.900003-1 - Update to 0.900003 - Fixed conditional dependencies - Fixed locale specific testing - Fixed the Changes file - Added some git helper files for the repo - Reorganized the PM files into the lib directory - Auto-generate MANIFEST using MANIFEST.SKIP from here on - Ensure all files EOL with \n rather than any combination of \n and \r\n - Renamed many undocumented/private functions to names beginning with _ - Added many, many tests for coverage and to prevent regressions - Updated Config.PL to modernize - Lazily load Win32API::Registry for ::CType::Win32 - This release by CAPOEIRAB → update source URL - Add patch to support building with Test::More < 0.88 - Classify buildreqs by usage - Simplify find command using -delete - Package new LICENSE file - Prefer %%global over %%define * Fri Sep 12 2014 Paul Howarth 0.8.23-2 - Perl 5.20 rebuild * Wed Jul 16 2014 Paul Howarth 0.8.23-1 - Update to 0.8.23 - Fixed problems with long subjects containing accented characters - Fixed problems with IO::Socket::SSL - Trims addresses passed in an array (per request) - Fixed licence per request from Fedora - Fix to allow very long passwords - Fix error in TestServer() - Drop %%defattr, redundant since rpm 4.4 * Thu Dec 13 2012 Paul Howarth 0.8.22-1 - Update to 0.8.22 - Set PERL_MM_USE_DEFAULT=1 so we don't have to touch "Config" in %%build * Tue Jul 10 2012 Paul Howarth 0.8.21-2 - BR: perl(Data::Dumper) * Mon May 28 2012 Paul Howarth 0.8.21-1 - Update to 0.8.21 - Fixed the case in the header names (Content-type -> Content-Type) - Fixed the encoding of non-ASCII stuff in headers (RFC 2047) - Fixed using the ctype even for body with MailFile - Don't need to remove empty directories from buildroot - Drop support for old distributions prior to FC-3: - Don't need to define %%{perl_vendorlib} - Use DESTDIR rather than PERL_INSTALL_ROOT - Add buildreqs for completeness: - perl(Carp) - perl(Encode) - perl(Exporter) - perl(IO::Handle) - perl(IO::Socket::INET) - perl(IO::Socket::SSL) - perl(MIME::Base64) - perl(MIME::QuotedPrint) - perl(Net::SSLeay) - perl(Time::Local) * Tue Jun 28 2011 Paul Howarth 0.8.16-6 - Rebuild for perl 5.14.1 in Rawhide - Tweak provides filter to make it work with rpm 4.9 onwards - Nobody else likes macros for commands - Fix dist tag for CentOS 6 and Scientific Linux * Fri Jun 25 2010 Paul Howarth 0.8.16-5 - Rebuild for perl 5.12.1 in Rawhide * Fri Jun 4 2010 Paul Howarth 0.8.16-4 - Fix dist tag for RHEL-6 Beta * Fri Feb 26 2010 Paul Howarth 0.8.16-3 - Dist tag for Rawhide no longer needs special-casing - Use %%{_fixperms} macro instead of our own %%{__chmod} incantation * Mon Sep 14 2009 Paul Howarth 0.8.16-2 - Define RPM macros in global scope - Filter out redundant unversioned provide of perl(Mail::Sender) * Sat Jul 14 2007 Paul Howarth 0.8.16-1 - Update to 0.8.16 - Tweak dist tag macros to work on current Rawhide with three-part releasenum - Clarify license a GPL version 1 or later, or Artistic (i.e. same as perl) - BuildRequire perl(Test::More) * Mon Mar 19 2007 Paul Howarth 0.8.13-2 - Fix dist tag for development builds and Fedora 7 onwards - Define %%{__id_u} in a more portable way - Fix argument order for find with -depth - Add buildreq perl(ExtUtils::MakeMaker) * Mon Feb 27 2006 Paul Howarth 0.8.13-1 - Simplify distribution detection - Remove buildroot unconditionally in %%clean and %%install - Remove macro __perl_package, used only twice - Remove macro __perl_version, used only once - Use sed rather than grep/mv to edit MANIFEST - Use search.cpan.org URLs - Add note about not building for FC >= 3 - Don't use macros in build-time command paths, hardcode them instead * Wed Jul 13 2005 Paul Howarth 0.8.10-5 - Fix bogus Group: tag - Remove optimizations from %%build, not needed for noarch package - Fix directory ownership issues - Fix line endings in README * Fri May 20 2005 Paul Howarth 0.8.10-4 - Rewrite spec file in (mainly) Fedora Extras style - Include full URL for source - Fix URL - Use MODULE_COMPAT dependency style and remove explicit perl dependency - Remove MANIFEST from %%doc * Thu Apr 15 2004 Paul Howarth 0.8.10-3 - Added explicit perl dependency to ensure that an RPM built on a system with an updated version of perl (and hence having files installed in a place that a non-updated system won't find them) will not install on the non-updated system. In such cases, just rebuild from the source RPM. - Changed distribution-identifying macros for greater portability. * Mon Feb 16 2004 Paul Howarth 0.8.10-2 - Unified spec file for Red Hat and Fedora Core * Fri Dec 12 2003 Paul Howarth 0.8.10-1.fc1 - More macros - Added Fedora Core version to RPM release ID * Wed Nov 26 2003 Paul Howarth 0.8.10-1 - Updated to 0.8.10 * Mon Nov 24 2003 Paul Howarth 0.8.00-2 - Updated to Fedora Core 1 * Tue Oct 15 2002 Paul Howarth 0.8.00-1 - Initial build