blob: 442df4f747ec8a3cb5b8abd2aecd4514a4eaf8b3 (
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
|
# spec file for php-theseer-directoryscanner
#
# SPDX-FileCopyrightText: Copyright 2014-2025 Remi Collet
# SPDX-License-Identifier: CECILL-2.1
# http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
#
# Please, preserve the changelog entries
#
%global gh_commit 4cdce31c1b5120779a01225b5b0968f9321342d6
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
%global gh_owner theseer
%global gh_project DirectoryScanner
%global php_home %{_datadir}/php/TheSeer
%global pear_name DirectoryScanner
%global pear_channel pear.netpirates.net
%if 0%{?fedora}
%bcond_without tests
%else
%bcond_with tests
%endif
Name: php-theseer-directoryscanner
Version: 1.3.3
Release: 11%{?dist}
Summary: A recursive directory scanner and filter
License: BSD-2-Clause
URL: https://github.com/%{gh_owner}/%{gh_project}
Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{name}-%{version}.tar.gz
# minimal fix to allow phpunit9
Patch0: %{name}-tests.patch
BuildArch: noarch
BuildRequires: php(language) >= 5.3.1
%if %{with tests}
BuildRequires: phpunit9
%endif
# From composer.json
Requires: php(language) >= 5.3.1
# From phpcompatinfo report for 1.3.0
Requires: php-fileinfo
Provides: php-composer(theseer/directoryscanner) = %{version}
Provides: php-pear(%{pear_channel}/%{pear_name}) = %{version}
%description
A recursive directory scanner and filter.
%prep
%setup -q -n %{gh_project}-%{gh_commit}
%patch -P0 -p1
%build
# Empty build section, most likely nothing required.
%install
mkdir -p %{buildroot}%{php_home}
cp -pr src %{buildroot}%{php_home}/%{gh_project}
%check
%if %{with tests}
cat << 'EOF' | tee bs.php
<?php
require_once '%{buildroot}%{php_home}/%{gh_project}/autoload.php';
EOF
ret=0
for cmd in php php81 php82 php83 php84; do
if which $cmd; then
$cmd %{_bindir}/phpunit9 \
--bootstrap bs.php \
--verbose \
--no-coverage \
--do-not-cache-result \
--test-suffix=.test.php \
--no-configuration \
tests || ret=1
fi
done
exit $ret
%endif
%post
if [ -x %{_bindir}/pear ]; then
%{_bindir}/pear uninstall --nodeps --ignore-errors --register-only \
%{pear_channel}/%{pear_name} >/dev/null || :
fi
%files
%license LICENSE
%doc composer.json
%dir %{php_home}
%{php_home}/%{gh_project}
%changelog
* Thu Jun 26 2025 Remi Collet <remi@remirepo.net> - 1.3.3-11
- use phpunit9
- re-license spec file to CECILL-2.1
* Wed Jan 31 2024 Remi Collet <remi@remirepo.net> - 1.3.3-8
- use phpunit7 FTBFS #2261513
* Mon Dec 6 2021 Remi Collet <remi@remirepo.net> - 1.3.3-2
- disable test suite on EL
* Mon Jul 26 2021 Remi Collet <remi@remirepo.net> - 1.3.3-1
- update to 1.3.3
* Fri Mar 10 2017 Remi Collet <remi@remirepo.net> - 1.3.2-1
- Update to 1.3.2 (no change)
* Tue Nov 25 2014 Remi Collet <remi@fedoraproject.org> - 1.3.1-1
- update to 1.3.1
* Tue Nov 25 2014 Remi Collet <remi@fedoraproject.org> - 1.3.0-3
- switch from pear to github sources
- enable test suite
* Sun Apr 6 2014 Remi Collet <remi@fedoraproject.org> - 1.3.0-1
- initial package, version 1.3.0
|