All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrey Smirnov <andrew.smirnov@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v3 05/11] package/python-traitlets: New package
Date: Fri,  2 Jun 2017 16:56:47 -0700	[thread overview]
Message-ID: <20170602235653.4655-6-andrew.smirnov@gmail.com> (raw)
In-Reply-To: <20170602235653.4655-1-andrew.smirnov@gmail.com>

Add 'traitlets'[1] package to Buildroot. Needed by IPython.

[1] https://pypi.python.org/pypi/traitlets

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
---
 DEVELOPERS                                     |  1 +
 package/Config.in                              |  1 +
 package/python-traitlets/Config.in             | 10 ++++++++++
 package/python-traitlets/python-traitlets.hash |  3 +++
 package/python-traitlets/python-traitlets.mk   | 13 +++++++++++++
 5 files changed, 28 insertions(+)
 create mode 100644 package/python-traitlets/Config.in
 create mode 100644 package/python-traitlets/python-traitlets.hash
 create mode 100644 package/python-traitlets/python-traitlets.mk

diff --git a/DEVELOPERS b/DEVELOPERS
index 9450445..fdc5115 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -75,6 +75,7 @@ N:	Andrey Smirnov <andrew.smirnov@gmail.com>
 F:	package/python-decorator/
 F:	package/python-simplegeneric/
 F:	package/python-ipython-genutils/
+F:	package/python-traitlets/
 
 N:	Andrew Ruder <andrew.ruder@elecsyscorp.com>
 F:	package/expect/
diff --git a/package/Config.in b/package/Config.in
index b59510e..4f69076 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -846,6 +846,7 @@ menu "External python modules"
 	source "package/python-tomako/Config.in"
 	source "package/python-toml/Config.in"
 	source "package/python-tornado/Config.in"
+	source "package/python-traitlets/Config.in"
 	source "package/python-treq/Config.in"
 	source "package/python-twisted/Config.in"
 	source "package/python-txaio/Config.in"
diff --git a/package/python-traitlets/Config.in b/package/python-traitlets/Config.in
new file mode 100644
index 0000000..e4ff0b7
--- /dev/null
+++ b/package/python-traitlets/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_PYTHON_TRAITLETS
+	bool "python-traitlets"
+	select BR2_PACKAGE_PYTHON_ENUM34 if BR2_PACKAGE_PYTHON
+	select BR2_PACKAGE_PYTHON_SIX
+	select BR2_PACKAGE_PYTHON_IPYTHON_GENUTILS
+	select BR2_PACKAGE_PYTHON_DECORATOR
+	help
+	  A configuration system for Python applications.
+
+	  https://pypi.python.org/pypi/traitlets
diff --git a/package/python-traitlets/python-traitlets.hash b/package/python-traitlets/python-traitlets.hash
new file mode 100644
index 0000000..8111340
--- /dev/null
+++ b/package/python-traitlets/python-traitlets.hash
@@ -0,0 +1,3 @@
+# MD5 from PyPI, sha256 locally computed
+md5 3068663f2f38fd939a9eb3a500ccc154 traitlets-4.3.2.tar.gz
+sha256 9c4bd2d267b7153df9152698efb1050a5d84982d3384a37b2c1f7723ba3e7835 traitlets-4.3.2.tar.gz
diff --git a/package/python-traitlets/python-traitlets.mk b/package/python-traitlets/python-traitlets.mk
new file mode 100644
index 0000000..7cd6acd
--- /dev/null
+++ b/package/python-traitlets/python-traitlets.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# python-traitlets
+#
+################################################################################
+
+PYTHON_TRAITLETS_VERSION = 4.3.2
+PYTHON_TRAITLETS_SOURCE = traitlets-$(PYTHON_TRAITLETS_VERSION).tar.gz
+PYTHON_TRAITLETS_SITE = https://pypi.python.org/packages/a5/98/7f5ef2fe9e9e071813aaf9cb91d1a732e0a68b6c44a32b38cb8e14c3f069
+PYTHON_TRAITLETS_LICENSE = BSD-3-Clause
+PYTHON_TRAITLETS_SETUP_TYPE = distutils
+
+$(eval $(python-package))
-- 
2.9.4

  parent reply	other threads:[~2017-06-02 23:56 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-02 23:56 [Buildroot] [PATCH v3 00/11] Update IPython's dependencies Andrey Smirnov
2017-06-02 23:56 ` [Buildroot] [PATCH v3 01/11] DEVELOPERS: Add missing closing angle bracket to my e-mail Andrey Smirnov
2017-06-09 19:34   ` Yegor Yefremov
2017-06-11 12:49   ` Thomas Petazzoni
2017-06-02 23:56 ` [Buildroot] [PATCH v3 02/11] package/python-enum34: Switch setup type to 'setuptools' Andrey Smirnov
2017-06-03  5:23   ` Yegor Yefremov
2017-06-05 13:02     ` Andrey Smirnov
2017-06-05 13:08       ` Thomas Petazzoni
2017-06-05 13:37         ` Andrey Smirnov
2017-06-02 23:56 ` [Buildroot] [PATCH v3 03/11] package/python-simplegeneric: " Andrey Smirnov
2017-06-09 19:36   ` Yegor Yefremov
2017-06-11 12:50   ` Thomas Petazzoni
2017-06-11 21:52     ` Peter Korsgaard
2017-06-02 23:56 ` [Buildroot] [PATCH v3 04/11] package/python-ipython-genutils: New package Andrey Smirnov
2017-06-09 19:03   ` Yegor Yefremov
2017-06-10  9:03     ` Arnout Vandecappelle
2017-06-10  9:38       ` Yegor Yefremov
2017-06-11 13:04     ` Thomas Petazzoni
2017-06-11 13:02   ` Thomas Petazzoni
2017-06-02 23:56 ` Andrey Smirnov [this message]
2017-06-09 19:33   ` [Buildroot] [PATCH v3 05/11] package/python-traitlets: " Yegor Yefremov
2017-06-12 21:11     ` Andrey Smirnov
2017-06-02 23:56 ` [Buildroot] [PATCH v3 06/11] package/python-scandir: " Andrey Smirnov
2017-06-09 19:18   ` Yegor Yefremov
2017-06-09 19:24     ` Yegor Yefremov
2017-06-02 23:56 ` [Buildroot] [PATCH v3 07/11] package/python-pathlib2: " Andrey Smirnov
2017-06-09 19:23   ` Yegor Yefremov
2017-06-02 23:56 ` [Buildroot] [PATCH v3 08/11] package/python-pickleshare: " Andrey Smirnov
2017-06-09 19:29   ` Yegor Yefremov
2017-06-02 23:56 ` [Buildroot] [PATCH v3 09/11] package/python-backports-shutil-get-terminal-size: " Andrey Smirnov
2017-06-09 19:39   ` Yegor Yefremov
2017-06-02 23:56 ` [Buildroot] [PATCH v3 10/11] package/python-ipython: Add dependecy list Andrey Smirnov
2017-06-09 19:35   ` Yegor Yefremov
2017-06-02 23:56 ` [Buildroot] [PATCH v3 11/11] python-ipython: bump to version 5.4.0 Andrey Smirnov
2017-06-09 19:40   ` Yegor Yefremov
2017-06-11 13:07     ` Thomas Petazzoni
2017-06-12 20:22       ` Andrey Smirnov
2017-06-12 20:26         ` Thomas Petazzoni
2017-06-11 13:08 ` [Buildroot] [PATCH v3 00/11] Update IPython's dependencies Thomas Petazzoni
2017-06-12 20:29   ` Andrey Smirnov

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=20170602235653.4655-6-andrew.smirnov@gmail.com \
    --to=andrew.smirnov@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.