Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 39598782BA2 for <~alpine/aports@lists.alpinelinux.org>; Wed, 22 Sep 2021 11:39:29 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=amk.ie; s=key1; t=1632310769; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=/3R/5v2mgOYdfAVIGBY6Pljraio6WtGkLi/u/3CU93c=; b=p9uQcFFVI0gvgaoa3QVgJFaoFY26PI5VY1rYH8qEmUD0yjfQ+5GXJK4M/TCZnyYEQ0pBDc pEIHTLPBELCfa4CgLDlds0kMRGhUgowkRYNwGXHJRJdACnnYfokDIC91ce1FIkqzZI+w74 x3bCDF6WNweKBOSwF3D6b8O9MmcDKRddneIDVHwUxag2BNLVh9eTG56Mz0oCrIMt5gDrpp /Whj6jsgCAwcMDli5aeX+d/aDseKPs7MERTYLlZQCtRDZeG57H7Udj/aTLUJlHjat84rnG IMvYpLy+xxy155pp7DtmcxH+dUahwPvE6+fLk8Cl7inBwOq3QQ0M9U7fuQUkGw== From: Alex McGrath To: ~alpine/aports@lists.alpinelinux.org Cc: Alex McGrath Subject: [PATCH] community/gonic: upgrade to 0.13.1 Date: Wed, 22 Sep 2021 12:39:20 +0100 Message-Id: <20210922113920.16673-1-amk@amk.ie> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: amk@amk.ie --- This also removes the dependency on binutils-gold so it can also hopefully build on riscv community/gonic/APKBUILD | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/community/gonic/APKBUILD b/community/gonic/APKBUILD index 9d85d9f211..f3fde04949 100644 --- a/community/gonic/APKBUILD +++ b/community/gonic/APKBUILD @@ -1,16 +1,16 @@ # Contributor: Alex McGrath # Maintainer: Alex McGrath pkgname=gonic -pkgver=0.12.3 -pkgrel=3 +pkgver=0.13.1 +pkgrel=0 + pkgdesc="Subsonic compatible music streaming server" url="https://github.com/sentriz/gonic" -# riscv64 blocked by binutils-gold -arch="all !riscv64" +arch="all" license="GPL-3.0-or-later" subpackages="$pkgname-openrc" depends="ffmpeg sqlite" -makedepends="binutils-gold go alsa-lib-dev taglib-dev zlib-dev" +makedepends="go alsa-lib-dev taglib-dev zlib-dev" install="$pkgname.pre-install" source="gonic-$pkgver.tar.gz::https://github.com/sentriz/gonic/archive/v$pkgver.tar.gz gonic.initd @@ -20,7 +20,7 @@ export GOPATH="$srcdir" export GO111MODULES=on build() { - ./_do_build_server + go build -o gonic ./cmd/gonic/gonic.go } check() { @@ -44,7 +44,7 @@ cleanup_srcdir() { sha512sums=" -e12553f532be68c1a343503df0ab8e6923c316f8669afcb7e41aa600a706fbd13f89346e5fffe816c5dd878a07239fbb3c030008aa63055060d28f91dbe78211 gonic-0.12.3.tar.gz +e280142498ec0c636e0a8c0373877b7aaec6fe43d882f16bbad8bf98b1a34f6c6e06a51aa06a507bb1a353d117e40decd241ec1d2c4cfc40d0b8905d352ed388 gonic-0.13.1.tar.gz e8a65612bffd1b62175968cc34a227393364ea6fedd661854bf515cc7306e9266d823544989b671f99beb72b6caf83728fa7c7fd9eedbc85a3e34ea84c1ce269 gonic.initd bce2f839f98e2b66010f14e52265a061644867109e43062672bdf3850de51ab8d7b61ea38d7f223de25cf91105ef441b0c1969afc812763702397ed60c0fba4f gonic.confd " -- 2.33.0