diff options
author | Tomas Mozes <hydrapolic@gmail.com> | 2019-10-17 14:17:41 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2019-10-23 16:46:24 +0300 |
commit | 985a3531538b840678fd625cd4108c9dd17e267c (patch) | |
tree | 5ddb240377f458ec83ba6976122bab88c0dd0ad6 /dev-php | |
parent | net-misc/eventd: add ~x86 keyword (diff) | |
download | gentoo-985a3531538b840678fd625cd4108c9dd17e267c.tar.gz gentoo-985a3531538b840678fd625cd4108c9dd17e267c.tar.bz2 gentoo-985a3531538b840678fd625cd4108c9dd17e267c.zip |
dev-php/pecl-mcrypt: bump to 1.0.3
Thanks to Conrad Kostecki for testing with PHP 7.4
Closes: https://bugs.gentoo.org/696620
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Tomáš Mózes <hydrapolic@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13325
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/pecl-mcrypt/Manifest | 1 | ||||
-rw-r--r-- | dev-php/pecl-mcrypt/pecl-mcrypt-1.0.3.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-php/pecl-mcrypt/Manifest b/dev-php/pecl-mcrypt/Manifest index d57637f51674..753352dd9b22 100644 --- a/dev-php/pecl-mcrypt/Manifest +++ b/dev-php/pecl-mcrypt/Manifest @@ -1,2 +1,3 @@ DIST mcrypt-1.0.1.tgz 33782 BLAKE2B db5f89fdbc64c81bd50c92301155527f40b28cd274312565c79327133baa20e14c488f8ad1f87e6ddfd3ced9706ca30f10dc69a08279c82c9ec83fb5f713e826 SHA512 1677202715499a41ac6999089257a059106e58cbac06ca8a7dd2e9edd28be5a4118234dd7468110e9e3d7f9de5d099367848fe84bcd06716ea56645c9015c578 DIST mcrypt-1.0.2.tgz 33698 BLAKE2B b79985455986ca28e7cb55d3f6f62f87e1112f57c4e26761a08a2d9ce7c702cf325fccb50f703cfe5c570c7e3abc473030742f098b10e709145f7ac9676f834a SHA512 bf3796b60f1d8d34185c3ad0d813653fe64ccfc883106ba544b01a8caa7bf9729978f44e0d481d28af9f8827803dcc5cd8bfc83e50dc950d26f851fabc868b18 +DIST mcrypt-1.0.3.tgz 33590 BLAKE2B 5de1108f53604fffea9e3cb64d9efdae2008da164acd47b27fd0df8f12a0f508345d63bee4d588c1eecd9a935f8be3b2db5c3d119c5b3013955c54085ebe9e9f SHA512 ef215b576b471d6e1ecac4bb097f518fa57fd551b678b7fdddd9d5058f6667b0ee757e887f00b61672b89cd86f1962cbfe0e355681fa47daba9873c3bf4db679 diff --git a/dev-php/pecl-mcrypt/pecl-mcrypt-1.0.3.ebuild b/dev-php/pecl-mcrypt/pecl-mcrypt-1.0.3.ebuild new file mode 100644 index 000000000000..33f6c20baba8 --- /dev/null +++ b/dev-php/pecl-mcrypt/pecl-mcrypt-1.0.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PHP_EXT_NAME="mcrypt" +USE_PHP="php7-2 php7-3 php7-4" +MY_P="${PN/pecl-/}-${PV/_rc/RC}" +PHP_EXT_ECONF_ARGS=() +PHP_EXT_PECL_FILENAME="${MY_P}.tgz" +PHP_EXT_S="${WORKDIR}/${MY_P}" + +inherit php-ext-pecl-r3 + +DESCRIPTION="Bindings for the libmcrypt library" +LICENSE="PHP-3.01" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="dev-libs/libmcrypt" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + # PHP Warning: Use of undefined constant MCRYPT_CBC - assumed 'MCRYPT_CBC' + sed -i '/MODE3/s/MCRYPT_CBC/"MCRYPT_CBC"/g' tests/bug8040.phpt || die + + php-ext-source-r3_src_prepare +} |