View | Details | Raw Unified | Return to bug 249225
Collapse All | Expand All

(-)net-im/prosody/Makefile (-2 / +1 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	prosody
4
PORTNAME=	prosody
5
PORTVERSION=	0.11.5
5
PORTVERSION=	0.11.6
6
PORTREVISION=	1
7
CATEGORIES=	net-im
6
CATEGORIES=	net-im
8
MASTER_SITES=	https://prosody.im/downloads/source/
7
MASTER_SITES=	https://prosody.im/downloads/source/
9
8
(-)net-im/prosody/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1585094580
1
TIMESTAMP = 1599685429
2
SHA256 (prosody-0.11.5.tar.gz) = 55f8bd65d5d2af61cc739bd6164e4207011e0d2d260cde583071c90d8d85408b
2
SHA256 (prosody-0.11.6.tar.gz) = cda1db631c5f91f8439c66c9204dbf3bc41efd65313f7f5d3c88121ff9141755
3
SIZE (prosody-0.11.5.tar.gz) = 425122
3
SIZE (prosody-0.11.6.tar.gz) = 425962
(-)net-im/prosody/files/patch-plugins_mod__http__files.lua (-11 lines)
Lines 1-11 Link Here
1
--- plugins/mod_http_files.lua.orig	2020-01-19 15:50:32 UTC
2
+++ plugins/mod_http_files.lua
3
@@ -112,7 +112,7 @@ function serve(opts)
4
 		local last_modified = os_date('!%a, %d %b %Y %H:%M:%S GMT', attr.modification);
5
 		response_headers.last_modified = last_modified;
6
 
7
-		local etag = ('"%02x-%x-%x-%x"'):format(attr.dev or 0, attr.ino or 0, attr.size or 0, attr.modification or 0);
8
+		local etag = ('"%x-%x-%x"'):format(attr.change or 0, attr.size or 0, attr.modification or 0);
9
 		response_headers.etag = etag;
10
 
11
 		local if_none_match = request_headers.if_none_match

Return to bug 249225