1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-18 00:10:04 +00:00

databases/php-tarantool: Update to 0.4.0

Changes:	https://github.com/tarantool/tarantool-php/releases
This commit is contained in:
Po-Chuan Hsieh 2024-07-09 00:21:26 +08:00
parent d4772df565
commit eaebf4c3b3
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
7 changed files with 4 additions and 73 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= tarantool
PORTVERSION= 0.3.3
PORTVERSION= 0.4.0
CATEGORIES= databases
PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1594117169
SHA256 (tarantool-tarantool-php-0.3.3_GH0.tar.gz) = 0fcfb6059e20389b823f49bbbbfcfdd232678ae8ed7c27e07278d565e6530d95
SIZE (tarantool-tarantool-php-0.3.3_GH0.tar.gz) = 108601
TIMESTAMP = 1720447666
SHA256 (tarantool-tarantool-php-0.4.0_GH0.tar.gz) = 7fc54e2629328b03c46601fe5269bb4d78c596ef626c14f42c31dcb0d9156ed5
SIZE (tarantool-tarantool-php-0.4.0_GH0.tar.gz) = 112068

View File

@ -1,14 +0,0 @@
--- src/php_tarantool.h.orig 2020-06-29 22:41:13 UTC
+++ src/php_tarantool.h
@@ -180,7 +180,11 @@ PHP_TARANTOOL_API zend_class_entry *php_tarantool_get_
PHP_TARANTOOL_API zend_class_entry *php_tarantool_get_ioexception(void);
PHP_TARANTOOL_API zend_class_entry *php_tarantool_get_clienterror(void);
PHP_TARANTOOL_API zend_class_entry *php_tarantool_get_parsingexception(void);
+#if PHP_MAJOR_VERSION >= 8
+PHP_TARANTOOL_API zend_class_entry *php_tarantool_get_exception_base(int root);
+#else
PHP_TARANTOOL_API zend_class_entry *php_tarantool_get_exception_base(int root TSRMLS_DC);
+#endif
#ifdef ZTS
# define TARANTOOL_G(v) TSRMG(tarantool_globals_id, zend_tarantool_globals *, v)

View File

@ -1,15 +0,0 @@
--- src/tarantool.c.orig 2020-06-29 22:41:13 UTC
+++ src/tarantool.c
@@ -14,6 +14,12 @@
#include "utils.h"
+#if PHP_MAJOR_VERSION >= 8
+#define TSRMLS_CC
+#define TSRMLS_DC
+#define TSRMLS_FETCH()
+#endif
+
static int __tarantool_authenticate(tarantool_connection *obj);
static void tarantool_stream_close(tarantool_connection *obj);

View File

@ -1,13 +0,0 @@
--- src/tarantool_exception.c.orig 2020-06-29 22:41:13 UTC
+++ src/tarantool_exception.c
@@ -4,6 +4,10 @@
#include "tarantool_exception.h"
+#if PHP_MAJOR_VERSION >= 8
+#define TSRMLS_DC
+#endif
+
zend_class_entry *TarantoolException_ptr;
zend_class_entry *TarantoolIOException_ptr;
zend_class_entry *TarantoolClientError_ptr;

View File

@ -1,13 +0,0 @@
--- src/tarantool_msgpack.c.orig 2020-06-29 22:41:13 UTC
+++ src/tarantool_msgpack.c
@@ -5,6 +5,10 @@
#include "third_party/msgpuck.h"
+#if PHP_MAJOR_VERSION >= 8
+#define TSRMLS_FETCH()
+#endif
+
#ifndef HASH_KEY_NON_EXISTENT
#define HASH_KEY_NON_EXISTENT HASH_KEY_NON_EXISTANT
#endif /* HASH_KEY_NON_EXISTENT */

View File

@ -1,14 +0,0 @@
--- src/tarantool_network.c.orig 2020-06-29 22:41:13 UTC
+++ src/tarantool_network.c
@@ -11,6 +11,11 @@
#include "php_tarantool.h"
#include "tarantool_network.h"
+#if PHP_MAJOR_VERSION >= 8
+#define TSRMLS_CC
+#define TSRMLS_FETCH()
+#endif
+
void double_to_tv(double tm, struct timeval *tv) {
tv->tv_sec = floor(tm);
tv->tv_usec = floor((tm - floor(tm)) * pow(10, 6));