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 527AD5C4FC5 for ; Wed, 22 Feb 2017 17:08:32 +0000 (GMT) Received: from piha.riseup.net (unknown [10.0.1.163]) (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 0AA5C1A2EE4 for ; Wed, 22 Feb 2017 17:08:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1487783312; bh=1BouxhqxHHEfcpwQQI3qRNoUGC7SIp7cYrRa7yp3vts=; h=Date:From:To:Subject:References:In-Reply-To:From; b=hXcmzlFTsq327Lr7eZHCJSpCF0BAdbqZXKBDDelyJiP9zLLKt+km7OOcti8qn5q8q 3TlxLMuNGPIpSAGAIK4mTLbqIm1CRM9QO2m3XTUye4WePF2FvpaVUh3x22LNnPz37j JtOebPwu+KCbRKFfsoruPD4p44SSOk1XBDRdGq10= Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: pickfire) with ESMTPSA id 16EC31C046B Date: Thu, 23 Feb 2017 01:08:28 +0800 From: Ivan Tham To: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH] testing/py3-you-get: new aport Message-ID: <20170222170828.GA29856@riseup.net> References: <20170222170710.1907-1-pickfire@riseup.net> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Disposition: inline In-Reply-To: <20170222170710.1907-1-pickfire@riseup.net> Ops, sorry. I should have rename the package to `you-get`. On Thu, Feb 23, 2017 at 01:07:10AM +0800, Ivan Tham wrote: >https://you-get.org/ >Tiny command line utility to download media contents >--- > testing/py3-you-get/APKBUILD | 27 +++++++++++++++++++++++++++ > 1 file changed, 27 insertions(+) > create mode 100644 testing/py3-you-get/APKBUILD > >diff --git a/testing/py3-you-get/APKBUILD b/testing/py3-you-get/APKBUILD >new file mode 100644 >index 0000000000..d26b011532 >--- /dev/null >+++ b/testing/py3-you-get/APKBUILD >@@ -0,0 +1,27 @@ >+# Contributor: Ivan Tham >+# Maintainer: Ivan Tham >+pkgname=py3-you-get >+_pkgname=you-get >+pkgver=0.4.652 >+pkgrel=0 >+pkgdesc="Tiny command line utility to download media contents" >+url="https://you-get.org/" >+arch="noarch" >+license="MIT" >+depends="python3" >+makedepends="python3-dev" >+subpackages="" >+source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" >+builddir="$srcdir/"$_pkgname-$pkgver >+ >+build() { >+ cd "$builddir" >+ python3 setup.py build || return 1 >+} >+ >+package() { >+ cd "$builddir" >+ python3 setup.py install --prefix=/usr --root="$pkgdir" || return 1 >+} >+ >+sha512sums="b3c736915492d9d921ec6866edb35acb12b5fb283663db8ad3d87325d06354697196ffdffef13291a709bd8bf5b5db6a61ee6288c083f0939d6ac8637b014ab4 you-get-0.4.652.tar.gz" >-- >2.11.1 > > > >--- >Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org >Help: alpine-aports+help@lists.alpinelinux.org >--- > --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---