Received: from out0.migadu.com (out0.migadu.com [94.23.1.103]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 0E484780787 for <~alpine/aports@lists.alpinelinux.org>; Tue, 8 Feb 2022 14:08:47 +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=cmpwn.com; s=key1; t=1644328965; 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=lt4aVJoxFJ8eyTq08he4TDkhNdUDjSgrW4Da3T/Tzvo=; b=lo8hqR1H8eMaLqtlA5feyXVYNeqsDfiQe4dX6Dl7ShoQs4MdHe2ZcrCpg3vHb9WCpl/C0W V8R/2kr75LyursSnOQgBgwYY5OHEALP18Iu35+aMg7/ija0LVZutwwWMYNEaAnBAwS7sE9 MdbnJs3NKu0ttqJ2unG8KaGrgwUWiBDmpVDMgNEwJfIIcFp8hoCwoS98JzYdkv/sZj01gX OA4SFT6RxRl+PuWjXhilNeNkb6MlpJefyxfGYhHUrfLANPvG+fzJ4lKNRZzVQlKzvNZBGX F+wGfcw6PrMy4YNE89rFPKgvWUq37DzeEusLty0b0qPhCDYK701FKggUVPKVsQ== From: Drew DeVault To: ~alpine/aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [PATCH] testing/chathistorysync: new aport Date: Tue, 8 Feb 2022 15:02:40 +0100 Message-Id: <20220208140240.17856-1-sir@cmpwn.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: cmpwn.com --- testing/chathistorysync/APKBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 testing/chathistorysync/APKBUILD diff --git a/testing/chathistorysync/APKBUILD b/testing/chathistorysync/APKBUILD new file mode 100644 index 0000000000..f5d152415b --- /dev/null +++ b/testing/chathistorysync/APKBUILD @@ -0,0 +1,30 @@ +# Maintainer: Drew DeVault +pkgname=chathistorysync +pkgver=0.1.0 +pkgrel=0 +pkgdesc="A tool for syncing IRC logs via the CHATHISTORY extension" +url="https://sr.ht/~emersion/chathistorysync" +arch="all" +license="AGPL-3.0-only" +makedepends="go scdoc" +source=" + $pkgname-$pkgver.tar.gz::https://git.sr.ht/~emersion/chathistorysync/archive/v$pkgver.tar.gz +" +subpackages="$pkgname-doc" +builddir="$srcdir/$pkgname-v$pkgver" + +build() { + make +} + +check() { + go test ./... +} + +package() { + make install PREFIX=/usr DESTDIR="$pkgdir" +} + +sha512sums=" +94a98b5f3334cb32ea4efe53c7bb5d06b9406e16c0b27bc6437b65a32f4c490509cccb50dfad6bd38e8beccb0e8fc08ddc31f45897ac18f0d7e299924bc22dbe chathistorysync-0.1.0.tar.gz +" -- 2.35.1