From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 97858158087 for ; Fri, 29 Oct 2021 22:01:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAAF3E087E; Fri, 29 Oct 2021 22:01:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D2830E087E for ; Fri, 29 Oct 2021 22:01:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9BD86335CE4 for ; Fri, 29 Oct 2021 22:01:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 374AF1A8 for ; Fri, 29 Oct 2021 22:01:11 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1635544154.d91826d6c89c21782686b9aa019b515f6ab75d38.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/prosody-modules/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/prosody-modules/prosody-modules-9999.ebuild X-VCS-Directories: net-im/prosody-modules/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: d91826d6c89c21782686b9aa019b515f6ab75d38 X-VCS-Branch: master Date: Fri, 29 Oct 2021 22:01:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 704bc087-bb37-42bd-a18a-405bb26615c8 X-Archives-Hash: 9656822cb33db01cd27cc72a67e2bed2 commit: d91826d6c89c21782686b9aa019b515f6ab75d38 Author: Conrad Kostecki gentoo org> AuthorDate: Fri Oct 29 21:49:14 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Oct 29 21:49:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d91826d6 net-im/prosody-modules: update live ebuild 1. As is, without quotes, it produces an error "unexpected symbol near '/'" 2. Modules shipped with prosody itself should take precedence. Otherwise, deprecated community mod_mam will take precedence over the supported one shipped with prosody. Signed-off-by: Andrey Utkin gentoo.org> Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> net-im/prosody-modules/prosody-modules-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild index 5759297af38..5c9701070e6 100644 --- a/net-im/prosody-modules/prosody-modules-9999.ebuild +++ b/net-im/prosody-modules/prosody-modules-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -51,5 +51,5 @@ pkg_postinst() { einfo "'/usr/$(get_libdir)/prosody/community-modules' into 'plugin_paths'" einfo "into your prosody configuration file '/etc/jabber/prosody.cfg.lua.'" einfo "" - einfo "Example: plugin_paths = { /usr/$(get_libdir)/prosody/community-modules };" + einfo "Example: plugin_paths = { \"/usr/$(get_libdir)/prosody/modules\", \"/usr/$(get_libdir)/prosody/community-modules\" };" }