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-jlu5/
Date: Sun, 30 May 2021 05:03:22
Message-Id: 1622350857.597992a7972a14d4636bd68ad3cad278d96e6248.wraeth@gentoo
1 commit: 597992a7972a14d4636bd68ad3cad278d96e6248
2 Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 30 05:00:57 2021 +0000
4 Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
5 CommitDate: Sun May 30 05:00:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=597992a7
7
8 net-irc/limnoria-plugins-jlu5: bump to 20210530
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-jlu5/Manifest | 1 +
14 ...limnoria-plugins-jlu5-20200105_p20210530.ebuild | 41 ++++++++++++++++++++++
15 2 files changed, 42 insertions(+)
16
17 diff --git a/net-irc/limnoria-plugins-jlu5/Manifest b/net-irc/limnoria-plugins-jlu5/Manifest
18 index c4db5f09be2..5c680d29744 100644
19 --- a/net-irc/limnoria-plugins-jlu5/Manifest
20 +++ b/net-irc/limnoria-plugins-jlu5/Manifest
21 @@ -1 +1,2 @@
22 DIST limnoria-plugins-jlu5-20200105_p20210305.tar.gz 95273 BLAKE2B cfdea4fadbfa050c56dd0f307cf43506391d0e35e31b46a649aaf70cfd4c8979e14192d66af408e33b4cc8c0e1917fdb5d2d2cf86029a9b6b204a56936c22b76 SHA512 b031cd9be28989499ed063e8bd2af8079415075710be4dcfd73051eb325e2e321a1589c6d7adc69a0e5ce8b4a0a96c4bb6b1108c4ee479bc074b70738727dd64
23 +DIST limnoria-plugins-jlu5-20200105_p20210530.tar.gz 99973 BLAKE2B a67e53a75a99ed406782cc74cc93c19ad4e7298a4e9b47781559609c7ed77fed157febb646147254f0fb8e73627f1fdfa23e80cd1893d394c779ee54f93357d9 SHA512 03f537b7100a747c408a754d368e679ceea313747cd27dea9ca26cc7d3cf9b4319faf37656b0c7b5134d8ca6a94a9bbf4c345aa8015bcab2a99648d38dddc272
24
25 diff --git a/net-irc/limnoria-plugins-jlu5/limnoria-plugins-jlu5-20200105_p20210530.ebuild b/net-irc/limnoria-plugins-jlu5/limnoria-plugins-jlu5-20200105_p20210530.ebuild
26 new file mode 100644
27 index 00000000000..9d1174845df
28 --- /dev/null
29 +++ b/net-irc/limnoria-plugins-jlu5/limnoria-plugins-jlu5-20200105_p20210530.ebuild
30 @@ -0,0 +1,41 @@
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="7e695c00dfb665a16ff4f1d66ad3deb4598ea029"
39 +
40 +DESCRIPTION="A collection of plugins for the Limnoria IRC bot."
41 +HOMEPAGE="https://github.com/jlu5/SupyPlugins"
42 +SRC_URI="https://github.com/jlu5/SupyPlugins/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="BSD GPL-2+"
45 +KEYWORDS="~amd64 ~x86"
46 +SLOT=0
47 +
48 +RDEPEND="
49 + net-irc/limnoria
50 + dev-python/beautifulsoup
51 +"
52 +
53 +DOCS=(
54 + "README.md"
55 + "requirements.txt"
56 +)
57 +
58 +src_install() {
59 + default
60 + insinto /usr/share/limnoria-extra-plugins/jlu5
61 + doins -r *
62 +}
63 +
64 +pkg_postinst() {
65 + elog "Before these plugins can be used, your bot will need to be told where to"
66 + elog "load them from. To do this, add /usr/share/limnoria-extra-plugins/jlu5 when"
67 + elog "prompted during the bot creation wizard, or add it to a running bots config"
68 + elog "with the command"
69 + elog
70 + elog " config directories.plugins [config directories.plugins], /usr/share/limnoria-extra-plugins/jlu5"
71 +}