X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 88803DC00A7 for ; Mon, 29 Feb 2016 01:55:02 +0000 (UTC) Received: from mail-qg0-f67.google.com (mail-qg0-f67.google.com [209.85.192.67]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 5123EDC175D for ; Mon, 29 Feb 2016 01:55:02 +0000 (UTC) Received: by mail-qg0-f67.google.com with SMTP id y89so9710677qge.0 for ; Sun, 28 Feb 2016 17:55:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=notcows-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=7Q22IijJwEqZe5nmzeMacfE0/pjlDT/tyVuozce6ox8=; b=Thm0imF/5+X6xCtl0xlTLA0oeVCobLEKkGn194US+T0iGnLea2sZTBQNGk7COo2YGP 8Ru3WbYObhoPyTxhUtqdLU0ckXFybQ3QzX3lkhhf694kic0URjdtGw9Ca+7YC7MGcIu3 oUdneNIiOAQVOArkruWwmOnj+cFoSaOy7NYE7N+okN8WuydnOKX2EX47jeSvgJ7Pqcg/ 7rnSuShnAQBXKQKm37k+ckjKeMkVANprR1MMKiC38QE8o7pwQMKmCIOoWJaR8Fq94r2e 41bDWxfRHpvXSLmIW+iatHOtHQ+R1jl7lRLLiYN+KooFWZrDzjNtwp1eUtbA/fnHcj7l D5fA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=7Q22IijJwEqZe5nmzeMacfE0/pjlDT/tyVuozce6ox8=; b=KKpcRcFItu3MpgPg42jHJpLOqReIwWMJqk8FVXoejG1jXX88s+rjndzgRbjqeXl6ym 1my6PJJ7JrA1KkwNnKWHrHOQGOvCdVkKPHk7vXEdstRJeZkkUvN2maZCobL2tNNj5ojI wgkyquoCRYm9cEDTN/9l5nf0q++tMEjXsPRyFlFAU71qLnXcHw1BUgXXqHeiaXi2VYez Oa+yDLhSmxQj9ixkYS+nYgZKX1r4H0NIrbWIakG/ibORRhApn4ApuzmS88vaU0Iuj5Fd uhpTIk4BiF4AwywadKEd6M8gloesWcR3L4PIhe+d7sjJf8Qwops4JdlHNClTkIY/aqPy GAqw== X-Gm-Message-State: AD7BkJJOCU58I+/KKgfgFwPee9zk5DyRR2DKf7CJ3Zq5uz0KFd3zKRdSdikdxoRoFyVFWw== X-Received: by 10.140.29.116 with SMTP id a107mr16536764qga.45.1456710901699; Sun, 28 Feb 2016 17:55:01 -0800 (PST) Received: from neuromancer.notcows.com (cpe-65-31-52-161.cinci.res.rr.com. [65.31.52.161]) by smtp.gmail.com with ESMTPSA id o203sm9969472qho.15.2016.02.28.17.55.00 (version=TLS1 cipher=AES128-SHA bits=128/128); Sun, 28 Feb 2016 17:55:01 -0800 (PST) From: "Trevor R.H. Clarke" To: alpine-aports@lists.alpinelinux.org Cc: "Trevor R.H. Clarke" Subject: [alpine-aports] [PATCH 2/6] testing/py-affine: new aport Date: Sun, 28 Feb 2016 20:54:49 -0500 Message-Id: <1456710893-45438-2-git-send-email-trevor@notcows.com> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1456710893-45438-1-git-send-email-trevor@notcows.com> References: <1456710893-45438-1-git-send-email-trevor@notcows.com> X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: https://github.com/sgillies/affine Matrices describing affine transformation of the plane. --- testing/py-affine/APKBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 testing/py-affine/APKBUILD diff --git a/testing/py-affine/APKBUILD b/testing/py-affine/APKBUILD new file mode 100644 index 0000000..14969ba --- /dev/null +++ b/testing/py-affine/APKBUILD @@ -0,0 +1,36 @@ +# Contributor: Trevor R.H. Clarke +# Maintainer: Trevor R.H. Clarke +pkgname=py-affine +pkgver="1.2.0" +pkgrel=0 +pkgdesc="Matrices describing affine transformation of the plane." +url="https://github.com/sgillies/affine" +arch="all" +license="MIT" +depends="python" +makedepends="python-dev py-pip" +install="" +subpackages="" +source="" + +_builddir="$srcdir" +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + pip install affine --no-deps --root "$_builddir" +} + +package() { + cd "$_builddir" + mkdir -p "$pkgdir" + cp -r usr "$pkgdir/" +} -- 2.4.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---