Commit 4a7d79e9 authored by Mauro Condarelli's avatar Mauro Condarelli Committed by Thomas Petazzoni
Browse files

python-setproctitle: new package

parent 0226a0af
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -713,6 +713,7 @@ menu "External python modules"
	source "package/python-rtslib-fb/Config.in"
	source "package/python-serial/Config.in"
	source "package/python-service-identity/Config.in"
	source "package/python-setproctitle/Config.in"
	source "package/python-setuptools/Config.in"
	source "package/python-shutilwhich/Config.in"
	source "package/python-simplejson/Config.in"
+6 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PYTHON_SETPROCTITLE
	bool "python-setproctitle"
	help
	  A Python module to customize the process title.

	  https://pypi.python.org/pypi/setproctitle
+3 −0
Original line number Diff line number Diff line
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=95d9e56c69437246460a20804961d70d, sha256 locally computed.
md5	95d9e56c69437246460a20804961d70d  setproctitle-1.1.9.tar.gz
sha256	1c3414d18f9cacdab78b0ffd8e886d56ad45f22e55001a72aaa0b2aeb56a0ad7  setproctitle-1.1.9.tar.gz
+14 −0
Original line number Diff line number Diff line
################################################################################
#
# python-setproctitle
#
################################################################################

PYTHON_SETPROCTITLE_VERSION = 1.1.9
PYTHON_SETPROCTITLE_SOURCE = setproctitle-$(PYTHON_SETPROCTITLE_VERSION).tar.gz
PYTHON_SETPROCTITLE_SITE = http://pypi.python.org/packages/source/s/setproctitle
PYTHON_SETPROCTITLE_LICENSE = BSD-3c
PYTHON_SETPROCTITLE_LICENSE_FILES = COPYRIGHT
PYTHON_SETPROCTITLE_SETUP_TYPE = distutils

$(eval $(python-package))