Received: from mout-p-201.mailbox.org (mout-p-201.mailbox.org [80.241.56.171]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 35425782B9E for ; Thu, 1 Apr 2021 21:49:54 +0000 (UTC) Received: from smtp2.mailbox.org (smtp2.mailbox.org [IPv6:2001:67c:2050:105:465:1:2:0]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-201.mailbox.org (Postfix) with ESMTPS id 4FBH0L0yXQzQjm2; Thu, 1 Apr 2021 23:49:54 +0200 (CEST) X-Virus-Scanned: amavisd-new at heinlein-support.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fmac.xyz; s=MBO0001; t=1617313793; 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=K9fb6+7zsqjJ089InQuHTvuM7UpUBEpxjhPAC61M73c=; b=pQCKia2E+XkS5UuAy2dshmZqPM69+66mu5soO5WlRSj/VfWYaZBcqxrs+y2YxL4+Xh65Jk tBXYVIKwfQB8E8sTYtvGxyMmMkk6Vf18h7cpxz4/3mxDVJR6IJsOligDnCTD2hYuH66j7F FqeDqGGX9mZP8SyGn9KocaZS/iE6Uiv7Jh8ftGoP75WP/XszOodXBlWelHCJ0pCK49v8+j i7KbBEPGh35izuFa6XK+HkhSQWE/Jo+paS+OXhnWFf5Xybff8P1w2sfYy3mE227bobHHUA P/KoHZGpTwHIzMjprqEK6Z8TGNzADScBIPno6139ZD3Qo2q7NP49FBXdhLQo2A== Received: from smtp2.mailbox.org ([80.241.60.241]) by gerste.heinlein-support.de (gerste.heinlein-support.de [91.198.250.173]) (amavisd-new, port 10030) with ESMTP id 6kLnk7rpp2B4; Thu, 1 Apr 2021 23:49:48 +0200 (CEST) From: Francesco Camuffo To: alpine-aports@lists.alpinelinux.org Cc: Francesco Camuffo Subject: [PATCH] testing/up: new aport Date: Thu, 1 Apr 2021 23:49:37 +0200 Message-Id: <20210401214937.10685-1-dev@fmac.xyz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-MBO-SPAM-Probability: X-Rspamd-Score: -6.64 / 15.00 / 15.00 X-Rspamd-Queue-Id: 0655517C4 X-Rspamd-UID: 6b972b https://github.com/akavel/up Ultimate Plumber is a tool for writing Linux pipes with instant live preview --- testing/up/APKBUILD | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 testing/up/APKBUILD diff --git a/testing/up/APKBUILD b/testing/up/APKBUILD new file mode 100644 index 0000000000..bb9a23b933 --- /dev/null +++ b/testing/up/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Francesco Camuffo +# Maintainer: Francesco Camuffo +pkgname=up +pkgver=0.4 +pkgrel=0 +pkgdesc="Ultimate Plumber is a tool for writing Linux pipes with instant live preview" +url="https://github.com/akavel/up" +arch="all" +license="Apache-2.0" +makedepends="go" +source="$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz" + +export GOPATH="$srcdir" +export GO111MODULES=on + +build() { + go build -v -o bin/$pkgname +} + +check() { + go test +} + +package() { + install -Dm755 bin/$pkgname "$pkgdir"/usr/bin/$pkgname +} + +cleanup_srcdir() { + go clean -modcache + default_cleanup_srcdir +} + +sha512sums="f9032decec6f2288a50c91fbc25d76fb572e8942f035382067fdad79dd319fb42251d6b0df0d65d1eb9a9632b8431122951a4509c06dae759def3075014dcdd0 up-0.4.tar.gz" -- 2.30.2