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