python-crcmod: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Yegor Yefremov 2016-08-22 07:34:28 +02:00 committed by Thomas Petazzoni
parent 8972c398ff
commit ff9ca7096b
4 changed files with 26 additions and 0 deletions

View file

@ -654,6 +654,7 @@ menu "External python modules"
source "package/python-configobj/Config.in"
source "package/python-configshell-fb/Config.in"
source "package/python-crc16/Config.in"
source "package/python-crcmod/Config.in"
source "package/python-crossbar/Config.in"
source "package/python-cryptography/Config.in"
source "package/python-cssselect/Config.in"

View file

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_CRCMOD
bool "python-crcmod"
help
The software in this package is a Python module for
generating objects that compute the Cyclic Redundancy
Check (CRC).
http://crcmod.sourceforge.net/

View file

@ -0,0 +1,3 @@
# md5 from https://pypi.python.org/pypi/crcmod/json, sha256 locally computed
md5 2d5b92117d958dcead94f9e17f54cd32 crcmod-1.7.tar.gz
sha256 dc7051a0db5f2bd48665a990d3ec1cc305a466a77358ca4492826f41f283601e crcmod-1.7.tar.gz

View file

@ -0,0 +1,14 @@
################################################################################
#
# python-crcmod
#
################################################################################
PYTHON_CRCMOD_VERSION = 1.7
PYTHON_CRCMOD_SOURCE = crcmod-$(PYTHON_CRCMOD_VERSION).tar.gz
PYTHON_CRCMOD_SITE = https://pypi.python.org/packages/6b/b0/e595ce2a2527e169c3bcd6c33d2473c1918e0b7f6826a043ca1245dd4e5b
PYTHON_CRCMOD_SETUP_TYPE = distutils
PYTHON_CRCMOD_LICENSE = MIT
PYTHON_CRCMOD_LICENSE_FILES = LICENSE
$(eval $(python-package))