X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-ye0-f182.google.com (mail-ye0-f182.google.com [209.85.213.182]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id E6DAFDC0075 for ; Mon, 9 Sep 2013 12:49:47 +0000 (UTC) Received: by mail-ye0-f182.google.com with SMTP id l10so1666989yen.41 for ; Mon, 09 Sep 2013 10:59:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=yKYnz1pT1vRGVov1K0XYl9pwaPH3+hj26sV77X/Kidc=; b=SjBg4fy2YzA4O+xkPuh0OegfCiZu7E1x0XHXjK9E5vGmnPTqMjvljQdiXelLcKAIEy TzZ3iXngHEvLfYK4akL13u3blPPo6JnYU8yU+zZjn4qYxG+CbW1xJS8hA9t+dor7wFjK /gkJIAnVlpjB2Er7F+Ra9Cgcmfh3P2bgZ4zOa3DzXpGnY6aEU6RyWXm9G4wgS+LSiy1i FWhNIxRgMGEd9EIib9u0vPzkcTQGdJQnSWRxGLK/Sgrl9QEYcUmcmT8kkuhSch4TtkuY 2EYEuiVx5Cq6uEIB7yzXq9YjF2Wp7XVbvIPA6iiJ6APQlqbzIQ2JzjtPMJZUAVQpWPlK 9dJA== X-Received: by 10.236.176.67 with SMTP id a43mr1682267yhm.68.1378749551811; Mon, 09 Sep 2013 10:59:11 -0700 (PDT) Received: from alpine-dev.mezocliq.com ([38.122.241.27]) by mx.google.com with ESMTPSA id f67sm18906461yhi.10.1969.12.31.16.00.00 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 09 Sep 2013 10:59:11 -0700 (PDT) From: Paul Kilar To: alpine-devel@lists.alpinelinux.org Cc: Paul Kilar Subject: [alpine-devel] [PATCH] testing/py-bottle: new aport http://bottlepy.org/ Fast and simple WSGI-framework for small web-applications. Date: Mon, 9 Sep 2013 13:58:49 -0400 Message-Id: <1378749529-5888-1-git-send-email-pkilar@gmail.com> X-Mailer: git-send-email 1.8.2.3 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/py-bottle/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 testing/py-bottle/APKBUILD diff --git a/testing/py-bottle/APKBUILD b/testing/py-bottle/APKBUILD new file mode 100644 index 0000000..d299e62 --- /dev/null +++ b/testing/py-bottle/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Paul Kilar +# Maintainer: Paul Kilar +pkgname=py-bottle +pkgver='0.11.6' +pkgrel=0 +pkgdesc="Bottle is a fast, simple and lightweight WSGI micro web-framework for Python." +url="http://bottlepy.org/" +arch="noarch" +license="MIT" +depends="python" +depends_dev="" +makedepends="" +install="" +subpackages="" +source="https://pypi.python.org/packages/source/b/bottle/bottle-$pkgver.tar.gz" +_builddir="$srcdir"/bottle-$pkgver + +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" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} +md5sums="0bafdc4e13ea2b1a3bddf36b5af108c4 bottle-0.11.6.tar.gz" +sha256sums="2e63802cbe6a21537e35d92ec3c80a1e302dc619d169efe6a212cab9f48e7b29 bottle-0.11.6.tar.gz" +sha512sums="511748cee1694db9ec04f5f49cf5d44d273f6424733532d4558acc546b4a44a1462433ca9483bf59235b48318b20289e9ae8f8c5d1dc4379da4a86c03848f922 bottle-0.11.6.tar.gz" -- 1.8.2.3 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---