# remirepo spec file for php-libvirt # With SCL stuff, from Fedora: # # Fedora spec file for php-libvirt # # Copyright (c) 2012-2016 Remi Collet # Copyright (c) 2011 Michal Novotny # # License: MIT # http://opensource.org/licenses/MIT # # Please, preserve the changelog entries # %if 0%{?scl:1} %global sub_prefix %{scl_prefix} %scl_package php-libvirt %endif %{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} # from upstream 1.2.9 (but seems wrong, missing VIR_STORAGE_VOL_CREATE_REFLINK) %global req_libvirt_version 1.2.10 %global extname libvirt-php %if "%{php_version}" < "5.6" %global ini_name %{extname}.ini %else %global ini_name 40-%{extname}.ini %endif Name: %{?sub_prefix}php-libvirt Version: 0.5.2 Release: 4%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} Summary: PHP language binding for Libvirt Group: Development/Libraries License: PHP URL: http://libvirt.org/php Source0: http://libvirt.org/sources/php/libvirt-php-%{version}.tar.gz BuildRequires: %{?scl_prefix}php-devel BuildRequires: libvirt-devel >= %{req_libvirt_version} BuildRequires: libxml2-devel BuildRequires: libxslt BuildRequires: xhtml1-dtds Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} Requires: %{?scl_prefix}php(api) = %{php_core_api} %{?_sclreq:Requires: %{?scl_prefix}runtime%{?_sclreq}%{?_isa}} ## Compat SCL (rh-php56) %if "%{?scl_prefix}" != "%{?sub_prefix}" Provides: %{?scl_prefix}php-libvirt = %{version}-%{release} Provides: %{?scl_prefix}php-libvirt%{?_isa} = %{version}-%{release} %endif %if "%{?vendor}" == "Remi Collet" && 0%{!?scl:1} && 0%{?rhel} # Other third party repo stuff Obsoletes: php53-libvirt <= %{version} Obsoletes: php53u-libvirt <= %{version} Obsoletes: php54-libvirt <= %{version} Obsoletes: php54w-libvirt <= %{version} %if "%{php_version}" > "5.5" Obsoletes: php55u-libvirt <= %{version} Obsoletes: php55w-libvirt <= %{version} %endif %if "%{php_version}" > "5.6" Obsoletes: php56u-libvirt <= %{version} Obsoletes: php56w-libvirt <= %{version} %endif %if "%{php_version}" > "7.0" Obsoletes: php70u-libvirt <= %{version} Obsoletes: php70w-libvirt <= %{version} %endif %if "%{php_version}" > "7.1" Obsoletes: php71u-libvirt <= %{version} Obsoletes: php71w-libvirt <= %{version} %endif %endif # Filter shared private - always as libvirt-php.so is a very bad name %{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$} %{?filter_setup} %description PHP language bindings for Libvirt API. For more details see: http://www.libvirt.org/php/ Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}. %package doc Summary: Document of php-libvirt Group: Development/Libraries %if 0%{?fedora} >= 11 || 0%{?rhel} >= 6 BuildArch: noarch Requires: %{name} = %{version}-%{release} %else Requires: %{name}%{_isa} = %{version}-%{release} %endif %if "%{?scl_prefix}" != "%{?sub_prefix}" Provides: %{?scl_prefix}php-libvirt-doc = %{version}-%{release} Provides: %{?scl_prefix}php-libvirt-doc%{?_isa} = %{version}-%{release} %endif %description doc PHP language bindings for Libvirt API. For more details see: http://www.libvirt.org/php/ http://www.php.net/ This package contain the document for php-libvirt. %prep %setup -q -n libvirt-php-%{version} %build %{?scl:. %{_scl_scripts}/enable} %configure \ --with-html-dir=%{_docdir} \ --with-html-subdir=$(echo %{_pkgdocdir} | sed -e 's|^%{_docdir}/||')/html \ --libdir=%{php_extdir} make %{?_smp_mflags} %install %{?scl:. %{_scl_scripts}/enable} make install DESTDIR=%{buildroot} install -pm 644 COPYING %{buildroot}%{_pkgdocdir} if [ -f %{buildroot}%{php_inidir}/%{extname}.ini ]; then if [ "%{extname}.ini" != "%{ini_name}" ]; then mv %{buildroot}%{php_inidir}/%{extname}.ini \ %{buildroot}%{php_inidir}/%{ini_name} fi else install -Dpm 644 src/libvirt-php.ini %{buildroot}%{php_inidir}/%{ini_name} fi : Fix installation rm %{buildroot}%{php_extdir}/%{extname}.la rm %{buildroot}%{php_extdir}/%{extname}.so rm %{buildroot}%{php_extdir}/%{extname}.so.0 mv %{buildroot}%{php_extdir}/%{extname}.so.0.0.0 %{buildroot}%{php_extdir}/%{extname}.so %check : simple module load test %{?scl:. %{_scl_scripts}/enable} php --no-php-ini \ --define extension=%{buildroot}%{php_extdir}/%{extname}.so \ --modules | grep libvirt %files %dir %{_pkgdocdir} %{!?_licensedir:%global license %%doc} %license %{_pkgdocdir}/COPYING %{php_extdir}/%{extname}.so %config(noreplace) %{php_inidir}/%{ini_name} %files doc %{_pkgdocdir}/html %changelog * Thu Dec 1 2016 Remi Collet - 0.5.2-4 - rebuild with PHP 7.1.0 GA * Wed Sep 14 2016 Remi Collet - 0.5.2-3 - rebuild for PHP 7.1 new API version * Sun Sep 11 2016 Remi Collet - 0.5.2-2 - fix F25 build (ini file installation) * Thu Apr 21 2016 Remi Collet - 0.5.2-1 - update to 0.5.2 - raise dependency on libvirt 1.2.9 * Fri Nov 27 2015 Remi Collet - 0.5.1-1 - update to 0.5.1 - raise dependency on libvirt 1.2.8 * Tue Jun 23 2015 Remi Collet - 0.4.8-3 - allow build against rh-php56 (as more-php56) * Wed Dec 24 2014 Remi Collet - 0.4.8-2.1 - Fedora 21 SCL mass rebuild * Wed Apr 16 2014 Remi Collet - 0.4.8-2 - add numerical prefix to extension configuration file * Mon Jan 6 2014 Remi Collet - 0.4.8-1 - update to 0.4.8 - spec cleanups - adapt for SCL * Tue Jan 8 2013 Remi Collet - 0.4.5-2 - rebuild * Sun Nov 27 2011 Remi Collet - 0.4.5-1 - update to 0.4.5 - fix for php 5.4 (and some of compiler warnings) https://www.redhat.com/archives/libvir-list/2011-November/msg01476.html * Tue Aug 23 2011 Remi Collet - 0.4.4-1 - rebuild for remi repo * Mon Aug 22 2011 Michal Novotny - 0.4.4 - Several bugfixes and updated SPEC file and codes not to require open tags * Sun Aug 21 2011 Remi Collet - 0.4.3-1 - rebuild for remi repo * Thu Aug 11 2011 Michal Novotny - 0.4.3 - Rebase to 0.4.3 from master branch * Sat Jul 16 2011 Remi Collet - 0.4.1-5 - rebuild for remi repo * Tue Apr 19 2011 Michal Novotny - 0.4.1-5 - Minor memory leak fixes - Several bug fixes * Mon Apr 11 2011 Michal Novotny - 0.4.1-4 - Add new storagepool API functions - Add optional xPath argument for *_get_xml_desc() functions - Add new network API functions - Add new API functions to add/remove disks * Wed Mar 23 2011 Michal Novotny - 0.4.1-3 - Add connection information function - Add coredump support - Add snapshots support - Improve error reporting for destructors * Thu Mar 10 2011 Michal Novotny - 0.4.1-2 - Changes done to comply with Fedora package policy * Tue Feb 8 2011 Michal Novotny - 0.4.1-1 - Initial commit (from github)