svn commit: r557101 - in head/databases/memcached: . files
Steve Wills
swills at FreeBSD.org
Sun Dec 6 01:38:43 UTC 2020
Author: swills
Date: Sun Dec 6 01:38:42 2020
New Revision: 557101
URL: https://svnweb.freebsd.org/changeset/ports/557101
Log:
databases/memcached: update to 1.6.9
Modified:
head/databases/memcached/Makefile (contents, props changed)
head/databases/memcached/distinfo (contents, props changed)
head/databases/memcached/files/patch-configure.ac (contents, props changed)
head/databases/memcached/files/patch-memcached.c (contents, props changed)
Modified: head/databases/memcached/Makefile
==============================================================================
--- head/databases/memcached/Makefile Sun Dec 6 00:10:25 2020 (r557100)
+++ head/databases/memcached/Makefile Sun Dec 6 01:38:42 2020 (r557101)
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= memcached
-PORTVERSION= 1.6.8
-PORTREVISION= 1
+PORTVERSION= 1.6.9
CATEGORIES= databases
MASTER_SITES= http://www.memcached.org/files/ \
GENTOO
Modified: head/databases/memcached/distinfo
==============================================================================
--- head/databases/memcached/distinfo Sun Dec 6 00:10:25 2020 (r557100)
+++ head/databases/memcached/distinfo Sun Dec 6 01:38:42 2020 (r557101)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1604329305
-SHA256 (memcached-1.6.8.tar.gz) = e23b3a11f6ff52ac04ae5ea2e287052ce58fd1eadd394622eb65c3598fcd7939
-SIZE (memcached-1.6.8.tar.gz) = 548024
+TIMESTAMP = 1607216606
+SHA256 (memcached-1.6.9.tar.gz) = d5a62ce377314dbffdb37c4467e7763e3abae376a16171e613cbe69956f092d1
+SIZE (memcached-1.6.9.tar.gz) = 556137
Modified: head/databases/memcached/files/patch-configure.ac
==============================================================================
--- head/databases/memcached/files/patch-configure.ac Sun Dec 6 00:10:25 2020 (r557100)
+++ head/databases/memcached/files/patch-configure.ac Sun Dec 6 01:38:42 2020 (r557101)
@@ -1,6 +1,6 @@
---- configure.ac.orig 2020-03-08 23:05:43 UTC
+--- configure.ac.orig 2020-11-21 00:10:41 UTC
+++ configure.ac
-@@ -175,7 +175,7 @@ if test "x$enable_dtrace" = "xyes"; then
+@@ -182,7 +182,7 @@ if test "x$enable_dtrace" = "xyes"; then
if test "x$DTRACE" != "xno"; then
AC_DEFINE([ENABLE_DTRACE],1,[Set to nonzero if you want to include DTRACE])
build_dtrace=yes
@@ -9,7 +9,7 @@
if test $? -eq 0
then
dtrace_instrument_obj=yes
-@@ -758,7 +758,7 @@ then
+@@ -793,7 +793,7 @@ then
elif test "$GCC" = "yes"
then
GCC_VERSION=`$CC -dumpversion`
Modified: head/databases/memcached/files/patch-memcached.c
==============================================================================
--- head/databases/memcached/files/patch-memcached.c Sun Dec 6 00:10:25 2020 (r557100)
+++ head/databases/memcached/files/patch-memcached.c Sun Dec 6 01:38:42 2020 (r557101)
@@ -1,6 +1,6 @@
---- memcached.c.orig 2020-03-23 17:30:29 UTC
+--- memcached.c.orig 2020-11-21 00:10:41 UTC
+++ memcached.c
-@@ -647,7 +647,7 @@ conn *conn_new(const int sfd, enum conn_states init_st
+@@ -676,7 +676,7 @@ conn *conn_new(const int sfd, enum conn_states init_st
if (init_state == conn_listening) {
fprintf(stderr, "<%d server listening (%s)\n", sfd,
prot_text(c->protocol));
@@ -9,7 +9,7 @@
fprintf(stderr, "<%d server listening (udp)\n", sfd);
} else if (c->protocol == negotiating_prot) {
fprintf(stderr, "<%d new auto-negotiating client connection\n",
-@@ -708,7 +708,7 @@ conn *conn_new(const int sfd, enum conn_states init_st
+@@ -736,7 +736,7 @@ conn *conn_new(const int sfd, enum conn_states init_st
c->write = tcp_write;
}
@@ -18,7 +18,7 @@
c->try_read_command = try_read_command_udp;
} else {
switch (c->protocol) {
-@@ -876,7 +876,7 @@ static void conn_cleanup(conn *c) {
+@@ -820,7 +820,7 @@ static void conn_cleanup(conn *c) {
c->sasl_conn = NULL;
}
@@ -27,7 +27,7 @@
conn_set_state(c, conn_read);
}
}
-@@ -1038,7 +1038,7 @@ static bool resp_start(conn *c) {
+@@ -1116,7 +1116,7 @@ bool resp_start(conn *c) {
c->resp->next = resp;
c->resp = resp;
}
@@ -36,7 +36,7 @@
// need to hold on to some data for async responses.
c->resp->request_id = c->request_id;
c->resp->request_addr = c->request_addr;
-@@ -3443,7 +3443,7 @@ static void process_stats_conns(ADD_STAT add_stats, vo
+@@ -2046,7 +2046,7 @@ void process_stats_conns(ADD_STAT add_stats, void *c)
* output -- not worth the complexity of the locking that'd be
* required to prevent it.
*/
@@ -45,7 +45,7 @@
APPEND_NUM_STAT(i, "UDP", "%s", "UDP");
}
if (conns[i]->state != conn_closed) {
-@@ -7315,7 +7315,7 @@ static void drive_machine(conn *c) {
+@@ -3242,7 +3242,7 @@ static void drive_machine(conn *c) {
break;
case conn_closing:
@@ -54,7 +54,7 @@
conn_cleanup(c);
else
conn_close(c);
-@@ -7479,7 +7479,7 @@ static int server_socket(const char *interface,
+@@ -3425,7 +3425,7 @@ static int server_socket(const char *interface,
#endif
setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, (void *)&flags, sizeof(flags));
@@ -63,7 +63,7 @@
maximize_sndbuf(sfd);
} else {
error = setsockopt(sfd, SOL_SOCKET, SO_KEEPALIVE, (void *)&flags, sizeof(flags));
-@@ -7534,7 +7534,7 @@ static int server_socket(const char *interface,
+@@ -3480,7 +3480,7 @@ static int server_socket(const char *interface,
}
}
More information about the svn-ports-head
mailing list