Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/znc-playback/
Date: Sun, 30 Aug 2020 18:58:22
Message-Id: 1598813884.98e6a01d2d9ab374e7cb261e71e91758221fa1d6.whissi@gentoo
1 commit: 98e6a01d2d9ab374e7cb261e71e91758221fa1d6
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 30 18:57:28 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 30 18:58:04 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e6a01d
7
8 net-irc/znc-playback: new package
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 net-irc/znc-playback/Manifest | 1 +
14 net-irc/znc-playback/metadata.xml | 19 ++++++++++++
15 net-irc/znc-playback/znc-playback-20200510.ebuild | 37 +++++++++++++++++++++++
16 3 files changed, 57 insertions(+)
17
18 diff --git a/net-irc/znc-playback/Manifest b/net-irc/znc-playback/Manifest
19 new file mode 100644
20 index 00000000000..4ac6fa035c6
21 --- /dev/null
22 +++ b/net-irc/znc-playback/Manifest
23 @@ -0,0 +1 @@
24 +DIST znc-playback-20200510.tar.gz 3139 BLAKE2B b074fb2cf98dcde39a5ec51a625196b61d7a540cbbdae374268f576756b876967a1be72f78e6ee5cf62d284c0cbfc3034d78678772cd975eb38f4757712bbabe SHA512 50e924574c71fb6ace98c654201040aa2c193f4f1f811aa2ea26ad6ce6ced21bafe61c207936164125d84509e252890b383b21d904fe4cd46490711073052daf
25
26 diff --git a/net-irc/znc-playback/metadata.xml b/net-irc/znc-playback/metadata.xml
27 new file mode 100644
28 index 00000000000..af3b2726475
29 --- /dev/null
30 +++ b/net-irc/znc-playback/metadata.xml
31 @@ -0,0 +1,19 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="person">
36 + <email>whissi@g.o</email>
37 + <name>Thomas Deutschmann</name>
38 + </maintainer>
39 + <longdescription>
40 + The advanced playback module for ZNC makes it possible for IRC clients
41 + to avoid undesired repetitive buffer playback. IRC clients may request
42 + the module to send a partial buffer playback starting from and ending
43 + to a certain point of time. The detailed instructions are available
44 + at https://wiki.znc.in/Playback.
45 + </longdescription>
46 + <upstream>
47 + <bugs-to>https://github.com/jpnurmi/znc-playback/issues</bugs-to>
48 + <remote-id type="github">jpnurmi/znc-playback</remote-id>
49 + </upstream>
50 +</pkgmetadata>
51
52 diff --git a/net-irc/znc-playback/znc-playback-20200510.ebuild b/net-irc/znc-playback/znc-playback-20200510.ebuild
53 new file mode 100644
54 index 00000000000..5e8fda1097d
55 --- /dev/null
56 +++ b/net-irc/znc-playback/znc-playback-20200510.ebuild
57 @@ -0,0 +1,37 @@
58 +# Copyright 2020 Gentoo Authors
59 +# Distributed under the terms of the GNU General Public License v2
60 +
61 +EAPI=7
62 +
63 +MY_COMMIT="8dd128bfe2b24b2cc6a9ea2e2d28bfaa28d2a833"
64 +
65 +DESCRIPTION="A ZNC module to control buffer playback"
66 +HOMEPAGE="https://github.com/jpnurmi/znc-playback"
67 +SRC_URI="https://github.com/jpnurmi/znc-playback/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
68 +
69 +LICENSE="Apache-2.0"
70 +SLOT="0"
71 +KEYWORDS="~amd64 ~x86"
72 +
73 +DEPEND="
74 + net-irc/znc:="
75 +
76 +RDEPEND="${DEPEND}"
77 +
78 +DOCS=( README.md )
79 +
80 +S="${WORKDIR}/${PN}-${MY_COMMIT}"
81 +
82 +src_prepare() {
83 + default
84 +
85 + # No parallel build support
86 + MAKEOPTS=-j1
87 +}
88 +
89 +src_install() {
90 + insinto /usr/$(get_libdir)/znc
91 + doins playback.so
92 +
93 + einstalldocs
94 +}