mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 23:43:34 +08:00
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:
parent
b71842cb65
commit
fba747ca43
@ -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"
|
||||
|
8
package/python-keyring/Config.in
Normal file
8
package/python-keyring/Config.in
Normal 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
|
19
package/python-keyring/python-keyring.mk
Normal file
19
package/python-keyring/python-keyring.mk
Normal 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))
|
Loading…
Reference in New Issue
Block a user