Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/prosody-modules/
Date: Fri, 29 Oct 2021 22:01:19
Message-Id: 1635544154.d91826d6c89c21782686b9aa019b515f6ab75d38.conikost@gentoo
1 commit: d91826d6c89c21782686b9aa019b515f6ab75d38
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 29 21:49:14 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 29 21:49:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d91826d6
7
8 net-im/prosody-modules: update live ebuild
9
10 1. As is, without quotes, it produces an error
11 "unexpected symbol near '/'"
12 2. Modules shipped with prosody itself should take precedence.
13 Otherwise, deprecated community mod_mam will take precedence over the
14 supported one shipped with prosody.
15
16 Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>
17 Package-Manager: Portage-3.0.28, Repoman-3.0.3
18 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
19
20 net-im/prosody-modules/prosody-modules-9999.ebuild | 4 ++--
21 1 file changed, 2 insertions(+), 2 deletions(-)
22
23 diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
24 index 5759297af38..5c9701070e6 100644
25 --- a/net-im/prosody-modules/prosody-modules-9999.ebuild
26 +++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
27 @@ -1,4 +1,4 @@
28 -# Copyright 2020 Gentoo Authors
29 +# Copyright 1999-2021 Gentoo Authors
30 # Distributed under the terms of the GNU General Public License v2
31
32 EAPI=7
33 @@ -51,5 +51,5 @@ pkg_postinst() {
34 einfo "'/usr/$(get_libdir)/prosody/community-modules' into 'plugin_paths'"
35 einfo "into your prosody configuration file '/etc/jabber/prosody.cfg.lua.'"
36 einfo ""
37 - einfo "Example: plugin_paths = { /usr/$(get_libdir)/prosody/community-modules };"
38 + einfo "Example: plugin_paths = { \"/usr/$(get_libdir)/prosody/modules\", \"/usr/$(get_libdir)/prosody/community-modules\" };"
39 }