All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v3 00/11] Update IPython's dependencies
@ 2017-06-02 23:56 Andrey Smirnov
  2017-06-02 23:56 ` [Buildroot] [PATCH v3 01/11] DEVELOPERS: Add missing closing angle bracket to my e-mail Andrey Smirnov
                   ` (11 more replies)
  0 siblings, 12 replies; 40+ messages in thread
From: Andrey Smirnov @ 2017-06-02 23:56 UTC (permalink / raw)
  To: buildroot

Hi everyone,

It took me a while, but I was finally able to cut v3 of my IPython
related patchset. I did my best to try to test basic "importability"
of each new package for both Python 2 and Python 3 and I apologize if
I missed something there.

Change history can be found below.

Changes since [v2]:

	- Add fix for setup type for 'enum34'

	- Add fix for 'simplegeneric' to avoid dependency on zlib
          support in Python (missed that in my original patch)

	- Convert all of the URL to point to PyPI

	- Add MD5 sums from PyPI to all new packages

	- Add patch to bump IPython to 5.4.0

	- Fix package run-time dependencies to match with what they
          specify in thier JSON info on PyPI

Changes since [v1]:

	- Remove all <pkg>_DEPENDENCIES build-time dependencies from
          package files

	- Use SPDX license names

	- Address warnings produced by check-package

Let me know if I missed anything or if there any more issues that need
to be addressed.

Thanks,
Andrey Smirnov

[v2] http://lists.busybox.net/pipermail/buildroot/2017-April/190587.html
[v1] http://lists.busybox.net/pipermail/buildroot/2017-April/190423.html

Andrey Smirnov (11):
  DEVELOPERS: Add missing closing angle bracket to my e-mail
  package/python-enum34: Switch setup type to 'setuptools'
  package/python-simplegeneric: Switch setup type to 'setuptools'
  package/python-ipython-genutils: New package
  package/python-traitlets: 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
  python-ipython: bump to version 5.4.0

 DEVELOPERS                                              |  8 +++++++-
 package/Config.in                                       |  6 ++++++
 .../python-backports-shutil-get-terminal-size/Config.in |  9 +++++++++
 .../python-backports-shutil-get-terminal-size.hash      |  3 +++
 .../python-backports-shutil-get-terminal-size.mk        | 13 +++++++++++++
 package/python-enum34/python-enum34.mk                  |  2 +-
 package/python-ipython-genutils/Config.in               |  6 ++++++
 .../python-ipython-genutils.hash                        |  3 +++
 .../python-ipython-genutils/python-ipython-genutils.mk  | 13 +++++++++++++
 package/python-ipython/Config.in                        |  9 +++++++++
 package/python-ipython/python-ipython.hash              |  4 ++--
 package/python-ipython/python-ipython.mk                |  4 ++--
 package/python-pathlib2/Config.in                       | 14 ++++++++++++++
 package/python-pathlib2/python-pathlib2.hash            |  3 +++
 package/python-pathlib2/python-pathlib2.mk              | 13 +++++++++++++
 package/python-pickleshare/Config.in                    |  7 +++++++
 package/python-pickleshare/python-pickleshare.hash      |  3 +++
 package/python-pickleshare/python-pickleshare.mk        | 15 +++++++++++++++
 package/python-scandir/Config.in                        |  6 ++++++
 package/python-scandir/python-scandir.hash              |  3 +++
 package/python-scandir/python-scandir.mk                | 17 +++++++++++++++++
 package/python-simplegeneric/python-simplegeneric.mk    |  8 +++++++-
 package/python-traitlets/Config.in                      | 10 ++++++++++
 package/python-traitlets/python-traitlets.hash          |  3 +++
 package/python-traitlets/python-traitlets.mk            | 13 +++++++++++++
 25 files changed, 188 insertions(+), 7 deletions(-)
 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-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-traitlets/Config.in
 create mode 100644 package/python-traitlets/python-traitlets.hash
 create mode 100644 package/python-traitlets/python-traitlets.mk

-- 
2.9.4

^ permalink raw reply	[flat|nested] 40+ messages in thread

end of thread, other threads:[~2017-06-12 21:11 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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 ` [Buildroot] [PATCH v3 05/11] package/python-traitlets: " Andrey Smirnov
2017-06-09 19:33   ` 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

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.