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 8E5B015800A for ; Sat, 5 Aug 2023 22:41:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8176A2BC017; Sat, 5 Aug 2023 22:41:38 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6630F2BC017 for ; Sat, 5 Aug 2023 22:41:38 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D071340E5A for ; Sat, 5 Aug 2023 22:41:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B62FDF0D for ; Sat, 5 Aug 2023 22:41:35 +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: <1691275194.83addd7a8fa1d55e330e163342e62acb4b19eebf.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-0_pre20230221.ebuild X-VCS-Directories: net-im/prosody-modules/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 83addd7a8fa1d55e330e163342e62acb4b19eebf X-VCS-Branch: master Date: Sat, 5 Aug 2023 22:41:35 +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: 78a01944-1c13-4074-8890-3f8462c91ecc X-Archives-Hash: d045c94322e4cfe4b94ca1230fa80c9d commit: 83addd7a8fa1d55e330e163342e62acb4b19eebf Author: Conrad Kostecki gentoo org> AuthorDate: Sat Aug 5 22:07:59 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Aug 5 22:39:54 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83addd7a net-im/prosody-modules: fix QA ExcessiveLineLength Signed-off-by: Conrad Kostecki gentoo.org> net-im/prosody-modules/prosody-modules-0_pre20230221.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net-im/prosody-modules/prosody-modules-0_pre20230221.ebuild b/net-im/prosody-modules/prosody-modules-0_pre20230221.ebuild index 9b0ba076aa2b..2950cf906871 100644 --- a/net-im/prosody-modules/prosody-modules-0_pre20230221.ebuild +++ b/net-im/prosody-modules/prosody-modules-0_pre20230221.ebuild @@ -51,5 +51,6 @@ 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/modules\", \"/usr/$(get_libdir)/prosody/community-modules\" };" + einfo "Example: plugin_paths = { \"/usr/$(get_libdir)/prosody/modules\"," + einfo "\"/usr/$(get_libdir)/prosody/community-modules\" };" }