# remirepo/fedora spec file for php-phpmailer6 # # Copyright (c) 2017-2023 Remi Collet # License: CC-BY-SA-4.0 # http://creativecommons.org/licenses/by-sa/4.0/ # # Please preserve changelog entries # # Github %global gh_commit 039de174cd9c17a8389754d3b877a2ed22743e18 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner PHPMailer %global gh_project PHPMailer # Packagist %global pk_vendor phpmailer %global pk_project phpmailer # Namespace %global ns_vendor PHPMailer %global ns_project PHPMailer # don't change major version used in package name %global major 6 %bcond_without tests %global php_home %{_datadir}/php Name: php-%{pk_project}%{major} Version: 6.9.1 Release: 1%{?dist} Summary: Full-featured email creation and transfer class for PHP License: LGPL-2.1-only URL: https://github.com/%{gh_owner}/%{gh_project} # git snapshot to get upstream test suite Source0: %{name}-%{version}-%{gh_short}.tgz Source1: makesrc.sh # Simple unit test for packaging Source2: PHPMailerRpmTest.php # Fix path to match RPM installation layout Patch0: %{name}-layout.patch BuildArch: noarch %if %{with tests} BuildRequires: php(language) >= 5.5 BuildRequires: php-ctype BuildRequires: php-date BuildRequires: php-filter BuildRequires: php-hash BuildRequires: php-intl BuildRequires: php-mbstring BuildRequires: php-openssl BuildRequires: php-pcre BuildRequires: php-fedora-autoloader-devel # From composer.json, "require-dev": { # "dealerdirect/phpcodesniffer-composer-installer": "^1.0", # "doctrine/annotations": "^1.236 || ^1.13.3", # "php-parallel-lint/php-console-highlighter": "^0.5.0", # "php-parallel-lint/php-parallel-lint": "^1.3.1", # "phpcompatibility/php-compatibility": "^9.3.5", # "roave/security-advisories": "dev-latest", # "squizlabs/php_codesniffer": "^3.7.2", # "yoast/phpunit-polyfills": "^1.0.4" %global phpunit %{_bindir}/phpunit7 BuildRequires: php-composer(yoast/phpunit-polyfills) >= 1.0.0 BuildRequires: %{phpunit} BuildRequires: %{_sbindir}/smtp-sink %endif # From composer.json, "require": { # "require": { # "php": ">=5.5.0", # "ext-ctype": "*", # "ext-filter": "*", # "ext-hash": "*" Requires: php(language) >= 5.5 Requires: php-ctype Requires: php-filter Requires: php-hash # from phpcompatinfo report on version 6.1.3 Requires: php-date %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 Recommends: php-imap %else Requires: php-imap %endif Requires: php-intl Requires: php-mbstring Requires: php-openssl Requires: php-pcre # From composer.json, "suggest": { # "ext-mbstring": "Needed to send email in multibyte encoding charset", # "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication", # "ext-openssl": "Needed for secure SMTP sending and DKIM signing", # "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", # "league/oauth2-google": "Needed for Google XOAUTH2 authentication", # "psr/log": "For optional PSR-3 debug logging", # "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication", # "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)" %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 Suggests: php-composer(psr/log) %endif Provides: php-composer(%{pk_vendor}/%{pk_project}) = %{version} %description PHPMailer - A full-featured email creation and transfer class for PHP Class Features * Probably the world's most popular code for sending email from PHP! * Used by many open-source projects: WordPress, Drupal, 1CRM, SugarCRM, Yii, Joomla! and many more * Integrated SMTP support - send without a local mail server * Send emails with multiple To, CC, BCC and Reply-to addresses * Multipart/alternative emails for mail clients that do not read HTML email * Add attachments, including inline * Support for UTF-8 content and 8bit, base64, binary, and quoted-printable encodings * SMTP authentication with LOGIN, PLAIN, CRAM-MD5 and XOAUTH2 mechanisms over SSL and SMTP+STARTTLS transports * Validates email addresses automatically * Protect against header injection attacks * Error messages in 47 languages! * DKIM and S/MIME signing support * Compatible with PHP 5.5 and later * Namespaced to prevent name clashes * Much more! Autoloader: %{php_home}/%{ns_vendor}/%{ns_project}%{major}/autoload.php %prep %setup -q -n %{gh_project}-%{gh_commit} %patch -P0 -p1 -b .rpm find src -name \*.rpm -delete cp %{SOURCE2} test/PHPMailerRpmTest.php cat << 'EOF' | tee src/autoload.php phpunit.xml : Start fake MTA and test environment PORT=$(expr 2500 + %{?fedora}%{?rhel}) sed -e "s/2500/$PORT/" test/testbootstrap-dist.php > test/testbootstrap.php mkdir -p build/logs chmod +x test/fakesendmail.sh pushd build smtp-sink -d "%%d.%%H.%%M.%%S" localhost:$PORT 1000 &>/dev/null & SMTPPID=$! popd : Run upstream test suite ret=0 for cmd in php php81 php82 php83; do if which $cmd; then $cmd -d "sendmail_path=$PWD/test/fakesendmail.sh -t -i " \ %{phpunit} --exclude slow,pop3,languages --verbose || ret=1 fi done : Cleanup kill $SMTPPID exit $ret %endif %files # remirepo:1 %{!?_licensedir:%global license %%doc} %license LICENSE %license COMMITMENT %doc *.md %doc examples %doc composer.json %{php_home}/%{ns_vendor} %changelog * Mon Nov 27 2023 Remi Collet - 6.9.1-1 - update to 6.9.1 * Tue Aug 29 2023 Remi Collet - 6.8.1-1 - update to 6.8.1 * Mon Mar 6 2023 Remi Collet - 6.8.0-1 - update to 6.8.0 * Thu Dec 8 2022 Remi Collet - 6.7.1-1 - update to 6.7.1 * Mon Dec 5 2022 Remi Collet - 6.7-1 - update to 6.7 * Mon Oct 10 2022 Remi Collet - 6.6.5-1 - update to 6.6.5 * Tue Aug 30 2022 Remi Collet - 6.6.4-1 - update to 6.6.4 * Mon Jun 20 2022 Remi Collet - 6.6.3-1 - update to 6.6.3 * Tue Jun 14 2022 Remi Collet - 6.6.2-1 - update to 6.6.2 * Mon Feb 28 2022 Remi Collet - 6.6.0-1 - update to 6.6.0 * Thu Feb 17 2022 Remi Collet - 6.5.4-1 - update to 6.5.4 * Fri Nov 26 2021 Remi Collet - 6.5.3-1 - update to 6.5.3 * Wed Sep 1 2021 Remi Collet - 6.5.1-1 - update to 6.5.1 * Thu Jun 17 2021 Remi Collet - 6.5.0-1 - update to 6.5.0 * Mon May 3 2021 Remi Collet - 6.4.1-1 - update to 6.4.1 * Thu Apr 1 2021 Remi Collet - 6.4.0-1 - update to 6.4.0 * Wed Feb 24 2021 Remi Collet - 6.3.0-1 - update to 6.3.0 - php-imap is optional * Thu Nov 26 2020 Remi Collet - 6.2.0-1 - update to 6.2.0 - add build dependency on yoast/phpunit-polyfills - switch to phpunit7 * Sat Oct 10 2020 Remi Collet - 6.1.8-1 - update to 6.1.8 * Wed Jul 15 2020 Remi Collet - 6.1.7-1 - update to 6.1.7 * Wed May 27 2020 Remi Collet - 6.1.6-1 - update to 6.1.6 * Sat Mar 14 2020 Remi Collet - 6.1.5-1 - update to 6.1.5 * Tue Dec 10 2019 Remi Collet - 6.1.4-1 - update to 6.1.4 * Thu Nov 21 2019 Remi Collet - 6.1.3-1 - update to 6.1.3 * Thu Nov 14 2019 Remi Collet - 6.1.2-1 - update to 6.1.2 * Mon Sep 30 2019 Remi Collet - 6.1.1-1 - update to 6.1.1 * Mon Feb 4 2019 Remi Collet - 6.0.7-1 - update to 6.0.7 * Fri Nov 16 2018 Remi Collet - 6.0.6-1 - update to 6.0.6 * Wed Mar 28 2018 Remi Collet - 6.0.5-1 - update to 6.0.5 (no change) * Tue Mar 27 2018 Remi Collet - 6.0.4-1 - update to 6.0.4 - add patch to fix lang_path with RPM layout * Sun Jan 7 2018 Remi Collet - 6.0.3-1 - Update to 6.0.3 * Fri Dec 1 2017 Remi Collet - 6.0.2-1 - Update to 6.0.2 * Wed Nov 15 2017 Remi Collet - 6.0.1-1 - initial rpm, version 6.0.1 - open https://github.com/PHPMailer/PHPMailer/issues/1243 for FSF address