aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authormiwi <miwi@FreeBSD.org>2012-05-17 23:20:31 +0800
committermiwi <miwi@FreeBSD.org>2012-05-17 23:20:31 +0800
commit400ff4fbf338e465180a6b612de131e2bdcc9c48 (patch)
tree17effff6fab7e8e2d789b0c21ebbece26b16ec9c /devel
parent6df0d744d179ca52aaf2f75eef11f9d5d2b692b3 (diff)
downloadfreebsd-ports-gnome-400ff4fbf338e465180a6b612de131e2bdcc9c48.tar.gz
freebsd-ports-gnome-400ff4fbf338e465180a6b612de131e2bdcc9c48.tar.zst
freebsd-ports-gnome-400ff4fbf338e465180a6b612de131e2bdcc9c48.zip
- Update to 1.0.2
Diffstat (limited to 'devel')
-rw-r--r--devel/pecl-svn/Makefile3
-rw-r--r--devel/pecl-svn/distinfo4
-rw-r--r--devel/pecl-svn/files/patch-svn.c60
-rw-r--r--devel/pecl-uploadprogress/Makefile3
-rw-r--r--devel/pecl-uploadprogress/distinfo4
5 files changed, 7 insertions, 67 deletions
diff --git a/devel/pecl-svn/Makefile b/devel/pecl-svn/Makefile
index 9e0df9e3f1fb..88d8f3228a98 100644
--- a/devel/pecl-svn/Makefile
+++ b/devel/pecl-svn/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= svn
-PORTVERSION= 1.0.1
-PORTREVISION= 2
+PORTVERSION= 1.0.2
CATEGORIES= devel pear
MASTER_SITES= http://pecl.php.net/get/
PKGNAMEPREFIX= pecl-
diff --git a/devel/pecl-svn/distinfo b/devel/pecl-svn/distinfo
index c8f4835be84e..3c8f64e220d3 100644
--- a/devel/pecl-svn/distinfo
+++ b/devel/pecl-svn/distinfo
@@ -1,2 +1,2 @@
-SHA256 (PECL/svn-1.0.1.tgz) = 022341599f28272a22df322e67e07af30abd9343d72a77e01a7b904edc4ba3c0
-SIZE (PECL/svn-1.0.1.tgz) = 24716
+SHA256 (PECL/svn-1.0.2.tgz) = ca0ea834e745a1aae65b456800bb5c5cfd7c4eceff281f7a8e317d30726e48cd
+SIZE (PECL/svn-1.0.2.tgz) = 25226
diff --git a/devel/pecl-svn/files/patch-svn.c b/devel/pecl-svn/files/patch-svn.c
deleted file mode 100644
index a656a0d61fc4..000000000000
--- a/devel/pecl-svn/files/patch-svn.c
+++ /dev/null
@@ -1,60 +0,0 @@
---- svn.c.orig 2010-12-09 04:30:16.000000000 +0100
-+++ svn.c 2012-02-28 09:46:50.877059221 +0100
-@@ -34,6 +34,7 @@
-
- #include "apr_version.h"
- #include "svn_pools.h"
-+#include "svn_props.h"
- #include "svn_sorts.h"
- #include "svn_config.h"
- #include "svn_auth.h"
-@@ -43,6 +44,7 @@
- #include "svn_utf.h"
- #include "svn_time.h"
- #include "svn_props.h"
-+#include "svn_version.h"
-
- ZEND_DECLARE_MODULE_GLOBALS(svn)
-
-@@ -96,7 +98,13 @@
- static ZEND_RSRC_DTOR_FUNC(php_svn_repos_dtor)
- {
- struct php_svn_repos *r = rsrc->ptr;
-- svn_pool_destroy(r->pool);
-+ /*
-+ * If root pool doesn't exist, then this resource's pool was already
-+ * destroyed
-+ */
-+ if (SVN_G(pool)) {
-+ svn_pool_destroy(r->pool);
-+ }
- efree(r);
- }
-
-@@ -123,7 +131,7 @@
-
- #define SVN_STATIC_ME(name) ZEND_FENTRY(name, ZEND_FN(svn_ ## name), NULL, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
- /** Fixme = this list needs padding out... */
--static function_entry svn_methods[] = {
-+static zend_function_entry svn_methods[] = {
- SVN_STATIC_ME(cat)
- SVN_STATIC_ME(checkout)
- SVN_STATIC_ME(log)
-@@ -134,7 +142,7 @@
-
-
- /* {{{ svn_functions[] */
--function_entry svn_functions[] = {
-+zend_function_entry svn_functions[] = {
- PHP_FE(svn_checkout, NULL)
- PHP_FE(svn_cat, NULL)
- PHP_FE(svn_ls, NULL)
-@@ -270,7 +278,7 @@
-
- smart_str_appendl(&s, "\n", 1);
- smart_str_0(&s);
-- php_error_docref(NULL TSRMLS_CC, E_WARNING, s.c);
-+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", s.c);
- smart_str_free(&s);
- }
-
diff --git a/devel/pecl-uploadprogress/Makefile b/devel/pecl-uploadprogress/Makefile
index d68cbbdbd436..5a8feaa1e558 100644
--- a/devel/pecl-uploadprogress/Makefile
+++ b/devel/pecl-uploadprogress/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= uploadprogress
-PORTVERSION= 1.0.1
+PORTVERSION= 1.0.2
CATEGORIES= devel pear
MASTER_SITES= http://pecl.php.net/get/
PKGNAMEPREFIX= pecl-
@@ -19,6 +19,7 @@ COMMENT= Provides track progress of a file upload
USE_PHP= yes
USE_PHPEXT= yes
IGNORE_WITH_PHP=4
+DEFAULT_PHP_VER=53
CONFIGURE_ARGS= --enable-uploadprogress
diff --git a/devel/pecl-uploadprogress/distinfo b/devel/pecl-uploadprogress/distinfo
index 567bd8de1410..d5684d3017d4 100644
--- a/devel/pecl-uploadprogress/distinfo
+++ b/devel/pecl-uploadprogress/distinfo
@@ -1,2 +1,2 @@
-SHA256 (PECL/uploadprogress-1.0.1.tgz) = 52d5e62eba28bf0b5ba6e44403518706a353b472f2242150d0af55d21f3bc477
-SIZE (PECL/uploadprogress-1.0.1.tgz) = 8536
+SHA256 (PECL/uploadprogress-1.0.2.tgz) = bbba62c98bb4dddf6ddbfeab962843519bc5852393b25b98b411e6255fe99de7
+SIZE (PECL/uploadprogress-1.0.2.tgz) = 9031