blob: a00cb58685ab0b56c2ae6f00e19e2b361ab11522 (
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
|
# remirepo/fedora spec file for php-composer-metadata-minifier
#
# Copyright (c) 2021 Remi Collet
# License: CC-BY-SA
# http://creativecommons.org/licenses/by-sa/4.0/
#
# Please, preserve the changelog entries
#
%bcond_without tests
%global gh_commit c549d23829536f0d0e984aaabbf02af91f443207
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
#global gh_date 20150717
%global gh_owner composer
%global gh_project metadata-minifier
%global php_home %{_datadir}/php
%global ns_vendor Composer
%global ns_project MetadataMinifier
Name: php-%{gh_owner}-%{gh_project}
Version: 1.0.0
Release: 1%{?gh_date:.%{gh_date}git%{gh_short}}%{?dist}
Summary: Library that handles metadata minification and expansion
License: MIT
URL: https://github.com/%{gh_owner}/%{gh_project}
# git snapshot to get upstream test suite
Source0: %{name}-%{version}-%{gh_short}.tgz
Source1: makesrc.sh
BuildArch: noarch
%if %{with tests}
# For tests
BuildRequires: php(language) >= 5.3.2
# From composer.json, "require-dev": {
# "symfony/phpunit-bridge": "^4.2 || ^5",
# "phpstan/phpstan": "^0.12.55",
# "composer/composer": "^2"
BuildRequires: composer >= 2
%global phpunit %{_bindir}/phpunit9
BuildRequires: phpunit9
%endif
# Autoloader
BuildRequires: php-fedora-autoloader-devel
# From composer.json, "require": {
# "php": "^5.3.2 || ^7.0 || ^8.0",
Requires: php(language) >= 5.3.2
# From phpcompatinfo report for version 1.0
# nothing
# Autoloader
Requires: php-composer(fedora/autoloader)
Provides: php-composer(%{gh_owner}/%{gh_project}) = %{version}
%description
Small utility library that handles metadata minification and expansion.
Autoloader: %{php_home}/%{ns_vendor}/%{ns_project}/autoload.php \
%prep
%setup -q -n %{gh_project}-%{gh_commit}
%build
: Generate classmap autoloader
phpab -t fedora -o src/autoload.php src
%install
: Library
mkdir -p %{buildroot}%{php_home}/%{ns_vendor}
cp -pr src %{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}
%check
%if %{with tests}
mkdir vendor
# Composer autoloader (single build dependency)
ln -s %{php_home}/%{ns_vendor}/autoload.php vendor/autoload.php
# use auto_prepend_file as in composer autoloader
ret=0
for cmd in "php %{phpunit}" php73 php74 php80; do
if which $cmd; then
set $cmd
$1 -d memory_limit=1G \
-d auto_prepend_file=%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}/autoload.php \
${2:-%{_bindir}/phpunit9} \
--no-coverage \
--verbose || ret=1
fi
done
exit $ret
%else
: Test suite disabled
%endif
%files
# remirepo:1
%{!?_licensedir:%global license %%doc}
%license LICENSE
%doc composer.json
%doc *.md
%dir %{php_home}/%{ns_vendor}
%{php_home}/%{ns_vendor}/%{ns_project}
%changelog
* Tue Apr 27 2021 Remi Collet <remi@remirepo.net> - 1.0.0-1
- initial package, version 1.0.0
|