python-pytrie: bump to version 0.3.1

For some reason (probably not on purpose) the license file was
removed from MANIFEST.in, and it's not available after package extraction.
I replaced it with PKG-INFO for now, and opened a PR on github:
https://github.com/gsakkis/pytrie/pull/3

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Asaf Kahlon 2018-09-26 18:35:00 +03:00 committed by Thomas Petazzoni
parent 28e15dae70
commit 6c43732a18
3 changed files with 10 additions and 7 deletions

View File

@ -1,5 +1,6 @@
config BR2_PACKAGE_PYTHON_PYTRIE
bool "python-pytrie"
select BR2_PACKAGE_PYTHON_SORTEDCONTAINERS # runtime
help
A pure Python implementation of the trie data structure.

View File

@ -1,3 +1,5 @@
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=5997b46c854a68bc588f4527c987663a, sha256 locally computed.
md5 5997b46c854a68bc588f4527c987663a PyTrie-0.2.tar.gz
sha256 b272021351efadc6757591aac03ed4794bdfd091122204a4673e94bfb66cc500 PyTrie-0.2.tar.gz
# md5, sha256 from https://pypi.org/pypi/pytrie/json
md5 f7c7184124013abcc18a3e3b638d32ae PyTrie-0.3.1.tar.gz
sha256 3bb7d122a549d8006c9cba2feecac20bceda9f8c0e2a3fa99a5584cfe0dec523 PyTrie-0.3.1.tar.gz
# Locally computed sha256
sha256 153931d44112319a1e1653752c881fb7ef092f636db31f4c36b252666e95efbd PKG-INFO

View File

@ -4,11 +4,11 @@
#
################################################################################
PYTHON_PYTRIE_VERSION = 0.2
PYTHON_PYTRIE_SITE = https://pypi.python.org/packages/source/P/PyTrie
PYTHON_PYTRIE_VERSION = 0.3.1
PYTHON_PYTRIE_SOURCE = PyTrie-$(PYTHON_PYTRIE_VERSION).tar.gz
PYTHON_PYTRIE_LICENSE = BSD-3-Clause
PYTHON_PYTRIE_LICENSE_FILES = LICENSE
PYTHON_PYTRIE_SETUP_TYPE = distutils
PYTHON_PYTRIE_LICENSE_FILES = PKG-INFO
PYTHON_PYTRIE_SITE = https://files.pythonhosted.org/packages/e1/eb/ae1f098969c9e9b81e821fb8e916cbf720b900ec1c0f3359e47a427395ec
PYTHON_PYTRIE_SETUP_TYPE = setuptools
$(eval $(python-package))