summaryrefslogtreecommitdiffstats
path: root/php-swiftmailer6.spec
blob: 0cdb9147f1d213dc42ce39563caf2a94dbe856fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
# remirepo/fedora spec file for php-swiftmailer6
#
# Copyright (c) 2016-2020 Remi Collet
# License: CC-BY-SA
# http://creativecommons.org/licenses/by-sa/4.0/
#
# Please preserve changelog entries
#

%bcond_without       tests

%global gh_commit    56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e
%global gh_short     %(c=%{gh_commit}; echo ${c:0:7})
%global gh_owner     swiftmailer
%global gh_project   swiftmailer
# don't change major version used in package name
%global major        6
%global php_home     %{_datadir}/php

Name:           php-%{gh_project}%{major}
Version:        6.2.4
Release:        1%{?dist}
Summary:        Free Feature-rich PHP Mailer

License:        MIT
URL:            https://swiftmailer.symfony.com/
# git snapshot to retrieve test suite
Source0:        %{name}-%{version}-%{gh_short}.tgz
Source1:        makesrc.sh

BuildArch:      noarch
%if %{with tests}
BuildRequires:  php(language) >= 7.0.0
# remirepo:1
%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8
BuildRequires: (php-composer(egulias/email-validator) >= 2.0  with php-composer(egulias/email-validator) <  3)
# remirepo:3
%else
BuildRequires:  php-egulias-email-validator2
%endif
BuildRequires:  php-intl
BuildRequires:  php-reflection
BuildRequires:  php-simplexml
BuildRequires:  php-bcmath
BuildRequires:  php-date
BuildRequires:  php-filter
BuildRequires:  php-hash
BuildRequires:  php-iconv
BuildRequires:  php-mbstring
BuildRequires:  php-mhash
BuildRequires:  php-openssl
BuildRequires:  php-pcre
BuildRequires:  php-spl
# From composer.json, "require-dev": {
#        "mockery/mockery": "^1.0",
#        "symfony/phpunit-bridge": "^4.4|^5.0"
# remirepo:1
%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8
BuildRequires: (php-composer(mockery/mockery)        >= 1.0    with php-composer(mockery/mockery)        < 2)
#BuildRequires:(php-composer(symfony/phpunit-bridge) >= 4.4    with php-composer(symfony/phpunit-bridge) < 5)
# remirepo:4
%else
BuildRequires:  php-mockery
#BuildRequires: php-symfony4-phpunit-bridge
%endif
%if 0%{?fedora} >= 32 || 0%{?rhel} >= 9
%global phpunit %{_bindir}/phpunit9
%else
%global phpunit %{_bindir}/phpunit8
%endif
BuildRequires:  %{phpunit}
%endif
BuildRequires:  php-fedora-autoloader-devel

# From composer.json, "require": {
#        "php": ">=7.0.0",
#        "egulias/email-validator": "^2.0",
#        "symfony/polyfill-iconv": "^1.0",
#        "symfony/polyfill-mbstring": "^1.0",
#        "symfony/polyfill-intl-idn": "^1.10"
Requires:       php(language) >= 7.0.0
%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8
Requires:      (php-composer(egulias/email-validator) >= 2.0  with php-composer(egulias/email-validator) <  3)
# remirepo:2
%else
Requires:       php-egulias-email-validator2
%endif
# From composer.json,     "suggest": {
#        "ext-intl": "Needed to support internationalized email addresses"
Requires:       php-intl
# from phpcompatinfo report on version 6.2.0
Requires:       php-reflection
Requires:       php-simplexml
Requires:       php-bcmath
Requires:       php-date
Requires:       php-filter
Requires:       php-hash
Requires:       php-iconv
Requires:       php-mbstring
Requires:       php-mhash
Requires:       php-openssl
Requires:       php-pcre
Requires:       php-spl

Provides:       php-composer(%{gh_owner}/%{gh_project}) = %{version}


%description
Swift Mailer integrates into any web app written in PHP, offering a 
flexible and elegant object-oriented approach to sending emails with 
a multitude of features.

Autoloader: %{php_home}/Swift%{major}/autoload.php



%prep
%setup -q -n %{gh_project}-%{gh_commit}

cat << 'EOF' | tee lib/autoload.php
<?php
/* Autoloader for %{name} and its' dependencies */
require_once '%{php_home}/Egulias/EmailValidator2/autoload.php';
require_once __DIR__ . '/swift_required.php';
EOF


%build
# Empty build section, most likely nothing required.


%install
mkdir -p                   %{buildroot}/%{php_home}/Swift%{major}
cp -p  lib/*.php           %{buildroot}/%{php_home}/Swift%{major}/
cp -pr lib/classes         %{buildroot}/%{php_home}/Swift%{major}/
cp -pr lib/dependency_maps %{buildroot}/%{php_home}/Swift%{major}/


%check
%if %{with tests}
: Use installed tree and autoloader
mkdir vendor
%{_bindir}/phpab --format fedora --output vendor/autoload.php tests
cat << 'EOF' | tee -a vendor/autoload.php
require_once '%{buildroot}/%{php_home}/Swift%{major}/autoload.php';
require_once '%{php_home}/Mockery1/autoload.php';
//require_once '%{php_home}/Symfony4/Bridge/PhpUnit/autoload.php';
EOF

: Avoid duplicated classes
find tests -name \*.php -exec sed -e '/swift_required/d' -i {} \;

TMPDIR=$(mktemp -d $PWD/rpmtests-XXXXXXXX)
cat << EOF | tee tests/acceptance.conf.php
<?php
define('SWIFT_TMP_DIR', '$TMPDIR');
EOF

: for phpunit8/9
find tests -name \*.php \
  -exec sed \
    -e 's/assertMatchesRegularExpression/assertRegExp/' \
    -e 's/assertDoesNotMatchRegularExpression/assertNotRegExp/' \
    -e 's/function setUp()/function setUp():void/' \
    -e 's/function tearDown()/function tearDown():void/' \
    -i {} \;

: get rid of symfony/phpunit-bridge
sed -e '/listener/d' phpunit.xml.dist > phpunit.xml

: Run upstream test suite
ret=0
for cmdarg in "php %{phpunit}" "php72 %{_bindir}/phpunit8" php73 php74 php80; do
  if which $cmdarg; then
    set $cmdarg
    $1 ${2:-%{_bindir}/phpunit9} --exclude smoke --verbose || ret=1
  fi
done
rm -r $TMPDIR
exit $ret
%endif


%files
# remirepo:1
%{!?_licensedir:%global license %%doc}
%license LICENSE
%doc CHANGES README.md
%doc doc
%doc composer.json
%{php_home}/Swift%{major}


%changelog
* Wed Dec  9 2020 Remi Collet <remi@remirepo.net> - 6.2.4-1
- update to 6.2.4
- sources from git snapshot
- switch to phpunit9 and php-mockery

* Mon Feb 24 2020 Remi Collet <remi@remirepo.net> - 6.2.3-3
- disable test suite where mockery < 1 is broken

* Tue Nov 12 2019 Remi Collet <remi@remirepo.net> - 6.2.3-1
- update to 6.2.3

* Tue Apr 23 2019 Remi Collet <remi@remirepo.net> - 6.2.1-1
- update to 6.2.1

* Mon Mar 11 2019 Remi Collet <remi@remirepo.net> - 6.2.0-1
- update to 6.2.0

* Tue Sep 11 2018 Remi Collet <remi@remirepo.net> - 6.1.3-1
- update to 6.1.3

* Fri Jul 13 2018 Remi Collet <remi@remirepo.net> - 6.1.2-1
- update to 6.1.2

* Wed Jul  4 2018 Remi Collet <remi@remirepo.net> - 6.1.1-1
- update to 6.1.1

* Tue Jul  3 2018 Remi Collet <remi@remirepo.net> - 6.1.0-1
- update to 6.1.0
- add dependency on intl extension
- use range dependencies on F27+

* Wed Oct  4 2017 Remi Collet <remi@remirepo.net> - 6.0.2-1
- Update to 6.0.2
- rename to php-swiftmailer6
- raise dependency on PHP 7.0
- add dependency on egulias/email-validator 2.0
- use phpunit6 for test suite

* Wed Oct  4 2017 Remi Collet <remi@remirepo.net> - 5.4.8-3
- drop unneeded dependency on php-mcrypt

* Wed May 10 2017 Remi Collet <remi@remirepo.net> - 5.4.8-1
- Update to 5.4.8

* Fri Apr 21 2017 Remi Collet <remi@remirepo.net> - 5.4.7-1
- Update to 5.4.7

* Mon Feb 13 2017 Remi Collet <remi@fedoraproject.org> - 5.4.6-1
- update to 5.4.6

* Thu Dec 29 2016 Remi Collet <remi@fedoraproject.org> - 5.4.5-1
- update to 5.4.5
- fix Remote Code Execution CVE-2016-10074

* Thu Nov 24 2016 Remi Collet <remi@fedoraproject.org> - 5.4.4-1
- update to 5.4.4

* Fri Jul  8 2016 Remi Collet <remi@fedoraproject.org> - 5.4.3-1
- update to 5.4.3
- drop patch merged upstream

* Tue Jun 14 2016 Remi Collet <remi@fedoraproject.org> - 5.4.2-2
- add patch to allow mockery 0.9.x
  open https://github.com/swiftmailer/swiftmailer/pull/769

* Mon May  2 2016 Remi Collet <remi@fedoraproject.org> - 5.4.2-1
- update to 5.4.2

* Fri Mar 25 2016 Remi Collet <remi@fedoraproject.org> - 5.4.1-2
- rebuild for remi repository

* Fri Oct 16 2015 Remi Collet <remi@fedoraproject.org> - 5.4.1-1
- initial rpm, version 5.4.1
- sources from github, pear channel is dead