python-keyring: new package

[Thomas: convert to the Python package infrastructure, improved the
.zip handling, added license informations.]

Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Ludovic Desroches 2013-12-11 21:27:03 +01:00 committed by Peter Korsgaard
parent b71842cb65
commit fba747ca43
3 changed files with 28 additions and 0 deletions

View File

@ -392,6 +392,7 @@ source "package/python-dialog/Config.in"
source "package/python-dpkt/Config.in"
source "package/python-id3/Config.in"
source "package/python-ipy/Config.in"
source "package/python-keyring/Config.in"
source "package/python-mad/Config.in"
source "package/python-meld3/Config.in"
source "package/python-msgpack/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_KEYRING
bool "python-keyring"
depends on BR2_PACKAGE_PYTHON
help
The Python keyring lib provides a easy way to access the
system keyring service from Python.
https://pypi.python.org/pypi/keyring

View File

@ -0,0 +1,19 @@
################################################################################
#
# python-keyring
#
################################################################################
PYTHON_KEYRING_VERSION = 3.0.5
PYTHON_KEYRING_SOURCE = keyring-$(PYTHON_KEYRING_VERSION).zip
PYTHON_KEYRING_SITE = http://pypi.python.org/packages/source/k/keyring/
PYTHON_KEYRING_SETUP_TYPE = setuptools
PYTHON_KEYRING_LICENSE = python software foundation license
define PYTHON_KEYRING_EXTRACT_CMDS
unzip -d $(@D) $(DL_DIR)/$(PYTHON_KEYRING_SOURCE)
mv $(@D)/keyring-$(PYTHON_KEYRING_VERSION)/* $(@D)
$(RM) -r $(@D)/keyring-$(PYTHON_KEYRING_VERSION)
endef
$(eval $(python-package))