X-Original-To: alpine-aports@lists.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail-pd0-f176.google.com (mail-pd0-f176.google.com [209.85.192.176]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id B8207DC00AF for ; Wed, 21 Jan 2015 23:06:58 +0000 (UTC) Received: by mail-pd0-f176.google.com with SMTP id y10so12999160pdj.7 for ; Wed, 21 Jan 2015 15:06:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=AxRQLLixVSG1H4XDZAy146lRW81XyjJKH2pDn0ywknM=; b=ZlW0qUIzsRbFPpEg4tpMRW3DBidkYA8DyMIX8BUxdw6znrneyx9MemXgBLkX5GXg0K 6SyAJbEKpzbvMx1CWQiZIKxXGpEi4GF2eijUaciff4N+7J5xnctpS7EmrShISkMofY4U WhWr6HHGI5UMO9letq42DxvSsYAK8NLf2juPYkgAs5hc2iyNYmOOOGg5FEOqGjT/f0Me H/Bddq5RWATnS7WybWART5Di5Wrfbnm4KAQp0w6IPWE/rE6gJ4+bxID7ZQMH6jvXabl3 WlfOtlQX1bAavBKNEISNM2g+9D6uGNZGkL7/cN9hEWBocSxsTT/YrMt/dKPv2Cr7N99l zrkA== X-Received: by 10.68.219.231 with SMTP id pr7mr55586751pbc.73.1421881617995; Wed, 21 Jan 2015 15:06:57 -0800 (PST) Received: from localhost ([74.82.134.59]) by mx.google.com with ESMTPSA id rx1sm6897467pbc.86.2015.01.21.15.06.56 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 21 Jan 2015 15:06:57 -0800 (PST) From: systmkor To: alpine-aports@lists.alpinelinux.org Cc: systmkor@gmail.com Subject: [alpine-aports] [PATCH] testing/pep8: new aport Date: Wed, 21 Jan 2015 15:06:55 -0800 Message-Id: <1421881615-17997-1-git-send-email-systmkor@gmail.com> X-Mailer: git-send-email 2.2.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: pep8 is a tool to check your Python code against some of the style conventions in PEP 8. http://github.com/jcrocholl/pep8/ --- testing/pep8/APKBUILD | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 testing/pep8/APKBUILD diff --git a/testing/pep8/APKBUILD b/testing/pep8/APKBUILD new file mode 100644 index 0000000..37c46be --- /dev/null +++ b/testing/pep8/APKBUILD @@ -0,0 +1,43 @@ +# Contributor: Orion +# Maintainer: Orion +# Reference +# https://www.archlinux.org/packages/community/any/pep8/ +# https://pypi.python.org/pypi/pep8 +pkgname=pep8 +pkgver=1.5.7 +pkgrel=0 +pkgdesc="pep8 is a tool to check your Python code against some of the style conventions in PEP 8." +url="http://github.com/jcrocholl/pep8/" +arch="noarch" +license="custom:Expat" +depends="python py-setuptools" +depends_dev="" +makedepends="" +install="" +subpackages="" +source="https://pypi.python.org/packages/source/p/pep8/${pkgname}-${pkgver}.tar.gz" + +_builddir="$srcdir/$pkgname-$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="f6adbdd69365ecca20513c709f9b7c93 pep8-1.5.7.tar.gz" +sha256sums="15b42131b25f376165d195fe4e17b0a28311182aaf9330d5eb575bbeda5a6989 pep8-1.5.7.tar.gz" +sha512sums="ae5cc6cc47d71e90059fec0c89f5e8e7b71b08d185c95b0c8cf0aa9acaee4841d0cfc617fb1ca6d7af7f4721480a1992b6178dc845d80dfe87fe3792d515a3eb pep8-1.5.7.tar.gz" -- 2.2.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---