~alpine/aports

testing/py_rpi.gpio: new aport v1 PROPOSED

Justin Saunders: 1
 testing/py_rpi.gpio: new aport

 1 files changed, 32 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/aports/patches/2335/mbox | git am -3
Learn more about email & git

[alpine-aports] [PATCH] testing/py_rpi.gpio: new aport Export this patch

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 <justin@jumaka.co.uk>
# Maintainer: Justin Saunders <justin@jumaka.co.uk>
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
---