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-igloo-push/
Date: Sun, 30 Aug 2020 18:58:22
Message-Id: 1598813883.3c5de23dea9b039e0202ed46a86eb4ead0f5c7f6.whissi@gentoo
1 commit: 3c5de23dea9b039e0202ed46a86eb4ead0f5c7f6
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 30 18:28:25 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 30 18:58:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c5de23d
7
8 net-irc/znc-igloo-push: 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-igloo-push/Manifest | 1 +
14 net-irc/znc-igloo-push/metadata.xml | 15 +++++++++
15 .../znc-igloo-push/znc-igloo-push-20200520.ebuild | 37 ++++++++++++++++++++++
16 3 files changed, 53 insertions(+)
17
18 diff --git a/net-irc/znc-igloo-push/Manifest b/net-irc/znc-igloo-push/Manifest
19 new file mode 100644
20 index 00000000000..9637995ec7b
21 --- /dev/null
22 +++ b/net-irc/znc-igloo-push/Manifest
23 @@ -0,0 +1 @@
24 +DIST znc-igloo-push-20200520.tar.gz 12071 BLAKE2B 41272e479b8a6e201e3981e04f88a216aee9ed7051ae5573ea5266d74219a0a3f441ccf5621e040d4feb4bb81c349dfdc73357d7d43cf3f358a181a52bf79be7 SHA512 aaf23e1ffec4c0b5e14d9abc7ce276cc27f342e24f32fdd54f451d53729ce24fbf3665f2ad266bf38bbea2485386045c1cbc46593ed2eb6b87ac8889b8b7772e
25
26 diff --git a/net-irc/znc-igloo-push/metadata.xml b/net-irc/znc-igloo-push/metadata.xml
27 new file mode 100644
28 index 00000000000..65e385ef136
29 --- /dev/null
30 +++ b/net-irc/znc-igloo-push/metadata.xml
31 @@ -0,0 +1,15 @@
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 + A ZNC module which provides push notifications through ZNC
41 + for the iOS Igloo App while being disconnected from IRC.
42 + </longdescription>
43 + <upstream>
44 + <bugs-to>https://git.jordanko.ch/Igloo/Push/issues</bugs-to>
45 + </upstream>
46 +</pkgmetadata>
47
48 diff --git a/net-irc/znc-igloo-push/znc-igloo-push-20200520.ebuild b/net-irc/znc-igloo-push/znc-igloo-push-20200520.ebuild
49 new file mode 100644
50 index 00000000000..4022d504d1a
51 --- /dev/null
52 +++ b/net-irc/znc-igloo-push/znc-igloo-push-20200520.ebuild
53 @@ -0,0 +1,37 @@
54 +# Copyright 2020 Gentoo Authors
55 +# Distributed under the terms of the GNU General Public License v2
56 +
57 +EAPI=7
58 +
59 +MY_COMMIT="f952b87a1fc235917a28fbabbe8626719d622e4c"
60 +
61 +DESCRIPTION="A ZNC module which provides push notifications for Igloo client"
62 +HOMEPAGE="https://git.jordanko.ch/Igloo/Push"
63 +SRC_URI="https://git.jordanko.ch/Igloo/Push/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
64 +
65 +LICENSE="MIT"
66 +SLOT="0"
67 +KEYWORDS="~amd64 ~x86"
68 +
69 +DEPEND="
70 + net-irc/znc:=[ssl]"
71 +
72 +RDEPEND="${DEPEND}"
73 +
74 +DOCS=( README.md )
75 +
76 +S="${WORKDIR}/push"
77 +
78 +src_prepare() {
79 + default
80 +
81 + # No parallel build support
82 + MAKEOPTS=-j1
83 +}
84 +
85 +src_install() {
86 + insinto /usr/$(get_libdir)/znc
87 + doins push.so
88 +
89 + einstalldocs
90 +}