blob: 5bf14324b438d57c23fb9a003d298b073b2fef61 (
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
|
# remirepo/Fedora spec file for php-zendframework-zend-mvc-plugins
#
# Copyright (c) 2016-2018 Remi Collet
# License: CC-BY-SA
# http://creativecommons.org/licenses/by-sa/4.0/
#
# Please, preserve the changelog entries
#
%global gh_commit b00cda46b0a95cbd32ea0743d6d7dc3fd2263f1b
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
%global gh_owner zendframework
%global gh_project zend-mvc-plugins
%global php_home %{_datadir}/php
%global library Plugin
Name: php-%{gh_owner}-%{gh_project}
Version: 1.0.1
Release: 5%{?dist}
Summary: Zend Framework Mvc-Plugins component
License: BSD
URL: https://framework.zend.com/
Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{name}-%{version}-%{gh_short}.tar.gz
BuildArch: noarch
# For test
BuildRequires: php-cli
BuildRequires: php-autoloader(%{gh_owner}/zend-mvc-plugin-fileprg) >= 1.0
BuildRequires: php-autoloader(%{gh_owner}/zend-mvc-plugin-flashmessenger) >= 1.0
BuildRequires: php-autoloader(%{gh_owner}/zend-mvc-plugin-identity) >= 1.0
BuildRequires: php-autoloader(%{gh_owner}/zend-mvc-plugin-prg) >= 1.0
# From composer, "require": {
# "php": "^5.6 || ^7.0",
# "zendframework/zend-mvc-plugin-fileprg": "^1.0",
# "zendframework/zend-mvc-plugin-flashmessenger": "^1.0",
# "zendframework/zend-mvc-plugin-identity": "^1.0",
# "zendframework/zend-mvc-plugin-prg": "^1.0"
Requires: php(language) >= 5.6
Requires: php-autoloader(%{gh_owner}/zend-mvc-plugin-fileprg) >= 1.0
Requires: php-autoloader(%{gh_owner}/zend-mvc-plugin-fileprg) < 2
Requires: php-autoloader(%{gh_owner}/zend-mvc-plugin-flashmessenger) >= 1.0
Requires: php-autoloader(%{gh_owner}/zend-mvc-plugin-flashmessenger) < 2
Requires: php-autoloader(%{gh_owner}/zend-mvc-plugin-identity) >= 1.0
Requires: php-autoloader(%{gh_owner}/zend-mvc-plugin-identity) < 2
Requires: php-autoloader(%{gh_owner}/zend-mvc-plugin-prg) >= 1.0
Requires: php-autoloader(%{gh_owner}/zend-mvc-plugin-prg) < 2
Provides: php-composer(%{gh_owner}/%{gh_project}) = %{version}
Provides: php-autoloader(%{gh_owner}/%{gh_project}) = %{version}
%description
zend-mvc-plugins is a metapackage that provides a single package for
installing all official zend-mvc plugins shipped as separate packages
under the zendframework organization. Currently, these include:
* zendframework/zend-mvc-plugin-fileprg
* zendframework/zend-mvc-plugin-flashmessenger
* zendframework/zend-mvc-plugin-identity
* zendframework/zend-mvc-plugin-prg
%prep
%setup -q -n %{gh_project}-%{gh_commit}
mv LICENSE.md LICENSE
%build
: Create autoloader
cat << 'EOF' | tee autoload.php
<?php
require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
\Fedora\Autoloader\Dependencies::required([
'%{php_home}/Zend/Mvc/Plugin/FilePrg/autoload.php',
'%{php_home}/Zend/Mvc/Plugin/FlashMessenger/autoload.php',
'%{php_home}/Zend/Mvc/Plugin/Identity/autoload.php',
'%{php_home}/Zend/Mvc/Plugin/Prg/autoload.php',
]);
EOF
%install
install -Dpm 644 autoload.php %{buildroot}%{php_home}/Zend/Mvc/%{library}/autoload.php
%check
: Ensure autoloader works
php -r 'require "%{buildroot}%{php_home}/Zend/Mvc/%{library}/autoload.php";'
%files
%{!?_licensedir:%global license %%doc}
%license LICENSE
%doc *.md
%doc composer.json
%{php_home}/Zend/Mvc/%{library}/autoload.php
%changelog
* Tue Dec 12 2017 Remi Collet <remi@remirepo.net> - 1.0.1-5
- switch to fedora/autoloader
* Tue Jul 26 2016 Remi Collet <remi@fedoraproject.org> - 1.0.1-2
- fix summary and description
* Wed Jun 29 2016 Remi Collet <remi@fedoraproject.org> - 1.0.1-1
- initial package
|