blob: a56c066f23636e60e0b348e7d738f9e6f772cb8b (
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
126
127
128
129
130
131
132
|
# remirepo spec file for php-solidworx-aspect
#
# SPDX-FileCopyrightText: Copyright 2025 Remi Collet
# SPDX-License-Identifier: CECILL-2.1
# http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
#
# Please, preserve the changelog entries
#
%{?scl:%scl_package php-solidworx-aspect}
%bcond_without tests
# Extension
%global ext_name aspect
%global ini_name 40-%{ext_name}.ini
%global upstream_version 0.1.1
#global upstream_prever RC1
# PIE / packagist
%global pie_vend solidworx
%global pie_proj aspect
# Github forge
%global gh_vend SolidWorx
%global gh_proj aspect
%global forgeurl https://github.com/%{gh_vend}/%{gh_proj}
#global commit b3ae87353da524f33374ee0418ad48f704bb6af1
%global tag %{upstream_version}%{?upstream_prever}
Summary: PHP Aspect Extension
Name: %{?scl_prefix}php-%{pie_vend}-%{pie_proj}
Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}}
%forgemeta
Release: 1%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}
License: MIT
URL: %{forgeurl}
Source0: %{forgesource}
BuildRequires: make
BuildRequires: gcc
BuildRequires: %{?scl_prefix}php-devel >= 8.0
Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api}
Requires: %{?scl_prefix}php(api) = %{php_core_api}
Provides: %{?scl_prefix}php-%{ext_name} = %{version}
Provides: %{?scl_prefix}php-%{ext_name}%{?_isa} = %{version}
Provides: %{?scl_prefix}php-pie(%{pie_vend}/%{pie_proj}) = %{version}
%description
Aspect is a PHP extension that provides a collection of utilities designed
to enhance your development workflow. By introducing advanced features like
attribute-based memoization, Aspect allows developers to write more efficient,
clean, and maintainable code without the overhead of implementing complex
patterns manually.
Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}.
%prep
%forgesetup
# see https://github.com/SolidWorx/aspect/pull/3
sed -e '/PHP_ASPECT_VERSION/s/0.1.0/%{upstream_version}%{?upstream_prever}/' -i php_aspect.h
: Sanity check, really often broken
extver=$(sed -n '/# define PHP_ASPECT_VERSION/{s/.* "//;s/".*$//;p}' php_aspect.h)
if test "x${extver}" != "x%{upstream_version}%{?upstream_prever}"; then
: Error: Upstream extension version is ${extver}, expecting %{version}.
exit 1
fi
: Create configuration file
cat << 'EOF' | tee %{ini_name}
; Enable the %{summary}
extension=%{ext_name}.so
EOF
%build
%{__phpize}
sed -e 's/INSTALL_ROOT/DESTDIR/' -i build/Makefile.global
%configure \
--enable-aspect \
--with-libdir=%{_lib} \
--with-php-config=%{__phpconfig}
%make_build
%install
%make_install
# install config file
install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name}
%check
: Minimal load test for the extension
%{__php} --no-php-ini \
--define extension=%{buildroot}/%{php_extdir}/%{ext_name}.so \
--modules | grep '^%{ext_name}$'
%if %{with tests}
: Upstream test suite for the extension
TEST_PHP_ARGS="-n -d extension=%{buildroot}/%{php_extdir}/%{ext_name}.so" \
%{__php} -n run-tests.php -q --show-diff %{?_smp_mflags}
%endif
%files
%license LICENSE
%doc composer.json
%doc *.md
%config(noreplace) %{php_inidir}/%{ini_name}
%{php_extdir}/%{ext_name}.so
%changelog
* Tue Jan 14 2025 Remi Collet <remi@remirepo.net> - 0.1.1-1
- update to 0.1.1
- drop patch merged upstream
- open https://github.com/SolidWorx/aspect/pull/3 fix version
* Tue Jan 14 2025 Remi Collet <remi@remirepo.net> - 0.1.0-2
- fix build with PHP 8.0 using patch from
https://github.com/SolidWorx/aspect/pull/2
* Fri Jan 10 2025 Remi Collet <remi@remirepo.net> - 0.1.0-1
- initial package
- open https://github.com/SolidWorx/aspect/issues/1 PHP 8.0 build is broken
|