blob: 80a69efdc19431efc9f4a0b362932d979e0c1a9e (
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
|
# spec file for php-theseer-directoryscanner
#
# Copyright (c) 2014-2024 Remi Collet
# License: CC-BY-SA
# http://creativecommons.org/licenses/by-sa/4.0/
#
# 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: 8%{?dist}
Summary: A recursive directory scanner and filter
Group: Development/Libraries
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
BuildArch: noarch
BuildRequires: php(language) >= 5.3.1
%if %{with tests}
BuildRequires: phpunit7
%endif
# From composer.json
Requires: php(language) >= 5.3.1
# From phpcompatinfo report for 1.3.0
Requires: php-fileinfo
Requires: php-spl
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}
%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';
class_alias('PHPUnit\\Framework\\TestCase', 'PHPUnit_Framework_TestCase');
EOF
ret=0
for cmd in php php81 php82 php83; do
if which $cmd; then
$cmd %{_bindir}/phpunit7 \
--bootstrap bs.php \
--verbose \
--no-coverage \
--no-configuration \
tests/*php|| 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
%{!?_licensedir:%global license %%doc}
%license LICENSE
%doc composer.json
%dir %{php_home}
%{php_home}/%{gh_project}
%changelog
* 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
|