blob: 8467bfbebde562f2cf22435e40fb7672c0a296e5 (
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
|
# remirepo/Fedora spec file for php-aura-intl
#
# Copyright (c) 2018 Remi Collet
# License: CC-BY-SA
# http://creativecommons.org/licenses/by-sa/4.0/
#
# Please, preserve the changelog entries
#
%global bootstrap 0
%global gh_commit 7fce228980b19bf4dee2d7bbd6202a69b0dde926
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
%global gh_owner auraphp
%global gh_project Aura.Intl
%global pk_owner aura
%global pk_project intl
%global ns_owner Aura
%global ns_project Intl
%global php_home %{_datadir}/php
%global with_tests 0%{!?_without_tests:1}
Name: php-%{pk_owner}-%{pk_project}
Version: 3.0.0
Release: 1%{?dist}
Summary: Internationalization tools
Group: Development/Libraries
License: MIT
URL: https://github.com/%{gh_owner}/%{gh_project}
Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{name}-%{version}-%{gh_short}.tar.gz
BuildArch: noarch
BuildRequires: php-composer(fedora/autoloader)
# Tests
%if %{with_tests}
BuildRequires: php(language) >= 5.6
BuildRequires: php-intl
BuildRequires: %{_bindir}/phpunit
BuildRequires: php-composer(fedora/autoloader)
%endif
# From composer, "require": {
# "php": "^5.6|^7.0"
Requires: php(language) >= 5.6
# From phpcompatinfo report for version 3.0.0
Requires: php-intl
# Autoloader
Requires: php-composer(fedora/autoloader)
Provides: php-composer(%{pk_owner}/%{pk_project}) = %{version}
%description
The Aura.Intl package provides internationalization (I18N) tools,
specifically package-oriented per-locale message translation.
Autoloader: %{php_home}/%{ns_owner}/%{ns_project}/autoload.php
%prep
%setup -q -n %{gh_project}-%{gh_commit}
%build
cat << 'EOF' | tee -a src/autoload.php
<?php
/* Autoloader for %{pk_owner}/%{pk_project} and its dependencies */
require_once '%{_datadir}/php/Fedora/Autoloader/autoload.php';
\Fedora\Autoloader\Autoload::addPsr4('Aura\\Intl\\', __DIR__);
EOF
%install
mkdir -p %{buildroot}%{php_home}/%{ns_owner}
cp -pr src %{buildroot}%{php_home}/%{ns_owner}/%{ns_project}
%check
%if %{with_tests}
mkdir vendor
cat << 'EOF' | tee -a vendor/autoload.php
<?php
require '%{buildroot}/%{php_home}/%{ns_owner}/%{ns_project}/autoload.php';
\Fedora\Autoloader\Autoload::addPsr4('Aura\\Intl\\', dirname(__DIR__) . '/tests');
EOF
ret=0
for cmd in php php70 php71 php72 php73; do
if which $cmd; then
$cmd %{_bindir}/phpunit --verbose || ret=1
fi
done
exit $ret
%else
: Test suite disabled
%endif
%files
%{!?_licensedir:%global license %%doc}
%license LICENSE
%doc *.md
%doc composer.json
%dir %{php_home}/%{ns_owner}/
%{php_home}/%{ns_owner}/%{ns_project}/
%changelog
* Mon Jun 11 2018 Remi Collet <remi@remirepo.net> - 3.0.0-1
- initial package
|