net-im/go-sendxmpp: add 0.5.5

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo@tastytea.de>
This commit is contained in:
Ronny (tastytea) Gutbrod
2022-10-20 14:39:31 +02:00
parent 576b93e95c
commit 44367368d6
2 changed files with 29 additions and 0 deletions

View File

@@ -2,3 +2,5 @@ DIST go-sendxmpp-0.5.1-vendor.tar.xz 1237104 BLAKE2B 76896da8365f3213518fc6fee40
DIST go-sendxmpp-0.5.1.tar.bz2 26585 BLAKE2B 7a016b867cb5ece929fcab9aa2d828c53e1d113082ca3626637f7d8fedf14df456b01910c815dddaee66f13f3a36fa2c828873d1745af204c08e894754315c0e SHA512 470f54ef32946f22914af23b96327e30cb6f6bb4b7d76a955b8512ac818973d77babba6421b1e55a3fa80c9094734dc7ab612ff36e8bad97afc8c45814b97fa9
DIST go-sendxmpp-0.5.4-vendor.tar.xz 1354536 BLAKE2B 198612de41ff68154ad9128134c7491fe6e880fa76b6dc3bea45acdc8b27e48abb5d6b89ac02dab03ed55cf2654c5c2afaa2a88d5b99720acf03244690159ecd SHA512 87fb916ae87d06bcb58964e6b0abbea3548b35a5f399d004026228273fe9ff3b94f77747ecf5bb5564f400c410041ce4079346c161bc0797ebb4185dc74116ee
DIST go-sendxmpp-0.5.4.tar.bz2 28328 BLAKE2B fabb5ee22f5816c29efb2ab01d064024c4cd3d7dded9498e8f5d856a151723b883cb92ff65994133de220881ca18a1da77b512b2dcd140bcec4f4c47d2523b2e SHA512 270c49a48da12f4f997d83edb6cd71d752a599fef0b1604af57cca12753b890701f028ed1e9e0425ed436d0ee47f6bce00d3e0b5ac8079624dbf5224066b000c
DIST go-sendxmpp-0.5.5-vendor.tar.xz 1352944 BLAKE2B 5bfd87286989b73f59e24576d550daaaa5e305c6066f9bfcc319d4e54c756ffd170bf3313159e1c8bb9a2fc73978057830837ff7fb997095e3bdcea2b323b26b SHA512 bc10809b90e69ebf8efb716b362cd249ac460b40e910242fc4cc06bf08b061e88d6177121b269fa87dd616c66da9dadc72391d1de576b344a09576f5e01867b6
DIST go-sendxmpp-0.5.5.tar.bz2 28743 BLAKE2B a25f569486e130a055f576de12b12ac0d426a22a87da77ae2cfb97a4189cd89359fc00ba0b55a3bcd80c702c3fda705da46817277cebc09f0dd2d6178a044dd9 SHA512 30f8dff625ffa9be83ffcbd0d4a0f5ea28476894a61d7ac7bee3757447a064ed1d73175aaa464d5403bb4f28aead63b87bec2f79815f38f399a17646dff56448

View File

@@ -0,0 +1,27 @@
# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="A little tool to send messages to an XMPP contact or MUC"
HOMEPAGE="https://salsa.debian.org/mdosch/go-sendxmpp"
SRC_URI="
https://salsa.debian.org/mdosch/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2
https://tastytea.de/files/gentoo/${P}-vendor.tar.xz
"
S="${WORKDIR}/${PN}-v${PV}"
LICENSE="BSD-2 BSD MIT MIT-with-advertising"
SLOT="0"
KEYWORDS="~amd64"
src_compile() {
ego build -buildmode=pie
}
src_install() {
dobin go-sendxmpp
default
}