package/python-can: new package

This patch provides controller area network support for Python.

Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Angelo Compagnucci 2015-06-01 18:24:41 +02:00 committed by Thomas Petazzoni
parent 55a5200b59
commit 30d076be23
3 changed files with 22 additions and 0 deletions

View File

@ -573,6 +573,7 @@ if BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
menu "external python modules"
source "package/python-alsaaudio/Config.in"
source "package/python-bottle/Config.in"
source "package/python-can/Config.in"
source "package/python-certifi/Config.in"
source "package/python-cffi/Config.in"
source "package/python-cheetah/Config.in"

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_CAN
bool "python-can"
help
This module provides controller area network support for Python.
https://bitbucket.org/hardbyte/python-can

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-can
#
################################################################################
PYTHON_CAN_VERSION = ae5b6cf
PYTHON_CAN_SITE = https://bitbucket.org/hardbyte/python-can/get/
PYTHON_CAN_SOURCE = $(PYTHON_CAN_VERSION).tar.bz2
PYTHON_CAN_LICENSE = LGPLv3
PYTHON_CAN_LICENSE_FILES = LICENSE.txt
PYTHON_CAN_DEPENDENCIES = python
PYTHON_CAN_SETUP_TYPE = setuptools
$(eval $(python-package))