From: Peter Korsgaard <peter@korsgaard.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 06/10] package: add python-texttable
Date: Fri, 9 Mar 2018 20:16:57 +0100 [thread overview]
Message-ID: <20180309191701.23760-7-peter@korsgaard.com> (raw)
In-Reply-To: <20180309191701.23760-1-peter@korsgaard.com>
Module for creating simple ASCII tables.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
DEVELOPERS | 1 +
package/Config.in | 1 +
package/python-texttable/Config.in | 6 ++++++
package/python-texttable/python-texttable.hash | 4 ++++
package/python-texttable/python-texttable.mk | 14 ++++++++++++++
5 files changed, 26 insertions(+)
create mode 100644 package/python-texttable/Config.in
create mode 100644 package/python-texttable/python-texttable.hash
create mode 100644 package/python-texttable/python-texttable.mk
diff --git a/DEVELOPERS b/DEVELOPERS
index ced3af7169..10dab1d2e4 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1393,6 +1393,7 @@ F: package/python-enum34/
F: package/python-ipaddr/
F: package/python-pam/
F: package/python-psutil/
+F: package/python-texttable/
F: package/python-websocket-client/
F: package/triggerhappy/
diff --git a/package/Config.in b/package/Config.in
index 1043338a7e..6068ef573e 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -932,6 +932,7 @@ menu "External python modules"
source "package/python-systemd/Config.in"
source "package/python-tabledata/Config.in"
source "package/python-tempora/Config.in"
+ source "package/python-texttable/Config.in"
source "package/python-typepy/Config.in"
source "package/python-thrift/Config.in"
source "package/python-tomako/Config.in"
diff --git a/package/python-texttable/Config.in b/package/python-texttable/Config.in
new file mode 100644
index 0000000000..1c8dde8d3f
--- /dev/null
+++ b/package/python-texttable/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PYTHON_TEXTTABLE
+ bool "python-texttable"
+ help
+ module for creating simple ASCII tables.
+
+ https://github.com/foutaise/texttable/
diff --git a/package/python-texttable/python-texttable.hash b/package/python-texttable/python-texttable.hash
new file mode 100644
index 0000000000..448d6b7dd1
--- /dev/null
+++ b/package/python-texttable/python-texttable.hash
@@ -0,0 +1,4 @@
+# md5 from https://pypi.python.org/pypi/texttable/json, sha256 locally computed
+md5 a712b5a5464d51c5fc43c64d9d2cd0de texttable-0.9.1.tar.gz
+sha256 119041773ff03596b56392532f9315cb3a3116e404fd6f36e76a7dc088d95c79 texttable-0.9.1.tar.gz
+sha256 da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768 LICENSE
diff --git a/package/python-texttable/python-texttable.mk b/package/python-texttable/python-texttable.mk
new file mode 100644
index 0000000000..96fe6cf882
--- /dev/null
+++ b/package/python-texttable/python-texttable.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# python-texttable
+#
+################################################################################
+
+PYTHON_TEXTTABLE_VERSION = 0.9.1
+PYTHON_TEXTTABLE_SOURCE = texttable-$(PYTHON_TEXTTABLE_VERSION).tar.gz
+PYTHON_TEXTTABLE_SITE = https://pypi.python.org/packages/02/e1/2565e6b842de7945af0555167d33acfc8a615584ef7abd30d1eae00a4d80
+PYTHON_TEXTTABLE_SETUP_TYPE = distutils
+PYTHON_TEXTTABLE_LICENSE = LGPL-3.0+
+PYTHON_TEXTTABLE_LICENSE_FILES = LICENSE
+
+$(eval $(python-package))
--
2.11.0
next prev parent reply other threads:[~2018-03-09 19:16 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-09 19:16 [Buildroot] [PATCH 00/10] Add docker-compose Peter Korsgaard
2018-03-09 19:16 ` [Buildroot] [PATCH 01/10] package: add python-docker-pycreds Peter Korsgaard
2018-03-10 6:10 ` Yegor Yefremov
2018-03-10 7:25 ` Peter Korsgaard
2018-03-09 19:16 ` [Buildroot] [PATCH 02/10] package: add python-websocket-client Peter Korsgaard
2018-03-10 6:11 ` Yegor Yefremov
2018-03-10 7:26 ` Peter Korsgaard
2018-03-09 19:16 ` [Buildroot] [PATCH 03/10] package: add python-backports-ssl-match-hostname Peter Korsgaard
2018-03-10 6:11 ` Yegor Yefremov
2018-03-10 7:26 ` Peter Korsgaard
2018-03-09 19:16 ` [Buildroot] [PATCH 04/10] package: add python-docker Peter Korsgaard
2018-03-10 6:13 ` Yegor Yefremov
2018-03-09 19:16 ` [Buildroot] [PATCH 05/10] package: add python-cached-property Peter Korsgaard
2018-03-10 6:14 ` Yegor Yefremov
2018-03-10 7:35 ` Peter Korsgaard
2018-03-09 19:16 ` Peter Korsgaard [this message]
2018-03-10 6:18 ` [Buildroot] [PATCH 06/10] package: add python-texttable Yegor Yefremov
2018-03-10 7:37 ` Peter Korsgaard
2018-03-09 19:16 ` [Buildroot] [PATCH 07/10] package: add python-dockerpty Peter Korsgaard
2018-03-10 6:19 ` Yegor Yefremov
2018-03-10 7:37 ` Peter Korsgaard
2018-03-09 19:16 ` [Buildroot] [PATCH 08/10] package: add python-functools32 Peter Korsgaard
2018-03-10 6:15 ` Yegor Yefremov
2018-03-10 7:38 ` Peter Korsgaard
2018-03-30 21:25 ` Peter Korsgaard
2018-03-09 19:17 ` [Buildroot] [PATCH 09/10] python-jsonschema: needs python-functools32 when used with python 2.7 Peter Korsgaard
2018-03-10 6:18 ` Yegor Yefremov
2018-03-30 21:25 ` Peter Korsgaard
2018-03-09 19:17 ` [Buildroot] [PATCH 10/10] package: add docker-compose Peter Korsgaard
2018-03-10 6:18 ` Yegor Yefremov
2018-03-10 7:39 ` Peter Korsgaard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180309191701.23760-7-peter@korsgaard.com \
--to=peter@korsgaard.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox