From e676e85d8d562df4607180d8cd0cc5c1b156ce2c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 12 Apr 2017 11:13:34 +0200 Subject: new package for PHP 7.2 only --- .gitignore | 7 ++ Makefile | 4 + REFLECTION | 277 +++++++++++++++++++++++++++++++++++++++++++++++++++ package.xml | 142 ++++++++++++++++++++++++++ php-pecl-mcrypt.spec | 198 ++++++++++++++++++++++++++++++++++++ 5 files changed, 628 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 REFLECTION create mode 100644 package.xml create mode 100644 php-pecl-mcrypt.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1ab5c4f --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +package-*.xml +*.tgz +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..13af741 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../../common/Makefile + diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..07a7081 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,277 @@ +Extension [ extension #59 mcrypt version 1.0.1 ] { + + - INI { + Entry [ mcrypt.algorithms_dir ] + Current = '' + } + Entry [ mcrypt.modes_dir ] + Current = '' + } + } + + - Constants [41] { + Constant [ integer MCRYPT_ENCRYPT ] { 0 } + Constant [ integer MCRYPT_DECRYPT ] { 1 } + Constant [ integer MCRYPT_DEV_RANDOM ] { 0 } + Constant [ integer MCRYPT_DEV_URANDOM ] { 1 } + Constant [ integer MCRYPT_RAND ] { 2 } + Constant [ string MCRYPT_3DES ] { tripledes } + Constant [ string MCRYPT_ARCFOUR_IV ] { arcfour-iv } + Constant [ string MCRYPT_ARCFOUR ] { arcfour } + Constant [ string MCRYPT_BLOWFISH ] { blowfish } + Constant [ string MCRYPT_BLOWFISH_COMPAT ] { blowfish-compat } + Constant [ string MCRYPT_CAST_128 ] { cast-128 } + Constant [ string MCRYPT_CAST_256 ] { cast-256 } + Constant [ string MCRYPT_CRYPT ] { crypt } + Constant [ string MCRYPT_DES ] { des } + Constant [ string MCRYPT_ENIGNA ] { crypt } + Constant [ string MCRYPT_GOST ] { gost } + Constant [ string MCRYPT_LOKI97 ] { loki97 } + Constant [ string MCRYPT_PANAMA ] { panama } + Constant [ string MCRYPT_RC2 ] { rc2 } + Constant [ string MCRYPT_RIJNDAEL_128 ] { rijndael-128 } + Constant [ string MCRYPT_RIJNDAEL_192 ] { rijndael-192 } + Constant [ string MCRYPT_RIJNDAEL_256 ] { rijndael-256 } + Constant [ string MCRYPT_SAFER64 ] { safer-sk64 } + Constant [ string MCRYPT_SAFER128 ] { safer-sk128 } + Constant [ string MCRYPT_SAFERPLUS ] { saferplus } + Constant [ string MCRYPT_SERPENT ] { serpent } + Constant [ string MCRYPT_THREEWAY ] { threeway } + Constant [ string MCRYPT_TRIPLEDES ] { tripledes } + Constant [ string MCRYPT_TWOFISH ] { twofish } + Constant [ string MCRYPT_WAKE ] { wake } + Constant [ string MCRYPT_XTEA ] { xtea } + Constant [ string MCRYPT_IDEA ] { idea } + Constant [ string MCRYPT_MARS ] { mars } + Constant [ string MCRYPT_RC6 ] { rc6 } + Constant [ string MCRYPT_SKIPJACK ] { skipjack } + Constant [ string MCRYPT_MODE_CBC ] { cbc } + Constant [ string MCRYPT_MODE_CFB ] { cfb } + Constant [ string MCRYPT_MODE_ECB ] { ecb } + Constant [ string MCRYPT_MODE_NOFB ] { nofb } + Constant [ string MCRYPT_MODE_OFB ] { ofb } + Constant [ string MCRYPT_MODE_STREAM ] { stream } + } + + - Functions { + Function [ function mcrypt_get_key_size ] { + + - Parameters [2] { + Parameter #0 [ $cipher ] + Parameter #1 [ $module ] + } + } + Function [ function mcrypt_get_block_size ] { + + - Parameters [2] { + Parameter #0 [ $cipher ] + Parameter #1 [ $module ] + } + } + Function [ function mcrypt_get_cipher_name ] { + + - Parameters [1] { + Parameter #0 [ $cipher ] + } + } + Function [ function mcrypt_create_iv ] { + + - Parameters [2] { + Parameter #0 [ $size ] + Parameter #1 [ $source ] + } + } + Function [ function mcrypt_list_algorithms ] { + + - Parameters [1] { + Parameter #0 [ $lib_dir ] + } + } + Function [ function mcrypt_list_modes ] { + + - Parameters [1] { + Parameter #0 [ $lib_dir ] + } + } + Function [ function mcrypt_get_iv_size ] { + + - Parameters [2] { + Parameter #0 [ $cipher ] + Parameter #1 [ $module ] + } + } + Function [ function mcrypt_encrypt ] { + + - Parameters [5] { + Parameter #0 [ $cipher ] + Parameter #1 [ $key ] + Parameter #2 [ $data ] + Parameter #3 [ $mode ] + Parameter #4 [ $iv ] + } + } + Function [ function mcrypt_decrypt ] { + + - Parameters [5] { + Parameter #0 [ $cipher ] + Parameter #1 [ $key ] + Parameter #2 [ $data ] + Parameter #3 [ $mode ] + Parameter #4 [ $iv ] + } + } + Function [ function mcrypt_module_open ] { + + - Parameters [4] { + Parameter #0 [ $cipher ] + Parameter #1 [ $cipher_directory ] + Parameter #2 [ $mode ] + Parameter #3 [ $mode_directory ] + } + } + Function [ function mcrypt_generic_init ] { + + - Parameters [3] { + Parameter #0 [ $td ] + Parameter #1 [ $key ] + Parameter #2 [ $iv ] + } + } + Function [ function mcrypt_generic ] { + + - Parameters [2] { + Parameter #0 [ $td ] + Parameter #1 [ $data ] + } + } + Function [ function mdecrypt_generic ] { + + - Parameters [2] { + Parameter #0 [ $td ] + Parameter #1 [ $data ] + } + } + Function [ function mcrypt_generic_deinit ] { + + - Parameters [1] { + Parameter #0 [ $td ] + } + } + Function [ function mcrypt_enc_self_test ] { + + - Parameters [1] { + Parameter #0 [ $td ] + } + } + Function [ function mcrypt_enc_is_block_algorithm_mode ] { + + - Parameters [1] { + Parameter #0 [ $td ] + } + } + Function [ function mcrypt_enc_is_block_algorithm ] { + + - Parameters [1] { + Parameter #0 [ $td ] + } + } + Function [ function mcrypt_enc_is_block_mode ] { + + - Parameters [1] { + Parameter #0 [ $td ] + } + } + Function [ function mcrypt_enc_get_block_size ] { + + - Parameters [1] { + Parameter #0 [ $td ] + } + } + Function [ function mcrypt_enc_get_key_size ] { + + - Parameters [1] { + Parameter #0 [ $td ] + } + } + Function [ function mcrypt_enc_get_supported_key_sizes ] { + + - Parameters [1] { + Parameter #0 [ $td ] + } + } + Function [ function mcrypt_enc_get_iv_size ] { + + - Parameters [1] { + Parameter #0 [ $td ] + } + } + Function [ function mcrypt_enc_get_algorithms_name ] { + + - Parameters [1] { + Parameter #0 [ $td ] + } + } + Function [ function mcrypt_enc_get_modes_name ] { + + - Parameters [1] { + Parameter #0 [ $td ] + } + } + Function [ function mcrypt_module_self_test ] { + + - Parameters [2] { + Parameter #0 [ $algorithm ] + Parameter #1 [ $lib_dir ] + } + } + Function [ function mcrypt_module_is_block_algorithm_mode ] { + + - Parameters [2] { + Parameter #0 [ $mode ] + Parameter #1 [ $lib_dir ] + } + } + Function [ function mcrypt_module_is_block_algorithm ] { + + - Parameters [2] { + Parameter #0 [ $algorithm ] + Parameter #1 [ $lib_dir ] + } + } + Function [ function mcrypt_module_is_block_mode ] { + + - Parameters [2] { + Parameter #0 [ $mode ] + Parameter #1 [ $lib_dir ] + } + } + Function [ function mcrypt_module_get_algo_block_size ] { + + - Parameters [2] { + Parameter #0 [ $algorithm ] + Parameter #1 [ $lib_dir ] + } + } + Function [ function mcrypt_module_get_algo_key_size ] { + + - Parameters [2] { + Parameter #0 [ $algorithm ] + Parameter #1 [ $lib_dir ] + } + } + Function [ function mcrypt_module_get_supported_key_sizes ] { + + - Parameters [2] { + Parameter #0 [ $algorithm ] + Parameter #1 [ $lib_dir ] + } + } + Function [ function mcrypt_module_close ] { + + - Parameters [1] { + Parameter #0 [ $td ] + } + } + } +} + diff --git a/package.xml b/package.xml new file mode 100644 index 0000000..f2c9bbf --- /dev/null +++ b/package.xml @@ -0,0 +1,142 @@ + + + mcrypt + pecl.php.net + Bindings for the libmcrypt library + Provides bindings for the unmaintained libmcrypt. + + Derick Rethans + derick + derick@php.net + no + + + Sascha Schumann + sas + sascha@schumann.cx + no + + + Leigh + leigh + leigh@php.net + yes + + 2016-12-13 + + + 1.0.1 + 1.0.0 + + + snapshot + stable + + PHP License + +- The mcrypt extension as it was in PHP 7.1, before it was removed from core. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 7.2.0 + 7.3.0 + 7.3.0 + + + 1.4.0 + + + + mcrypt + + + + + + 2016-12-13 + + 1.0.1 + 1.0.0 + + +- Migrated extension from core to PECL. + + + + diff --git a/php-pecl-mcrypt.spec b/php-pecl-mcrypt.spec new file mode 100644 index 0000000..b55d0c9 --- /dev/null +++ b/php-pecl-mcrypt.spec @@ -0,0 +1,198 @@ +# remirepo spec file for php-pecl-mcrypt +# +# Copyright (c) 2017 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/4.0/ +# +# Please, preserve the changelog entries +# +%{?scl: %scl_package php-pecl-mcrypt} + +%global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} +%global pecl_name mcrypt +%global ini_name 30-%{pecl_name}.ini + +Summary: Bindings for the libmcrypt library +Name: %{?scl_prefix}php-pecl-mcrypt +Version: 1.0.1 +Release: 1%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} +License: PHP +Group: Development/Languages +URL: http://pecl.php.net/package/mcrypt + +Source: http://pecl.php.net/get/%{pecl_name}-%{version}%{?prever}.tgz + +BuildRequires: %{?scl_prefix}php-devel > 7.2 +BuildRequires: libmcrypt-devel +BuildRequires: %{?scl_prefix}php-pear + +Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} +Requires: %{?scl_prefix}php(api) = %{php_core_api} +%{?_sclreq:Requires: %{?scl_prefix}runtime%{?_sclreq}%{?_isa}} + +Provides: %{?scl_prefix}php-pecl(%{pecl_name}) = %{version} +Provides: %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} +Provides: %{?scl_prefix}php-%{pecl_name} = 1:%{version}-%{release} +Provides: %{?scl_prefix}php-%{pecl_name}%{?_isa} = 1:%{version}-%{release} + +%if "%{?vendor}" == "Remi Collet" && 0%{!?scl:1} && 0%{?rhel} +Obsoletes: php72u-pecl-%{pecl_name} <= %{version} +Obsoletes: php72w-pecl-%{pecl_name} <= %{version} +%endif + +Obsoletes: %{?scl_prefix}php-mcrypt < 7.2.0 + + +%if 0%{?fedora} < 20 && 0%{?rhel} < 7 +# Filter private shared +%{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$} +%{?filter_setup} +%endif + + +%description +Provides bindings for the unmaintained libmcrypt. + +Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{scl_vendor})}. + + +%prep +%setup -c -q + +# Don't install/register tests +sed -e 's/role="test"/role="src"/' \ + %{?_licensedir:-e '/LICENSE/s/role="doc"/role="src"/' } \ + -i package.xml + +mv %{pecl_name}-%{version}%{?prever} NTS +cd NTS +sed -e '/PHP_MCRYPT_VERSION/s/PHP_VERSION/"%{version}"/' -i php_mcrypt.h + +# Sanity check, really often broken +extver=$(sed -n '/#define PHP_MCRYPT_VERSION/{s/.* "//;s/".*$//;p}' php_mcrypt.h) +if test "x${extver}" != "x%{version}%{?prever}"; then + : Error: Upstream extension version is ${extver}, expecting %{version}%{?prever}. + exit 1 +fi + +cd .. +: Create the configuration file +cat >%{ini_name} << 'EOF' +; Enable %{pecl_name} extension module +extension=%{pecl_name}.so +EOF + +%if %{with_zts} +: Duplicate sources tree for ZTS build +cp -pr NTS ZTS +%endif + + +%build +%{?dtsenable} + +cd NTS +%{_bindir}/phpize +%configure \ + --with-mcrypt \ + --with-php-config=%{_bindir}/php-config + +make %{?_smp_mflags} + +%if %{with_zts} +cd ../ZTS +%{_bindir}/zts-phpize +%configure \ + --with-mcrypt \ + --with-php-config=%{_bindir}/zts-php-config + +make %{?_smp_mflags} +%endif + + +%install +%{?dtsenable} + +make -C NTS install INSTALL_ROOT=%{buildroot} +install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} + +# Install XML package description +install -D -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml + +%if %{with_zts} +make -C ZTS install INSTALL_ROOT=%{buildroot} +install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} +%endif + +# Documentation +cd NTS +for i in $(grep 'role="doc"' ../package.xml | sed -e 's/^.*name="//;s/".*$//') +do install -Dpm 644 $i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i +done + + +%check +export REPORT_EXIT_STATUS=1 +export NO_INTERACTION=1 + +# Warning: Use of undefined constant MCRYPT_CBC - assumed 'MCRYPT_CBC' +rm ?TS/tests/bug8040.phpt + +cd NTS +: minimal load test of NTS extension +%{_bindir}/php --no-php-ini \ + --define extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \ + --modules | grep %{pecl_name} + +: upstream test suite for NTS extension +make test + +%if %{with_zts} +cd ../ZTS +: minimal load test of ZTS extension +%{_bindir}/zts-php --no-php-ini \ + --define extension_dir=modules \ + --define extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \ + --modules | grep %{pecl_name} + +: upstream test suite for ZTS extension +make test +%endif + + +%if 0%{?fedora} < 24 +# when pear installed alone, after us +%triggerin -- %{?scl_prefix}php-pear +if [ -x %{__pecl} ] ; then + %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : +fi + +# posttrans as pear can be installed after us +%posttrans +if [ -x %{__pecl} ] ; then + %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : +fi + +%postun +if [ $1 -eq 0 -a -x %{__pecl} ] ; then + %{pecl_uninstall} %{pecl_name} >/dev/null || : +fi +%endif + + +%files +%{?_licensedir:%license NTS/LICENSE} +%{pecl_xmldir}/%{name}.xml + +%config(noreplace) %{php_inidir}/%{ini_name} +%{php_extdir}/%{pecl_name}.so + +%if %{with_zts} +%config(noreplace) %{php_ztsinidir}/%{ini_name} +%{php_ztsextdir}/%{pecl_name}.so +%endif + + +%changelog +* Wed Apr 12 2017 Remi Collet - 1.0.1-1 +- New spec for version 1.0.1 (PHP 7.2) -- cgit