From patchwork Thu Oct 29 10:55:34 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 537786 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 41B32140D9D for ; Thu, 29 Oct 2015 21:55:56 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=zacarias.com.ar header.i=@zacarias.com.ar header.b=pe4zmPEC; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 6C3C58FADF; Thu, 29 Oct 2015 10:55:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WYFbMUxNndw3; Thu, 29 Oct 2015 10:55:54 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id EA66D8FA72; Thu, 29 Oct 2015 10:55:53 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id C49451C1F49 for ; Thu, 29 Oct 2015 10:55:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id BFFC28FA6F for ; Thu, 29 Oct 2015 10:55:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Fgqnl0th3hpI for ; Thu, 29 Oct 2015 10:55:51 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [176.9.42.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id 532308FA72 for ; Thu, 29 Oct 2015 10:55:51 +0000 (UTC) Received: from asgard (cpe-186-22-136-136.telecentro-reversos.com.ar [186.22.136.136] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.15.1/8.15.1) with ESMTPSA id t9TAthWb007588 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 29 Oct 2015 10:55:46 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1446116148; bh=ueySCMJXZzEua4LGLqFP4U4V5utSKUg/li/0DMOKQbA=; h=From:To:Cc:Subject:Date; b=pe4zmPECQgrmNqRiige799BT71tk3i5YWh3YU6wQMLhqCGx5n3IUxcQ72HyO0shk3 1YMDH/hXxv+Fek6EvwRMu2nh2jGPKbpnZZNBbiD6ioqd/rmHZJofC3S/6iFGZEoQEZ SkbZDjuQTEyFvgJUr+EXLih32Mbn3o+B6djpALNM= Received: by asgard (sSMTP sendmail emulation); Thu, 29 Oct 2015 07:55:34 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Thu, 29 Oct 2015 07:55:34 -0300 Message-Id: <1446116134-31005-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.4.10 X-Virus-Scanned: clamav-milter 0.98.7 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH] python-spidev: bump to version 3.1 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Also add hash file. And fixes: http://autobuild.buildroot.net/results/abc/abca38e3e93b609c1040c1152de7cd59940e2c88/ It was using an absolute include_dirs in setup.py pointing to the host kernel sources (/usr/src/linux). It didn't affect "normal" distros since they normally don't have the kernel sources installed, however for Gentoo it's quite normal to have kernel sources there. Signed-off-by: Gustavo Zacarias --- package/python-spidev/python-spidev.hash | 2 ++ package/python-spidev/python-spidev.mk | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 package/python-spidev/python-spidev.hash diff --git a/package/python-spidev/python-spidev.hash b/package/python-spidev/python-spidev.hash new file mode 100644 index 0000000..49e8db8 --- /dev/null +++ b/package/python-spidev/python-spidev.hash @@ -0,0 +1,2 @@ +# Locally calculated +sha256 355391e9ad3024950590626b080324394c12e75bb21923dbd56a978a1eac6ac7 spidev-3.1.tar.gz diff --git a/package/python-spidev/python-spidev.mk b/package/python-spidev/python-spidev.mk index 14103f3..0a8dd15 100644 --- a/package/python-spidev/python-spidev.mk +++ b/package/python-spidev/python-spidev.mk @@ -4,7 +4,7 @@ # ################################################################################ -PYTHON_SPIDEV_VERSION = 3.0 +PYTHON_SPIDEV_VERSION = 3.1 PYTHON_SPIDEV_SOURCE = spidev-$(PYTHON_SPIDEV_VERSION).tar.gz PYTHON_SPIDEV_SITE = https://pypi.python.org/packages/source/s/spidev PYTHON_SPIDEV_SETUP_TYPE = distutils