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: Wed, 01 Sep 2021 20:28:08
Message-Id: 1630528075.5c6db7c38d99a44792e69bdd7aea9af760a24ba2.conikost@gentoo
1 commit: 5c6db7c38d99a44792e69bdd7aea9af760a24ba2
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 1 20:11:32 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 1 20:27:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c6db7c3
7
8 net-im/prosody-modules: drop old version
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 net-im/prosody-modules/Manifest | 1 -
14 .../prosody-modules-0_pre20210515.ebuild | 55 ----------------------
15 2 files changed, 56 deletions(-)
16
17 diff --git a/net-im/prosody-modules/Manifest b/net-im/prosody-modules/Manifest
18 index d1e96aa96b6..244bd0a91ca 100644
19 --- a/net-im/prosody-modules/Manifest
20 +++ b/net-im/prosody-modules/Manifest
21 @@ -1,2 +1 @@
22 -DIST prosody-modules-0_pre20210515.tar.xz 1196276 BLAKE2B 66e9dddeba1e139b16ecc1ea0b786a85cb9181e0bfa0123a9c9ce99f1aa64cc12ba92ffa6b83d63cbc0f45962a13ac8ec508030d99c5e58d645c708a1078dab3 SHA512 1cd48cfa66e72de843db2a593a524636aaa0f36cb5b848e19238d4c2951525882fb30a354e503d71e0fb4b6c8efe0aa09acc16285ac3357d4c8d353a2f48b120
23 DIST prosody-modules-0_pre20210901.tar.xz 1205504 BLAKE2B 10959ffdecd107593777398ee1019f77bae3bb28a829b3f5a974c6715607904e79ce01020ac76585b35115a7cd97f400575c8ed20e9ca333bfdb3e83b6005554 SHA512 f27d7372c4e95d3a942c16ebcd00392d3faeaea525a8c18ff5da293a5be3493730200de008d249cb946fbe8c15039934b35278e30bda018c942c1d38faa3fd29
24
25 diff --git a/net-im/prosody-modules/prosody-modules-0_pre20210515.ebuild b/net-im/prosody-modules/prosody-modules-0_pre20210515.ebuild
26 deleted file mode 100644
27 index ff13c951991..00000000000
28 --- a/net-im/prosody-modules/prosody-modules-0_pre20210515.ebuild
29 +++ /dev/null
30 @@ -1,55 +0,0 @@
31 -# Copyright 2020-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit savedconfig
37 -
38 -DESCRIPTION="A collection of community-maintained modules for Prosody"
39 -HOMEPAGE="https://modules.prosody.im"
40 -SRC_URI="https://dev.gentoo.org/~conikost/distfiles/${P}.tar.xz"
41 -S="${WORKDIR}/${PN}"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
46 -
47 -RDEPEND="net-im/prosody"
48 -
49 -src_prepare() {
50 - default
51 -
52 - # Exclude 'misc' folder from install, since it does not provide any modules.
53 - echo "# Remove all modules from this list, which you don't want to install." > prosody-modules.conf || die
54 - find * -maxdepth 0 -type d ! -name misc >> prosody-modules.conf || die
55 -
56 - use savedconfig && restore_config prosody-modules.conf
57 -}
58 -
59 -src_install() {
60 - insinto "/usr/$(get_libdir)/prosody/community-modules"
61 - while read prosody_module; do
62 - if ! [[ "${prosody_module}" = \#* ]]; then
63 - if [[ -f "${prosody_module}/README.markdown" ]]; then
64 - newdoc "${prosody_module}/README.markdown" "README.${prosody_module}"
65 - rm "${prosody_module}/README.markdown" || die
66 - fi
67 -
68 - doins -r "${prosody_module}"
69 - fi
70 - done <prosody-modules.conf
71 -
72 - save_config prosody-modules.conf
73 -
74 - einstalldocs
75 -}
76 -
77 -pkg_postinst() {
78 - savedconfig_pkg_postinst
79 -
80 - einfo "In order to use the community modules on an existing instance, you have to add"
81 - einfo "'/usr/$(get_libdir)/prosody/community-modules' into 'plugin_paths'"
82 - einfo "into your prosody configuration file '/etc/jabber/prosody.cfg.lua.'"
83 - einfo ""
84 - einfo "Example: plugin_paths = { /usr/$(get_libdir)/prosody/community-modules };"
85 -}