Received: by mail.netbsd.org (Postfix, from userid 605) id 622DC84E82; Mon, 9 Mar 2020 19:00:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DE41984E7D for ; Mon, 9 Mar 2020 19:00:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Ik-q4NpYYwtc for ; Mon, 9 Mar 2020 19:00:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 63BD684CDB for ; Mon, 9 Mar 2020 19:00:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5CE26FB27; Mon, 9 Mar 2020 19:00:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1583780412276210" MIME-Version: 1.0 Date: Mon, 9 Mar 2020 19:00:12 +0000 From: "Pierre Pronchery" Subject: CVS commit: pkgsrc/chat/prosody To: pkgsrc-changes@NetBSD.org Reply-To: khorben@netbsd.org X-Mailer: log_accum Message-Id: <20200309190012.5CE26FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1583780412276210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: khorben Date: Mon Mar 9 19:00:12 UTC 2020 Modified Files: pkgsrc/chat/prosody: distinfo pkgsrc/chat/prosody/patches: patch-GNUmakefile Log Message: prosody: fix the build with an alternative LOCALBASE To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/chat/prosody/distinfo cvs rdiff -u -r1.1 -r1.2 pkgsrc/chat/prosody/patches/patch-GNUmakefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1583780412276210 Content-Disposition: inline Content-Length: 1946 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/prosody/distinfo diff -u pkgsrc/chat/prosody/distinfo:1.16 pkgsrc/chat/prosody/distinfo:1.17 --- pkgsrc/chat/prosody/distinfo:1.16 Thu Jan 23 18:26:15 2020 +++ pkgsrc/chat/prosody/distinfo Mon Mar 9 19:00:12 2020 @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.16 2020/01/23 18:26:15 gdt Exp $ +$NetBSD: distinfo,v 1.17 2020/03/09 19:00:12 khorben Exp $ SHA1 (prosody-0.11.4.tar.gz) = 59e9e684230c26daf53526e18b0e6e2efb0d63c5 RMD160 (prosody-0.11.4.tar.gz) = c177c6f58054bd595e11b9d83b2889c8d67ba611 SHA512 (prosody-0.11.4.tar.gz) = 0c3aa3373c53f803b88a87dad4ca18b215de7a485d29b0bc4b186d97f7c48262840199a74f62aba6b7b4f1766fdfb37327ed4ff24e877c3a6dfca58764a035c3 Size (prosody-0.11.4.tar.gz) = 423518 bytes -SHA1 (patch-GNUmakefile) = e0fce25e95a4e765eba588e903de59526433ae54 +SHA1 (patch-GNUmakefile) = 6f2bf449923db2ebd970535b4b0975d3dd277f28 SHA1 (patch-prosody.cfg.lua.dist) = e8cc3a467b21bfe606a87beb412cebac71a627a9 SHA1 (patch-util-src_GNUmakefile) = d64699fb842be5fb963085dcb1edff67cd130161 SHA1 (patch-util-src_hashes.c) = e955d3ab2d170dce179bee8eed559ba57f825497 Index: pkgsrc/chat/prosody/patches/patch-GNUmakefile diff -u pkgsrc/chat/prosody/patches/patch-GNUmakefile:1.1 pkgsrc/chat/prosody/patches/patch-GNUmakefile:1.2 --- pkgsrc/chat/prosody/patches/patch-GNUmakefile:1.1 Thu Jan 23 18:26:15 2020 +++ pkgsrc/chat/prosody/patches/patch-GNUmakefile Mon Mar 9 19:00:12 2020 @@ -1,4 +1,4 @@ -$NetBSD: patch-GNUmakefile,v 1.1 2020/01/23 18:26:15 gdt Exp $ +$NetBSD: patch-GNUmakefile,v 1.2 2020/03/09 19:00:12 khorben Exp $ Fix installation directories and scripts @@ -8,7 +8,7 @@ Fix installation directories and scripts BIN = $(DESTDIR)$(PREFIX)/bin CONFIG = $(DESTDIR)$(SYSCONFDIR) -+EGDIR = $(DESTDIR)/usr/pkg/share/examples/prosody ++EGDIR = $(DESTDIR)@EGDIR@ MODULES = $(DESTDIR)$(LIBDIR)/prosody/modules SOURCE = $(DESTDIR)$(LIBDIR)/prosody DATA = $(DESTDIR)$(DATADIR) --_----------=_1583780412276210--