blob: 7e970132acf028a0ecc897d826bcdb23ab6f791a (
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
|
# remirepo/fedora spec file for php-seld-phar-utils
#
# Copyright (c) 2015-2021 Remi Collet
# License: CC-BY-SA
# http://creativecommons.org/licenses/by-sa/4.0/
#
# Please, preserve the changelog entries
#
%global gh_commit ea2f4014f163c1be4c601b9b7bd6af81ba8d701c
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
%global gh_owner Seldaek
%global gh_project phar-utils
Name: php-seld-phar-utils
Version: 1.2.1
Release: 1%{?dist}
Summary: PHAR file format utilities
License: MIT
URL: https://github.com/%{gh_owner}/%{gh_project}
Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}-%{gh_short}.tar.gz
BuildArch: noarch
BuildRequires: php(language) >= 5.3
# For test
BuildRequires: php-cli
# Autoloader
BuildRequires: php-fedora-autoloader-devel
# From composer.json
# "php": ">=5.3.0",
Requires: php(language) >= 5.3.0
# From phpcompatifo report for 1.0.1
Requires: php-date
Requires: php-hash
Requires: php-pcre
Requires: php-spl
# Autoloader
Requires: php-composer(fedora/autoloader)
Provides: php-composer(seld/phar-utils) = %{version}
%description
PHAR file format utilities, for when PHP phars you up.
To use this library, you just have to add, in your project:
require_once '%{_datadir}/php/Seld/PharUtils/autoload.php';
%prep
%setup -q -n %{gh_project}-%{gh_commit}
phpab --template fedora --output src/autoload.php src
%build
# Nothing
%install
# Restore PSR-0 tree
mkdir -p %{buildroot}%{_datadir}/php/Seld/PharUtils/
cp -pr src/* %{buildroot}%{_datadir}/php/Seld/PharUtils/
%check
: Check if our autoloader works
php -r '
require "%{buildroot}%{_datadir}/php/Seld/PharUtils/autoload.php";
$a = new \Seld\PharUtils\Timestamps("%{SOURCE1}");
echo "Ok\n";
exit(0);
'
%files
# remirepo:1
%{!?_licensedir:%global license %%doc}
%license LICENSE
%doc README.md
%doc composer.json
%{_datadir}/php/Seld
%changelog
* Mon Sep 12 2022 Remi Collet <remi@remirepo.net> - 1.2.1-1
- update to 1.2.1
* Fri Dec 10 2021 Remi Collet <remi@remirepo.net> - 1.2.0-1
- update to 1.2.0
- switch to classmap autoloader
* Mon Aug 23 2021 Remi Collet <remi@remirepo.net> - 1.1.2-1
- update to 1.1.2
* Wed Jul 8 2020 Remi Collet <remi@remirepo.net> - 1.1.1-1
- update to 1.1.1
* Mon Feb 17 2020 Remi Collet <remi@remirepo.net> - 1.1.0-1
- update to 1.1.0
* Tue Jan 14 2020 Remi Collet <remi@remirepo.net> - 1.0.2-1
- update to 1.0.2
* Fri Oct 21 2016 Remi Collet <remi@fedoraproject.org> - 1.0.1-2
- switch from symfony/class-loader to fedora/autoloader
* Wed Oct 14 2015 Remi Collet <remi@fedoraproject.org> - 1.0.1-1
- update to 1.0.1
- add autoloader
* Mon May 4 2015 Remi Collet <remi@fedoraproject.org> - 1.0.0-1
- initial package
|