X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx1.riseup.net (mx1.riseup.net [198.252.153.129]) by lists.alpinelinux.org (Postfix) with ESMTP id 0EC5E5C5483 for ; Wed, 24 May 2017 14:44:22 +0000 (GMT) Received: from cotinga.riseup.net (unknown [10.0.1.164]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 2B2281A200A for ; Wed, 24 May 2017 14:44:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1495637062; bh=I2rowvNYNgVxlLirktlQZ6De5kiBdGjSG6kSR6Fcong=; h=From:To:Subject:Date:From; b=YcBF1QLGLVGsOWeBddMnqAVA5acSpgRfhj5eWo/9ria8p3MiK+GHzylAVY70Zteql 1h8chmAkLarez298+h+/bD67AwshD/6wtC+aRE+Q4hKKBg2qkpGgyHC7IxCrEMs+Ff GE2i2x0LunBjg3e76Ut/PdVadIYbCf1Y0u+osjAk= Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: pickfire@riseup.net) by (cotinga) with ESMTPSA id 3B31C4F034 From: Ivan Tham To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] testing/you-get: upgrade to 0.4.750 and move from testing Date: Wed, 24 May 2017 22:43:01 +0800 Message-Id: <20170524144301.31610-1-pickfire@riseup.net> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- {testing => community}/you-get/APKBUILD | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) rename {testing => community}/you-get/APKBUILD (70%) diff --git a/testing/you-get/APKBUILD b/community/you-get/APKBUILD similarity index 70% rename from testing/you-get/APKBUILD rename to community/you-get/APKBUILD index 7982c81d3f..430d69e1f7 100644 --- a/testing/you-get/APKBUILD +++ b/community/you-get/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Ivan Tham # Maintainer: Ivan Tham pkgname=you-get -pkgver=0.4.652 +pkgver=0.4.750 pkgrel=0 pkgdesc="Tiny command line utility to download media contents" url="https://you-get.org/" @@ -18,9 +18,14 @@ build() { python3 setup.py build || return 1 } +check() { + cd "$builddir" + python3 setup.py check || return 1 +} + package() { cd "$builddir" python3 setup.py install --prefix=/usr --root="$pkgdir" || return 1 } -sha512sums="b3c736915492d9d921ec6866edb35acb12b5fb283663db8ad3d87325d06354697196ffdffef13291a709bd8bf5b5db6a61ee6288c083f0939d6ac8637b014ab4 you-get-0.4.652.tar.gz" +sha512sums="3d328ecca33d2c2a376056aec22af742922fdfa57eee5a504e8741ba54e3ff8cb3499c2bc6c7689c11a5b2aa4bcbb37d8dc434a116875ff041adaf831e146419 you-get-0.4.750.tar.gz" -- 2.13.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---