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 DB2DBDC0524 for ; Sun, 14 Feb 2016 21:40:57 +0000 (UTC) Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 538CEDC051C for ; Sun, 14 Feb 2016 21:40:54 +0000 (UTC) Received: by mail-wm0-f48.google.com with SMTP id g62so85565192wme.0 for ; Sun, 14 Feb 2016 13:40:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=HLZNgkhTqQLTcNR2Bedklnbwn9RQt3NDO3hikPuMUa8=; b=bZG+vcCKgcWIt96ZktrIwLS4eLisdHtsUemOLYRP2KMvz4bakf8XaciDOLIj7Vjpat iT/IpEG2sEhrCD7XlmNHBY6FPLqzk7URepmH5S9BSX/5V99hLQUtYG+eTIJ2juB92nR7 BBJ3SyDXnq+O1ToJCqc5FgjnVYUu2h6lnHht7Ei2sVSCMc3fZ1ERdLf07gViYm09jJHQ MWnXpfF1yo2NAPxFXAyLfvXPhDik5q3NGxKWhlmVFvWMWfFWhppM2U9/2jj49hPi4c4+ QYDOWTxMW26k35eK02Ri4Ma6LHsb/li35hoJldM6EPW1PU5NVcXyhG6Lb/QVVA5JOj+/ 37dw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:to:subject:message-id :mime-version:content-type:content-disposition:user-agent; bh=HLZNgkhTqQLTcNR2Bedklnbwn9RQt3NDO3hikPuMUa8=; b=OBv8f1LraK5AbQgg71tVnSQjwfDTDr/ZWQKdUpZUIZ4eV8mxiUB2c896mtO9L3RKCP /zxRFuaAzV/JPiyCASVf6OTDxoc7UDq1Bh2WTd9mZJYRObwZrfRlM55Im+wobVUwIMtn ZCLVDQD2MuFkeNBA8XthNMtYIUKO8y6gWNnDZqJsxoxgP9vpVa7Vx6d1qTcbCZWgesI+ JYGccelZKyJxx2vyL5wac718HRNtgF+A0o/Cq3ND214Ao8e7ezY2X+EmCqh9iff9IJYM 6bZSE4nThMEIN5FZ5c9lxU4mqR0vY8OIYxAXO7LIOYK8SpOVSmWBzSVFcKk83iJiFsQy PRtQ== X-Gm-Message-State: AG10YOSocjIZOF9KdG1hMArhptDUEPXn3sFlDOjXvyYmSwmL1Y4x/oBq1A7X4jC/rA4WrA== X-Received: by 10.194.91.233 with SMTP id ch9mr12621757wjb.121.1455486052179; Sun, 14 Feb 2016 13:40:52 -0800 (PST) Received: from modela.lan (j-and-m-saunders.demon.co.uk. [80.176.248.133]) by smtp.gmail.com with ESMTPSA id w62sm12613869wmg.21.2016.02.14.13.40.50 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 14 Feb 2016 13:40:51 -0800 (PST) Sender: Justin Saunders Date: Sun, 14 Feb 2016 21:40:47 +0000 From: Justin Saunders To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] testing/py_rpi.gpio: new aport Message-ID: <20160214214047.GA1552@modela.lan> 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=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) X-Virus-Scanned: ClamAV using ClamSMTP https://pypi.python.org/pypi/RPi.GPIO A python module to control Raspberry Pi GPIO channels --- testing/py-rpi.gpio/APKBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 testing/py-rpi.gpio/APKBUILD diff --git a/testing/py-rpi.gpio/APKBUILD b/testing/py-rpi.gpio/APKBUILD new file mode 100644 index 0000000..7844e7a --- /dev/null +++ b/testing/py-rpi.gpio/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Justin Saunders +# Maintainer: Justin Saunders +pkgname=py-rpi.gpio +_pkg_real=RPi.GPIO +pkgver=0.6.1 +pkgrel=0 +pkgdesc="A python module to control Raspberry Pi GPIO channels" +url="http://packages.python.org/pypi/RPi.GPIO" +arch="armhf" +license="PSF" +pydepends="" +pymakedepends="" +depends="python $pydepends" +makedepends="python-dev $pymakedepends" +source="https://pypi.python.org/packages/source/R/RPi.GPIO/RPi.GPIO-0.6.1.tar.gz" + +_builddir="$srcdir/$_pkg_real-$pkgver" +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install \ + --prefix=/usr \ + --root="$pkgdir" \ + || return 1 +} +md5sums="254d0443a436eb241367c487274e7197 RPi.GPIO-0.6.1.tar.gz" +sha256sums="54e5fb06d9ea1a1389a497fb5a06dfa950c86303b0f4ba89b68c55999d1df064 RPi.GPIO-0.6.1.tar.gz" +sha512sums="8a66a5c6283b79aa6cc5bbf16507c6c93ba6c53b84b6b67d2f133572ce76cb2c8ba4b0957a4fc131ff920e0b34b09aa913d0c9401dc1bfaf76be8235b4f33687 RPi.GPIO-0.6.1.tar.gz" -- 2.6.4 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---