Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Andrey Smirnov <andrew.smirnov@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 0/9] Update IPython's dependencies
Date: Tue, 25 Apr 2017 12:14:14 -0700	[thread overview]
Message-ID: <20170425191423.13294-1-andrew.smirnov@gmail.com> (raw)

Hi everyone,

I recently tried using IPython on Buidroot based system and ran into a
number of missing dependencies. The patches in this series are all of
the fixes I had to apply in order to make IPython work.

Any feedback is welcome.

Thanks,
Andrey Smirnov

Andrey Smirnov (9):
  package/python-decorator: New package
  package/python-traitlets: New package
  package/python-simplegeneric: New package
  package/python-ipython-genutils: New package
  package/python-scandir: New package
  package/python-pathlib2: New package
  package/python-pickleshare: New package
  package/python-backports-shutil-get-terminal-size: New package
  package/python-ipython: Add dependecy list

 package/Config.in                                  |  8 ++++++++
 .../Config.in                                      |  9 ++++++++
 .../python-backports-shutil-get-terminal-size.hash |  2 ++
 .../python-backports-shutil-get-terminal-size.mk   | 13 ++++++++++++
 package/python-decorator/Config.in                 |  6 ++++++
 package/python-decorator/python-decorator.mk       | 13 ++++++++++++
 package/python-ipython-genutils/Config.in          |  6 ++++++
 .../python-ipython-genutils.hash                   |  4 ++++
 .../python-ipython-genutils.mk                     | 14 +++++++++++++
 package/python-ipython/Config.in                   | 10 +++++++++
 package/python-ipython/python-ipython.mk           | 14 +++++++++++++
 package/python-pathlib2/Config.in                  | 14 +++++++++++++
 package/python-pathlib2/python-pathlib2.hash       |  2 ++
 package/python-pathlib2/python-pathlib2.mk         | 24 ++++++++++++++++++++++
 package/python-pickleshare/Config.in               |  7 +++++++
 package/python-pickleshare/python-pickleshare.hash |  2 ++
 package/python-pickleshare/python-pickleshare.mk   | 22 ++++++++++++++++++++
 package/python-scandir/Config.in                   |  6 ++++++
 package/python-scandir/python-scandir.hash         |  2 ++
 package/python-scandir/python-scandir.mk           | 13 ++++++++++++
 package/python-simplegeneric/Config.in             |  6 ++++++
 .../python-simplegeneric/python-simplegeneric.hash |  4 ++++
 .../python-simplegeneric/python-simplegeneric.mk   | 19 +++++++++++++++++
 package/python-traitlets/Config.in                 |  8 ++++++++
 package/python-traitlets/python-traitlets.hash     |  2 ++
 package/python-traitlets/python-traitlets.mk       | 18 ++++++++++++++++
 26 files changed, 248 insertions(+)
 create mode 100644 package/python-backports-shutil-get-terminal-size/Config.in
 create mode 100644 package/python-backports-shutil-get-terminal-size/python-backports-shutil-get-terminal-size.hash
 create mode 100644 package/python-backports-shutil-get-terminal-size/python-backports-shutil-get-terminal-size.mk
 create mode 100644 package/python-decorator/Config.in
 create mode 100644 package/python-decorator/python-decorator.mk
 create mode 100644 package/python-ipython-genutils/Config.in
 create mode 100644 package/python-ipython-genutils/python-ipython-genutils.hash
 create mode 100644 package/python-ipython-genutils/python-ipython-genutils.mk
 create mode 100644 package/python-pathlib2/Config.in
 create mode 100644 package/python-pathlib2/python-pathlib2.hash
 create mode 100644 package/python-pathlib2/python-pathlib2.mk
 create mode 100644 package/python-pickleshare/Config.in
 create mode 100644 package/python-pickleshare/python-pickleshare.hash
 create mode 100644 package/python-pickleshare/python-pickleshare.mk
 create mode 100644 package/python-scandir/Config.in
 create mode 100644 package/python-scandir/python-scandir.hash
 create mode 100644 package/python-scandir/python-scandir.mk
 create mode 100644 package/python-simplegeneric/Config.in
 create mode 100644 package/python-simplegeneric/python-simplegeneric.hash
 create mode 100644 package/python-simplegeneric/python-simplegeneric.mk
 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

-- 
2.9.3

             reply	other threads:[~2017-04-25 19:14 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-25 19:14 Andrey Smirnov [this message]
2017-04-25 19:14 ` [Buildroot] [PATCH 1/9] package/python-decorator: New package Andrey Smirnov
2017-04-26  7:25   ` Thomas Petazzoni
2017-04-26 18:41     ` Andrey Smirnov
2017-04-25 19:14 ` [Buildroot] [PATCH 2/9] package/python-traitlets: " Andrey Smirnov
2017-04-26  7:26   ` Thomas Petazzoni
2017-04-26 18:47     ` Andrey Smirnov
2017-04-25 19:14 ` [Buildroot] [PATCH 3/9] package/python-simplegeneric: " Andrey Smirnov
2017-04-25 19:14 ` [Buildroot] [PATCH 4/9] package/python-ipython-genutils: " Andrey Smirnov
2017-04-25 19:14 ` [Buildroot] [PATCH 5/9] package/python-scandir: " Andrey Smirnov
2017-04-25 19:14 ` [Buildroot] [PATCH 6/9] package/python-pathlib2: " Andrey Smirnov
2017-04-25 19:14 ` [Buildroot] [PATCH 7/9] package/python-pickleshare: " Andrey Smirnov
2017-04-25 19:14 ` [Buildroot] [PATCH 8/9] package/python-backports-shutil-get-terminal-size: " Andrey Smirnov
2017-04-25 19:14 ` [Buildroot] [PATCH 9/9] package/python-ipython: Add dependecy list Andrey Smirnov
2017-04-26  3:38   ` Baruch Siach
2017-04-26 18:48     ` 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=20170425191423.13294-1-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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox