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, 20 Jun 2021 02:48:41
Message-Id: 1624157220.5d5e8fc988ac4cce9d445815f90cbdcedf3bff82.wraeth@gentoo
1 commit: 5d5e8fc988ac4cce9d445815f90cbdcedf3bff82
2 Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 20 02:47:00 2021 +0000
4 Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 20 02:47:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d5e8fc9
7
8 net-irc/limnoria-plugins-chantracker: bump to 1.5_p20210619
9
10 Package-Manager: Portage-3.0.20, 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_p20210619.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 f1afaabf8c3..5df17e3d222 100644
19 --- a/net-irc/limnoria-plugins-chantracker/Manifest
20 +++ b/net-irc/limnoria-plugins-chantracker/Manifest
21 @@ -1,2 +1,3 @@
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 +DIST limnoria-plugins-chantracker-1.5_p20210619.tar.gz 47777 BLAKE2B 14e44e025d4044c38504ec9cea31b08d9a442769b5dc3cf6d71b89526ec98a43a31068a5557b3fc257c6254b0f6aab989d148066b79667b17c75f01e741c10ea SHA512 8ef99fbd41929172ae362a656030fda7f4d522eddfd29a3f9e8f9e9a138903faa672c4b872ce76da39d716f3443c159e7c40111cee015230e781bc387c299718
25
26 diff --git a/net-irc/limnoria-plugins-chantracker/limnoria-plugins-chantracker-1.5_p20210619.ebuild b/net-irc/limnoria-plugins-chantracker/limnoria-plugins-chantracker-1.5_p20210619.ebuild
27 new file mode 100644
28 index 00000000000..b1b787904b8
29 --- /dev/null
30 +++ b/net-irc/limnoria-plugins-chantracker/limnoria-plugins-chantracker-1.5_p20210619.ebuild
31 @@ -0,0 +1,35 @@
32 +# Copyright 1999-2021 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="a3d25c44b7a56e3af7b3d8b48ee68a311deed5df"
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 ~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 +}