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-progval/
Date: Sun, 04 Jul 2021 01:54:14
Message-Id: 1625363593.d2a95de8273f192680bf5676332ed4260052690d.wraeth@gentoo
1 commit: d2a95de8273f192680bf5676332ed4260052690d
2 Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 4 01:47:28 2021 +0000
4 Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 4 01:53:13 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2a95de8
7
8 net-irc/limnoria-plugins-progval: bump to 20210629
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-progval/Manifest | 1 +
14 .../limnoria-plugins-progval-20210629.ebuild | 38 ++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/net-irc/limnoria-plugins-progval/Manifest b/net-irc/limnoria-plugins-progval/Manifest
18 index 065d0fd287f..5fc5bec5ffb 100644
19 --- a/net-irc/limnoria-plugins-progval/Manifest
20 +++ b/net-irc/limnoria-plugins-progval/Manifest
21 @@ -1,2 +1,3 @@
22 DIST limnoria-plugins-progval-20210523.tar.gz 4936882 BLAKE2B 3404d6d07f1d2e55357759000734df37566f2b9563149ea2efbcc2b4b3dbbc73e321280ee2846ed61df8b23400bcd8e1f5088921ffa1a77bf86625713c00aa98 SHA512 6a3b9d0c65070b8c6c4f762f273f4ebee37550c4aca00e82fc7232a957863aaff5bd5d1768eb8b00b40666b71f4d83ec6253d0f42132ebf7563208aadaacd48d
23 DIST limnoria-plugins-progval-20210616.tar.gz 4940211 BLAKE2B c6bdc9e1949303c18081d7ab16bb12e6c51b3af6ac70c5ba5cf5352fe13befe7b1896a8178df4b60c19ff10bb81f9454d20cff89218ead55ea218bb9d5e5c728 SHA512 b2f962890bf0d125ec77f0cdfec0e4449444565bd429c3bb6c2f0386e2dfdee9f9bdaa8c25334fced4866c19cb29220a045e83f40c6e35476d44e2c1d0d4c325
24 +DIST limnoria-plugins-progval-20210629.tar.gz 4940004 BLAKE2B 286b502daa37bfa5aafd8f5d92176ecc5956d0922322bc1ce1ffd4221bc6f9cef14b7cb9ca52c1d520e17852941a34006a250d8f6504134c40fc0b896b71a99c SHA512 30985a54ef6c1d027356b0f6efd0b1cbde777bb4fe2999ef63ebc94ae944933d9dc90f1ce937ccda5b54bacdd786ead79b01bc1514113a51b749cfcccba993d1
25
26 diff --git a/net-irc/limnoria-plugins-progval/limnoria-plugins-progval-20210629.ebuild b/net-irc/limnoria-plugins-progval/limnoria-plugins-progval-20210629.ebuild
27 new file mode 100644
28 index 00000000000..ca33528f14c
29 --- /dev/null
30 +++ b/net-irc/limnoria-plugins-progval/limnoria-plugins-progval-20210629.ebuild
31 @@ -0,0 +1,38 @@
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="eaf99ec03bb60da78612d8a73e47fba1f6708b0a"
40 +
41 +DESCRIPTION="Collection of plugins for Supybot/Limnoria I wrote or forked."
42 +HOMEPAGE="https://github.com/ProgVal/Supybot-plugins"
43 +SRC_URI="https://github.com/ProgVal/Supybot-plugins/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="BSD GPL-2 GPL-3 MIT"
46 +KEYWORDS="~amd64 ~x86"
47 +SLOT=0
48 +
49 +RDEPEND="net-irc/limnoria"
50 +
51 +DOCS=(
52 + "README.md"
53 + "requirements.txt"
54 +)
55 +
56 +src_install() {
57 + default
58 + insinto /usr/share/limnoria-extra-plugins/ProgVal
59 + doins -r *
60 +}
61 +
62 +pkg_postinst() {
63 + elog "Before this plugin can be used, your bot will need to be told where to"
64 + elog "load it from. To do this, add /usr/share/limnoria-extra-plugins/ProgVal when"
65 + elog "prompted during the bot creation wizard, or add it to a running bots config"
66 + elog "with the command"
67 + elog
68 + elog " config directories.plugins [config directories.plugins], /usr/share/limnoria-extra-plugins/ProgVal"
69 +}