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: Sat, 14 May 2022 07:37:05
Message-Id: 1652513785.5409c6e85b15e1ca251667849a40489f8ab4e217.wraeth@gentoo
1 commit: 5409c6e85b15e1ca251667849a40489f8ab4e217
2 Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 14 07:28:04 2022 +0000
4 Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
5 CommitDate: Sat May 14 07:36:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5409c6e8
7
8 net-irc/limnoria-plugins-chantracker: bump to 1.6_p20220429
9
10 Signed-off-by: Sam Jorna <wraeth <AT> gentoo.org>
11
12 net-irc/limnoria-plugins-chantracker/Manifest | 1 +
13 ...mnoria-plugins-chantracker-1.6_p20220429.ebuild | 35 ++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/net-irc/limnoria-plugins-chantracker/Manifest b/net-irc/limnoria-plugins-chantracker/Manifest
17 index 7ea1a4e901e1..e1bacd8aadd9 100644
18 --- a/net-irc/limnoria-plugins-chantracker/Manifest
19 +++ b/net-irc/limnoria-plugins-chantracker/Manifest
20 @@ -1,3 +1,4 @@
21 DIST limnoria-plugins-chantracker-1.6.tar.gz 48050 BLAKE2B aedf93eccbda87eb488b7a0c6e28597198ce37a68a006771b15d6044eea8d7efd9fcf5b178ff4309715534286b74c7ee81e47241ec6406c26d1b17f5bb442d5a SHA512 c7ddd629818edc85d4ebc589d85fa66ef757ac27d0710e4a5512a469892c5c3caad6b98a3ebbce0abc797e0b64bdbd4ad2445e2127c91e266abddec58c3ae859
22 DIST limnoria-plugins-chantracker-1.6_p20211103.tar.gz 52922 BLAKE2B a397c4235eb0487d6e84acb8c8dabd78fe1dcd4b64a85b94168fd9be5b3cbaa32049d621348b81b026d68bc1599b7b1db2051a572258e80eb0b8be875d3c9b2a SHA512 bf1c613b1daa979e310bf566e5584004ea824a65464e1b185b58ccc45c62f052d449a25e686eb0faa9657f29ff69b89ec588cf8ea40ad4dff415b9fc02faed04
23 DIST limnoria-plugins-chantracker-1.6_p20220312.tar.gz 52441 BLAKE2B 539038581ed988fc64216171d293271a811561903d23badcef36124d5ee80e26e1f67ff7d0e36e463aac92bc2442bc28766116bc9f92e5f86d8e14728180e192 SHA512 9e9cee65e3d19bab2c5079348bfbd598ecc71d3d8cc11bbcf76b79f39a14c9171c2a0a5e5ea7cf5550e9ab082ab6d764205f44e47bd1ea596d81ace68ca26075
24 +DIST limnoria-plugins-chantracker-1.6_p20220429.tar.gz 52444 BLAKE2B cbd4187b1b288402b45680a8a7ae080028e68d8409d01ef7c53ad99aae1c94336701a98fe66de29261cb12472ebc9102e31d2862c3da872fe9f55fd40b61cb0b SHA512 ff59e7f42c8fccc2214496e884ae8ef931b8e77839d898fb23fd2551bb91d1865134047fda9001892cd29b892ca4af6b959015d7e763bbeedaf7d13382af1113
25
26 diff --git a/net-irc/limnoria-plugins-chantracker/limnoria-plugins-chantracker-1.6_p20220429.ebuild b/net-irc/limnoria-plugins-chantracker/limnoria-plugins-chantracker-1.6_p20220429.ebuild
27 new file mode 100644
28 index 000000000000..4ecb6427352d
29 --- /dev/null
30 +++ b/net-irc/limnoria-plugins-chantracker/limnoria-plugins-chantracker-1.6_p20220429.ebuild
31 @@ -0,0 +1,35 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit vcs-snapshot
38 +
39 +COMMIT="3931b790d5f339ede546dbf925ff1e327f7132db"
40 +
41 +DESCRIPTION="supybot ban management and channel flood/spam/repeat protections plugin"
42 +HOMEPAGE="https://github.com/ncoevoet/ChanTracker"
43 +SRC_URI="https://github.com/ncoevoet/ChanTracker/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +KEYWORDS="~amd64 ~riscv ~x86"
47 +SLOT=0
48 +
49 +RDEPEND="net-irc/limnoria"
50 +
51 +DOCS="README.md"
52 +
53 +src_install() {
54 + default
55 + insinto /usr/share/limnoria-extra-plugins/ncoevoet/ChanTracker
56 + doins -r *
57 +}
58 +
59 +pkg_postinst() {
60 + elog "Before this plugin can be used, your bot will need to be told where to"
61 + elog "load it from. To do this, add /usr/share/limnoria-extra-plugins/ncoevoet when"
62 + elog "prompted during the bot creation wizard, or add it to a running bots config"
63 + elog "with the command"
64 + elog
65 + elog " config directories.plugins [config directories.plugins], /usr/share/limnoria-extra-plugins/ncoevoet"
66 +}