diff options
Diffstat (limited to 'math/pecl-bitset2')
-rw-r--r-- | math/pecl-bitset2/Makefile | 22 | ||||
-rw-r--r-- | math/pecl-bitset2/distinfo | 3 | ||||
-rw-r--r-- | math/pecl-bitset2/files/patch-bitset.c | 20 | ||||
-rw-r--r-- | math/pecl-bitset2/pkg-descr | 3 |
4 files changed, 0 insertions, 48 deletions
diff --git a/math/pecl-bitset2/Makefile b/math/pecl-bitset2/Makefile deleted file mode 100644 index 953636635f58..000000000000 --- a/math/pecl-bitset2/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -# Created by: Greg Larkin <glarkin@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= bitset -PORTVERSION= 2.0.4 -CATEGORIES= math - -MAINTAINER= sunpoet@FreeBSD.org -COMMENT= PECL extension for manipulating bitsets - -DEPRECATED= Works only with EOL php 5.6 -EXPIRATION_DATE= 2018-12-30 - -LICENSE= PHP301 -LICENSE_FILE= ${WRKSRC}/LICENSE - -PORTSCOUT= limit:^2\. - -IGNORE_WITH_PHP=71 72 73 -USES= php:pecl - -.include <bsd.port.mk> diff --git a/math/pecl-bitset2/distinfo b/math/pecl-bitset2/distinfo deleted file mode 100644 index e5ad3591accf..000000000000 --- a/math/pecl-bitset2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1507363042 -SHA256 (PECL/bitset-2.0.4.tgz) = 73ea3f265d2c2f2da2f871ca043d3d8541e2ccc80a7f0e8f0f41ca48a839622b -SIZE (PECL/bitset-2.0.4.tgz) = 19973 diff --git a/math/pecl-bitset2/files/patch-bitset.c b/math/pecl-bitset2/files/patch-bitset.c deleted file mode 100644 index fd5d1b3f7fdd..000000000000 --- a/math/pecl-bitset2/files/patch-bitset.c +++ /dev/null @@ -1,20 +0,0 @@ ---- bitset.c.orig 2017-10-06 16:29:59 UTC -+++ bitset.c -@@ -652,7 +652,7 @@ PHP_METHOD(BitSet, previousClearBit) - bit_diff = intern->bitset_len * CHAR_BIT; - - if (start_bit > bit_diff) { -- zend_throw_exception_ex(spl_ce_OutOfRangeException, 0, -+ zend_throw_exception_ex(spl_ce_OutOfRangeException, 0 TSRMLS_CC, - "The specified index parameter exceeds the total number of bits available"); - return; - } -@@ -696,7 +696,7 @@ PHP_METHOD(BitSet, previousSetBit) - bit_diff = intern->bitset_len * CHAR_BIT; - - if (start_bit > bit_diff) { -- zend_throw_exception_ex(spl_ce_OutOfRangeException, 0, -+ zend_throw_exception_ex(spl_ce_OutOfRangeException, 0 TSRMLS_CC, - "The specified index parameter exceeds the total number of bits available"); - } - diff --git a/math/pecl-bitset2/pkg-descr b/math/pecl-bitset2/pkg-descr deleted file mode 100644 index 701bca912e56..000000000000 --- a/math/pecl-bitset2/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This extension for PHP provides routines for manipulating bitsets. - -WWW: https://pecl.php.net/package/Bitset |