From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 3A170E00CCC; Thu, 7 Jan 2016 07:14:19 -0800 (PST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, RDNS_NONE,T_DKIM_INVALID autolearn=no version=3.3.1 X-Spam-HAM-Report: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] * 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily * valid * 0.8 RDNS_NONE Delivered to internal network by a host with no rDNS * 0.0 T_DKIM_INVALID DKIM-Signature header exists but is not valid Received: from anavi.org (unknown [91.215.217.29]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id E9344E0073D for ; Thu, 7 Jan 2016 07:14:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=anavi.org; s=default; h=Message-ID:References:In-Reply-To:Subject:Cc:To:From:Date:Content-Transfer-Encoding:Content-Type:MIME-Version; bh=jXPU27gyDtyO60NybHS4a1mpdTTjZwSWn54GeMUNuqg=; b=D5GSEUpnsInk3HR5sl7DEy2kZ8lE8Pnfg8W8/aH9lQjXUfp/Q7NVfSriG78uxNvQdDi/m4AIIa6DAVLh8buoO3yWHaUKsDSMRn79USlsjsKjORSwGxOVfKnaqbXu1b82QTToDMKG4YDxOUnMHLYNgrm1FBFybw27sDfj3A08J/s=; Received: from localhost ([::1]:54777 helo=voyager.icnhost.net) by voyager.icnhost.net with esmtpa (Exim 4.85) (envelope-from ) id 1aHCGS-0007mV-7X; Thu, 07 Jan 2016 17:14:12 +0200 MIME-Version: 1.0 Date: Thu, 07 Jan 2016 17:14:12 +0200 From: Leon Anavi To: Khem Raj , andrei@gherzan.ro In-Reply-To: References: <1450644797-13141-1-git-send-email-leon@anavi.org> <1450644797-13141-2-git-send-email-leon@anavi.org> <7d44aa926279b2629e6fce972f925346@anavi.org> Message-ID: <1fe3b09d79dedc193011bd15e47495b2@anavi.org> X-Sender: leon@anavi.org User-Agent: Roundcube Webmail/1.0.5 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - voyager.icnhost.net X-AntiAbuse: Original Domain - yoctoproject.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - anavi.org X-Get-Message-Sender-Via: voyager.icnhost.net: authenticated_id: leon@anavi.org X-Source: X-Source-Args: X-Source-Dir: Cc: yocto@yoctoproject.org Subject: Re: [meta-raspberrypi][PATCH 2/2] python-sense-hat: Add recipe to support Raspberry Pi Sense HAT X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2016 15:14:19 -0000 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Hi, Kind reminder that I am still waiting for feedback regarding these two patches for Raspberry Pi Sense HAT. Thanks, Leon On 2015-12-21 00:19, Leon Anavi wrote: > On 2015-12-21 00:01, Khem Raj wrote: >> On Sun, Dec 20, 2015 at 2:00 PM, Leon Anavi wrote: >>> On 2015-12-20 23:43, Khem Raj wrote: >>>> >>>> On Sun, Dec 20, 2015 at 12:53 PM, Leon Anavi wrote: >>>>> >>>>> Python module to control the Raspberry Pi Sense HAT used in >>>>> the Astro Pi mission. This recipe provides the officially >>>>> supported library for the Sense HAT with access to all of the >>>>> on-board sensors and the LED matrix. >>>>> >>>>> Signed-off-by: Leon Anavi >>>>> --- >>>>> recipes-devtools/python/python-sense-hat_2.1.0.bb | 31 >>>>> +++++++++++++++++++++++ >>>>> 1 file changed, 31 insertions(+) >>>>> create mode 100644 >>>>> recipes-devtools/python/python-sense-hat_2.1.0.bb >>>>> >>>>> diff --git a/recipes-devtools/python/python-sense-hat_2.1.0.bb >>>>> b/recipes-devtools/python/python-sense-hat_2.1.0.bb >>>>> new file mode 100644 >>>>> index 0000000..0665536 >>>>> --- /dev/null >>>>> +++ b/recipes-devtools/python/python-sense-hat_2.1.0.bb >>>>> @@ -0,0 +1,31 @@ >>>>> +SUMMARY = "Python module to control the Raspberry Pi Sense HAT >>>>> used in >>>>> the Astro Pi mission" >>>>> +HOMEPAGE = "https://github.com/RPi-Distro/python-sense-hat" >>>>> +SECTION = "devel/python" >>>>> +LICENSE = "BSD" >>>>> +LIC_FILES_CHKSUM = >>>>> "file://LICENCE.txt;md5=d80fe312e1ff5fbd97369b093bf21cda" >>>>> + >>>>> +SRCNAME = "sense-hat" >>>>> + >>>>> +SRC_URI = >>>>> "https://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" >>>>> + >>>>> +SRC_URI[md5sum] = "71217f15ea963040f06e2f50722186ca" >>>>> +SRC_URI[sha256sum] = >>>>> "c6c76707c0ea514e4b0f1f96f1b5b79755875891aae037df7434b6aad7b9dbca" >>>>> + >>>>> +S = "${WORKDIR}/${SRCNAME}-${PV}" >>>>> + >>>>> +inherit setuptools >>>>> + >>>>> +DEPENDS_${PN} += " \ >>>> >>>> >>>> Just use DEPENDS here and remove -dev entries below, its implied >>>> with >>>> DEPENDS >>> >>> >>> Done. I resubmitted this patch again. Thank you for the help. >>> >> >> Looks good now. Thx > > It was my pleasure. Thanks again for the feedback. > > Btw a quick and easy way to test the result on Raspberry Pi with a > Sense HAT: > > wget > https://github.com/leon-anavi/python-sense-hat-scripts/archive/master.zip > unzip master.zip > cd python-sense-hat-scripts-master/ > python python-sense-hat-text.py > > If everything is OK you should see red text "Hello" scrolling on the > LED matrix of the Sense HAT. > > Best regards, > Leon > >> >>> Best regards, Leon >>> >>> >>>> >>>>> + jpeg \ >>>>> + jpeg-dev \ >>>>> + zlib \ >>>>> + zlib-dev \ >>>>> + freetype \ >>>>> + freetype-dev \ >>>>> + " >>>>> + >>>>> +RDEPENDS_${PN} += " \ >>>>> + python-numpy \ >>>>> + python-rtimu \ >>>>> + python-imaging \ >>>>> + " >>>>> -- >>>>> 2.5.0 >>>>> >>>>> -- >>>>> _______________________________________________ >>>>> yocto mailing list >>>>> yocto@yoctoproject.org >>>>> https://lists.yoctoproject.org/listinfo/yocto >>> >>> >>> -- >>> http://anavi.org/ -- http://anavi.org/