aboutsummaryrefslogtreecommitdiff
path: root/net/pecl-smbclient
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2024-12-25 18:47:58 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2024-12-25 19:15:16 +0000
commit63ab2971db49a90e69ce3fbcc16d3e15ce9f3ea5 (patch)
tree7988f78e1c45a6b4b1f0ee0e476e06afa99d60ff /net/pecl-smbclient
parentff780f5e8b9bb2951ba70755d47274d6bfcaef34 (diff)
Diffstat (limited to 'net/pecl-smbclient')
-rw-r--r--net/pecl-smbclient/Makefile2
-rw-r--r--net/pecl-smbclient/distinfo6
-rw-r--r--net/pecl-smbclient/files/patch-smb_streams.c11
-rw-r--r--net/pecl-smbclient/files/patch-smbclient.c20
4 files changed, 4 insertions, 35 deletions
diff --git a/net/pecl-smbclient/Makefile b/net/pecl-smbclient/Makefile
index f33ca7f14f55..247373a2e0ef 100644
--- a/net/pecl-smbclient/Makefile
+++ b/net/pecl-smbclient/Makefile
@@ -1,5 +1,5 @@
PORTNAME= smbclient
-PORTVERSION= 1.1.1
+PORTVERSION= 1.1.2
CATEGORIES= net pear
MAINTAINER= sunpoet@FreeBSD.org
diff --git a/net/pecl-smbclient/distinfo b/net/pecl-smbclient/distinfo
index 2742827df95b..1ab3e61c2994 100644
--- a/net/pecl-smbclient/distinfo
+++ b/net/pecl-smbclient/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1681843846
-SHA256 (PECL/smbclient-1.1.1.tgz) = 84520d5c73f8b7c9f590371c510ccf1f0d77405cf9a76726687359e6df9e96b2
-SIZE (PECL/smbclient-1.1.1.tgz) = 35405
+TIMESTAMP = 1734888132
+SHA256 (PECL/smbclient-1.1.2.tgz) = 1e6a744563aac700815e571ad98b1135a84e840d44e6ac67997494c780a9cde7
+SIZE (PECL/smbclient-1.1.2.tgz) = 35517
diff --git a/net/pecl-smbclient/files/patch-smb_streams.c b/net/pecl-smbclient/files/patch-smb_streams.c
deleted file mode 100644
index 29df0d7c1415..000000000000
--- a/net/pecl-smbclient/files/patch-smb_streams.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- smb_streams.c.orig 2023-04-17 03:27:10 UTC
-+++ smb_streams.c
-@@ -270,7 +270,7 @@ static int php_smb_ops_stat(php_stream *stream, php_st
- return 0;
- }
-
--static int php_smb_ops_seek(php_stream *stream, off_t offset, int whence, off_t *newoffset TSRMLS_DC)
-+static int php_smb_ops_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset TSRMLS_DC)
- {
- STREAM_DATA_FROM_STREAM();
-
diff --git a/net/pecl-smbclient/files/patch-smbclient.c b/net/pecl-smbclient/files/patch-smbclient.c
deleted file mode 100644
index 925dcb108078..000000000000
--- a/net/pecl-smbclient/files/patch-smbclient.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- smbclient.c.orig 2023-04-17 03:27:10 UTC
-+++ smbclient.c
-@@ -1202,7 +1202,7 @@ PHP_FUNCTION(smbclient_read)
- return;
- }
- if (count < 0) {
-- php_error(E_WARNING, "Negative byte count: %ld", count);
-+ php_error(E_WARNING, "Negative byte count: " ZEND_LONG_FMT, count);
- RETURN_FALSE;
- }
- STATE_FROM_ZSTATE;
-@@ -1253,7 +1253,7 @@ PHP_FUNCTION(smbclient_write)
- return;
- }
- if (count < 0) {
-- php_error(E_WARNING, "Negative byte count: %ld", count);
-+ php_error(E_WARNING, "Negative byte count: " ZEND_LONG_FMT, count);
- RETURN_FALSE;
- }
- if (count == 0 || count > str_len) {