Gentoo Archives: gentoo-commits

From: Sam Jorna <wraeth@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/limnoria-plugins-chantracker/
Date: Sun, 30 May 2021 05:51:58
Message-Id: 1622353904.2c09bd72e05b61c94cbaa31dc2586433c9ed8ec1.wraeth@gentoo
1 commit: 2c09bd72e05b61c94cbaa31dc2586433c9ed8ec1
2 Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 30 05:51:29 2021 +0000
4 Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
5 CommitDate: Sun May 30 05:51:44 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c09bd72
7
8 net-irc/limnoria-plugins-chantracker: bump to p20210530
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Sam Jorna <wraeth <AT> gentoo.org>
12
13 net-irc/limnoria-plugins-chantracker/Manifest | 1 +
14 ...mnoria-plugins-chantracker-1.5_p20210530.ebuild | 35 ++++++++++++++++++++++
15 2 files changed, 36 insertions(+)
16
17 diff --git a/net-irc/limnoria-plugins-chantracker/Manifest b/net-irc/limnoria-plugins-chantracker/Manifest
18 index c421b12e848..f1afaabf8c3 100644
19 --- a/net-irc/limnoria-plugins-chantracker/Manifest
20 +++ b/net-irc/limnoria-plugins-chantracker/Manifest
21 @@ -1 +1,2 @@
22 DIST limnoria-plugins-chantracker-1.5_p20210210.tar.gz 46836 BLAKE2B f97418160f6261a87ef6239def036b629ffe88d06e5f4980722ca1b6d05c1cd0c12d8c6d425150c8aa2a43a1b21e3f0070dfe55fc71a8aa0cf5bed20d57adcaa SHA512 c6d25d2d84cda24a5e589952e75dd79569296d23e24f3872c553d1b78ebb782c2f6257248238a4bdd9d6a1efdad2836e4fad1546adb81581d7daedcc153a90b5
23 +DIST limnoria-plugins-chantracker-1.5_p20210530.tar.gz 47071 BLAKE2B b38cbe399d6cda9ee9d5e873a50d2f529d91b697c32ed4d74fb8812b8090a42103283878f8874f0a974cfdf1d117e2401935edef678d1d71af338760555a7a92 SHA512 7b5e459d17b28fd00b9306a7acd8c2a36eb668031c24eb05b9c51354e5cf270fb1b388949047c0531d9e8cd62291d8f7ec9bd339d3b3b6c1680dc184c44d3b21
24
25 diff --git a/net-irc/limnoria-plugins-chantracker/limnoria-plugins-chantracker-1.5_p20210530.ebuild b/net-irc/limnoria-plugins-chantracker/limnoria-plugins-chantracker-1.5_p20210530.ebuild
26 new file mode 100644
27 index 00000000000..03beadaac2c
28 --- /dev/null
29 +++ b/net-irc/limnoria-plugins-chantracker/limnoria-plugins-chantracker-1.5_p20210530.ebuild
30 @@ -0,0 +1,35 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit vcs-snapshot
37 +
38 +COMMIT="7a60d9912171b3f6fb927b03c18710773d7f4227"
39 +
40 +DESCRIPTION="supybot ban management and channel flood/spam/repeat protections plugin"
41 +HOMEPAGE="https://github.com/ncoevoet/ChanTracker"
42 +SRC_URI="https://github.com/ncoevoet/ChanTracker/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +KEYWORDS="~amd64 ~x86"
46 +SLOT=0
47 +
48 +RDEPEND="net-irc/limnoria"
49 +
50 +DOCS="README.md"
51 +
52 +src_install() {
53 + default
54 + insinto /usr/share/limnoria-extra-plugins/ncoevoet/ChanTracker
55 + doins -r *
56 +}
57 +
58 +pkg_postinst() {
59 + elog "Before this plugin can be used, your bot will need to be told where to"
60 + elog "load it from. To do this, add /usr/share/limnoria-extra-plugins/ncoevoet when"
61 + elog "prompted during the bot creation wizard, or add it to a running bots config"
62 + elog "with the command"
63 + elog
64 + elog " config directories.plugins [config directories.plugins], /usr/share/limnoria-extra-plugins/ncoevoet"
65 +}