diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-01-05 23:00:23 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-01-05 23:17:17 +0100 |
commit | ea5258caacee0c1b2c680e1abb5d414228cfc61c (patch) | |
tree | 304ea25aaeb5320c754c5308074b3a2a16d9327a /net-im/prosody-modules | |
parent | net-im/prosody-modules: bump to newest snapshot (diff) | |
download | gentoo-ea5258caacee0c1b2c680e1abb5d414228cfc61c.tar.gz gentoo-ea5258caacee0c1b2c680e1abb5d414228cfc61c.tar.bz2 gentoo-ea5258caacee0c1b2c680e1abb5d414228cfc61c.zip |
net-im/prosody-modules: drop old version
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-im/prosody-modules')
-rw-r--r-- | net-im/prosody-modules/Manifest | 1 | ||||
-rw-r--r-- | net-im/prosody-modules/prosody-modules-0_pre20201004.ebuild | 55 |
2 files changed, 0 insertions, 56 deletions
diff --git a/net-im/prosody-modules/Manifest b/net-im/prosody-modules/Manifest index 5bfd06584abc..7ae3229da7b3 100644 --- a/net-im/prosody-modules/Manifest +++ b/net-im/prosody-modules/Manifest @@ -1,2 +1 @@ -DIST prosody-modules-0_pre20201004.tar.xz 1152400 BLAKE2B 66170cbeea156d8843aad2ace62294a40b6168170cd3da3b59cf660aa9d6aab743a7bfe1a5d313e83a69336ef7165a4a45ac27da9afa239a7f97413f275883fe SHA512 b4201c108b6ba5ed2404d65efa3fbb50ca1493e204b6cfe55893c19fe22a01bcb23244fa35f2c03cf52ecabdac1354aa388740fc62b5516cb2a85fdd753e9efc DIST prosody-modules-0_pre20210105.tar.xz 1166992 BLAKE2B 02bf4ea4521194db51716c2716370e1b38e747da000dc8d27ce93b5f81d53b9e0367e96f3e18aee74c858ae86474bcaccb0ef944325f508337882acf3cd9e960 SHA512 c0739a309b66c958e205989988c6e7118c0385156d7ebc2a4825646af366fe5665ff6e7e98aab24cf3cc5530fe40c8e9a3440afff196a96624242c00861a308e diff --git a/net-im/prosody-modules/prosody-modules-0_pre20201004.ebuild b/net-im/prosody-modules/prosody-modules-0_pre20201004.ebuild deleted file mode 100644 index 46bb27cbada4..000000000000 --- a/net-im/prosody-modules/prosody-modules-0_pre20201004.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit savedconfig - -DESCRIPTION="A collection of community-maintained modules for Prosody" -HOMEPAGE="https://modules.prosody.im" -SRC_URI="https://dev.gentoo.org/~conikost/distfiles/${P}.tar.xz" -S="${WORKDIR}/${PN}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" - -RDEPEND="net-im/prosody" - -src_prepare() { - default - - # Exclude 'misc' folder from install, since it does not provide any modules. - echo "# Remove all modules from this list, which you don't want to install." > prosody-modules.conf || die - find * -maxdepth 0 -type d ! -name misc >> prosody-modules.conf || die - - use savedconfig && restore_config prosody-modules.conf -} - -src_install() { - insinto "/usr/$(get_libdir)/prosody/community-modules" - while read prosody_module; do - if ! [[ "${prosody_module}" = \#* ]]; then - if [[ -f "${prosody_module}/README.markdown" ]]; then - newdoc "${prosody_module}/README.markdown" "README.${prosody_module}" - rm "${prosody_module}/README.markdown" || die - fi - - doins -r "${prosody_module}" - fi - done <prosody-modules.conf - - save_config prosody-modules.conf - - einstalldocs -} - -pkg_postinst() { - savedconfig_pkg_postinst - - einfo "In order to use the community modules on an existing instance, you have to add" - 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 };" -} |