X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-pf1-f179.google.com (mail-pf1-f179.google.com [209.85.210.179]) by lists.alpinelinux.org (Postfix) with ESMTP id 61807F84DFB for ; Mon, 18 Mar 2019 07:05:35 +0000 (UTC) Received: by mail-pf1-f179.google.com with SMTP id p10so3829133pff.3 for ; Mon, 18 Mar 2019 00:05:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mforney-org.20150623.gappssmtp.com; s=20150623; h=from:to:subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; bh=JM1EO4Yg+ixQJ0ixcyJkY7m48z4oO9z1g4n3UN9jruM=; b=vYLVC3fhfwttxovyMn2JKtVzwN/QYq/xgVUXqoKrVQnR2r+SCkEJ7M0RIR80B2uRCC 4NGzWrxgbrmvFVb+DebM6owaXXP0gVuqS61D2g+hREwis3hB3VNpbCOARbT+idqQ0/Rk YThj5AOhR7StgNltts0VreN1E/B2XSe0xuddKN3uF5+vtZR3D/Dzlnkzipdt+vSB0vLW RsPVHZltimXOGrr1UKRcFNaVfE4/zJd5P3MqaXGXiWKgSZTQvJVAg3tS7QPGzptg05vC JPpDQRCx5Pn5jFm+83ppKi/GTO355q/H4Ty04Xb33yl4ipBwroYyMQ1U3e0wDo5YHAIS iVpA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=JM1EO4Yg+ixQJ0ixcyJkY7m48z4oO9z1g4n3UN9jruM=; b=U7HVyxoscDoWGZwyviOBsMhzJx/e6SebY/DSiO2cKMzyQO4wp3u7JLT1tDk3PmZT5O GkGsufCvOih2NfcWWnFP1s4lAl65PElZz08C1r/HoeywgKQ8Gal7GZJWU2lx3Gx5IH2X WxUE2MaWKBSVJ8350EjBSgvjxodl1zKnfJqWspQYxqOv5i4l7Nd+W2rkp+LrNsqWSG6c 82eX1EyQgwM+8YOZJ1xUe0oroUdQ6redM8nVAkbNZ861PfuLgr23Tvw7BvykAQGBpk6h wxSK7MaXsH1Wx3KXlSOsx/V6uyRxerkOncb6lNeQVU8/nB7U0OtWuFNAalSqY3aaF1Z9 M0Sg== X-Gm-Message-State: APjAAAVEo+7YkYeQ2Of0UQqHou4YcAArzI8QTU2X4fvHdxa74J3VJ7jU /MZBlnJM6eQkoJksl+gtz1vrp9ubEVAZUQ== X-Google-Smtp-Source: APXvYqxz/GqiGrmuUchNv19BfJrVLPJMFxa/5MbI2hTZqwYkcu5D3GqpVEu8dSF2caSuz2olPd+7pQ== X-Received: by 2002:a17:902:b60c:: with SMTP id b12mr18067804pls.261.1552892734643; Mon, 18 Mar 2019 00:05:34 -0700 (PDT) Received: from localhost ([2601:647:5180:35d7::5183]) by smtp.gmail.com with ESMTPSA id g6sm12406118pgq.54.2019.03.18.00.05.33 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 18 Mar 2019 00:05:34 -0700 (PDT) From: Michael Forney To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 2/2] testing/samurai: use upstream provided source archive Date: Mon, 18 Mar 2019 00:05:09 -0700 Message-Id: <20190318070509.21398-2-mforney@mforney.org> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20190318070509.21398-1-mforney@mforney.org> References: <20190318070509.21398-1-mforney@mforney.org> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit The GitHub tag archives are not necessarily stable, so the upstream provided one should be preferred. --- testing/samurai/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/samurai/APKBUILD b/testing/samurai/APKBUILD index befb1c1772..51a9a3239f 100644 --- a/testing/samurai/APKBUILD +++ b/testing/samurai/APKBUILD @@ -2,14 +2,14 @@ # Maintainer: Drew DeVault pkgname=samurai pkgver=0.6 -pkgrel=1 +pkgrel=2 pkgdesc="ninja-compatible build tool written in C" url="https://github.com/michaelforney/samurai" arch="all" license="Apache-2.0" options="!check" # No test suite. subpackages="$pkgname-doc" -source="$pkgname-$pkgver.tar.gz::https://github.com/michaelforney/$pkgname/archive/$pkgver.tar.gz" +source="https://github.com/michaelforney/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz" builddir="$srcdir/$pkgname-$pkgver" build() { -- 2.19.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---