Gentoo Archives: gentoo-commits

From: Ronny Gutbrod <gentoo@××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-im/go-sendxmpp/
Date: Fri, 03 Jun 2022 14:52:07
Message-Id: 1654267888.bac7c226e678b1e31e7c00fc8b7353b9fb4f087f.tastytea@gentoo
1 commit: bac7c226e678b1e31e7c00fc8b7353b9fb4f087f
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Fri Jun 3 14:49:31 2022 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Fri Jun 3 14:51:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bac7c226
7
8 net-im/go-sendxmpp: add 0.5.1
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 net-im/go-sendxmpp/Manifest | 2 ++
13 net-im/go-sendxmpp/go-sendxmpp-0.5.1.ebuild | 30 +++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/net-im/go-sendxmpp/Manifest b/net-im/go-sendxmpp/Manifest
17 index 51a3ff315..8236f6cdc 100644
18 --- a/net-im/go-sendxmpp/Manifest
19 +++ b/net-im/go-sendxmpp/Manifest
20 @@ -2,3 +2,5 @@ DIST go-sendxmpp-0.3.0-vendor.tar.xz 694672 BLAKE2B eb84432a5f809d60e28a11b834af
21 DIST go-sendxmpp-0.3.0.tar.bz2 17809 BLAKE2B 8c1a0fcf44ed4986fd17806cac169653f05901338169ab8d552f59474ff5eb01dc5ceace1e399edf79c9e967fcaf15216c78f44803f3cb9a6995095e519bdf94 SHA512 9ceefd156d558c8c396956b190504c24fd2824a1ee0308606945d046d378a1d745789a86578e5f6af7b6c0ce0a92c6f7069e1007e96c075df26e92c7f3917501
22 DIST go-sendxmpp-0.5.0-vendor.tar.xz 1237388 BLAKE2B 5708f68dee789353df9b9c0aabfc5182239831f74fd4a8e5572137a67c217580e515e3d32c776f1a85edd5259ac7e17482ca68ef9d33c278b08cc6cf0796c9f9 SHA512 38b390ca8806f52a963a14886d7a7a854ab43763b67715dae0f41e832d822a7191fa4a5a344e664ee060d86de3f192ef7822712b3d412aca837da3ddbdc264d0
23 DIST go-sendxmpp-0.5.0.tar.bz2 26529 BLAKE2B 7240ead295ea694f3ff7ccbfff978b808ebfcbdcde9f81f98cac4cec548cbc4ad537e56eb7eaa937822397d9933b6b57a12269ff8a344ed327d6ab8545f3fa00 SHA512 45230b5b742e5476ac067d5671fd6c18bfdb2435c65b34b6ef180f74e6123f61fa8097957c05eadf4311a38a96e78446a653d26e1d534bdec4cedff8fd7df329
24 +DIST go-sendxmpp-0.5.1-vendor.tar.xz 1237104 BLAKE2B 76896da8365f3213518fc6fee4000216ceebbd56690ccb0234c274df2bba9387d8e4bb7c28213edb71df24efeaf94508a6c965b6891de643bc5207315dad61ac SHA512 91e97e060fc4f139e5c95281e0c32325bea4e52509de26b6cec2b43001143167af67c8661fca43cb81a527f5e6d51ea0474375fd5865518f144d3a19d4cbd0a9
25 +DIST go-sendxmpp-0.5.1.tar.bz2 26585 BLAKE2B 7a016b867cb5ece929fcab9aa2d828c53e1d113082ca3626637f7d8fedf14df456b01910c815dddaee66f13f3a36fa2c828873d1745af204c08e894754315c0e SHA512 470f54ef32946f22914af23b96327e30cb6f6bb4b7d76a955b8512ac818973d77babba6421b1e55a3fa80c9094734dc7ab612ff36e8bad97afc8c45814b97fa9
26
27 diff --git a/net-im/go-sendxmpp/go-sendxmpp-0.5.1.ebuild b/net-im/go-sendxmpp/go-sendxmpp-0.5.1.ebuild
28 new file mode 100644
29 index 000000000..95a653bb1
30 --- /dev/null
31 +++ b/net-im/go-sendxmpp/go-sendxmpp-0.5.1.ebuild
32 @@ -0,0 +1,30 @@
33 +# Copyright 2020-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +inherit go-module
39 +
40 +DESCRIPTION="A little tool to send messages to an XMPP contact or MUC"
41 +HOMEPAGE="https://salsa.debian.org/mdosch/go-sendxmpp"
42 +SRC_URI="
43 + https://salsa.debian.org/mdosch/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2
44 + https://tastytea.de/files/gentoo/${P}-vendor.tar.xz
45 +"
46 +S="${WORKDIR}/${PN}-v${PV}"
47 +
48 +LICENSE="BSD-2 BSD MIT"
49 +SLOT="0"
50 +KEYWORDS="~amd64"
51 +
52 +RDEPEND=""
53 +DEPEND="${RDEPEND}"
54 +
55 +src_compile() {
56 + ego build
57 +}
58 +
59 +src_install() {
60 + dobin go-sendxmpp
61 + default
62 +}