Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Asaf Kahlon <asafka7@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 00/23] Fix python-crossbar to work with python 3.7
Date: Wed, 26 Sep 2018 18:34:42 +0300	[thread overview]
Message-ID: <20180926153505.3411-1-asafka7@gmail.com> (raw)

The following series of patches contains version bumps and new
packages that are needed for bumping python-crossbar to 18.9.2
and make it work with Python 3.7.

Asaf Kahlon (23):
  python-attrs: bump to version 18.2.0
  python-autobahn: bump to version 18.9.2
  python-automat: bump to version 0.7.0
  python-hyperlink: bump to version 18.0.0
  python-incremental: bump to version 17.5.0
  python-jinja2: bump to version 2.10
  python-lmdb: bump to version 0.94
  python-psutil: bump to version 5.4.7
  python-pycparser: bump to version 2.19
  python-pynacl: bump to version 1.2.1
  python-pyopenssl: bump to version 18.0.0
  python-sdnotify: bump to version 0.3.2
  python-sortedcontainers: bump to version 2.0.5
  python-txaio: bump to version 18.8.1
  python-txtorcon: bump to version 18.0.2
  python-u-msgpack: bump to version 2.5.0
  python-zope-interface: bump to version 4.5.0
  python-pytrie: bump to version 0.3.1
  python-passlib: new package
  python-pyasn1-modules: new package
  python-pyhamcrest: new package
  python-twisted: bump to version 18.7.0
  python-crossbar: bump to version 18.9.2

 DEVELOPERS                                    |   3 +
 package/Config.in                             |   3 +
 package/python-attrs/python-attrs.hash        |   8 +-
 package/python-attrs/python-attrs.mk          |   4 +-
 package/python-autobahn/python-autobahn.hash  |   8 +-
 package/python-autobahn/python-autobahn.mk    |   4 +-
 package/python-automat/python-automat.hash    |   8 +-
 package/python-automat/python-automat.mk      |   4 +-
 .../0002-Remove-idna-requirement.patch        |  26 +++
 .../0002-Rework-runtime-dependencies.patch    |  37 ----
 package/python-crossbar/Config.in             |  19 +--
 package/python-crossbar/python-crossbar.hash  |   7 +-
 package/python-crossbar/python-crossbar.mk    |   4 +-
 package/python-hyperlink/Config.in            |   1 +
 .../python-hyperlink/python-hyperlink.hash    |   8 +-
 package/python-hyperlink/python-hyperlink.mk  |   4 +-
 .../python-incremental.hash                   |   8 +-
 .../python-incremental/python-incremental.mk  |   4 +-
 package/python-jinja2/python-jinja2.hash      |   8 +-
 package/python-jinja2/python-jinja2.mk        |   4 +-
 package/python-lmdb/python-lmdb.hash          |   7 +-
 package/python-lmdb/python-lmdb.mk            |   5 +-
 package/python-passlib/Config.in              |   7 +
 package/python-passlib/python-passlib.hash    |   5 +
 package/python-passlib/python-passlib.mk      |  14 ++
 package/python-psutil/python-psutil.hash      |   8 +-
 package/python-psutil/python-psutil.mk        |   4 +-
 package/python-pyasn1-modules/Config.in       |   7 +
 .../python-pyasn1-modules.hash                |   5 +
 .../python-pyasn1-modules.mk                  |  14 ++
 .../python-pycparser/python-pycparser.hash    |   8 +-
 package/python-pycparser/python-pycparser.mk  |   4 +-
 package/python-pyhamcrest/Config.in           |   8 +
 .../python-pyhamcrest/python-pyhamcrest.hash  |   5 +
 .../python-pyhamcrest/python-pyhamcrest.mk    |  14 ++
 package/python-pynacl/python-pynacl.hash      |   8 +-
 package/python-pynacl/python-pynacl.mk        |   4 +-
 .../python-pyopenssl/python-pyopenssl.hash    |   8 +-
 package/python-pyopenssl/python-pyopenssl.mk  |   4 +-
 package/python-pytrie/Config.in               |   1 +
 package/python-pytrie/python-pytrie.hash      |   8 +-
 package/python-pytrie/python-pytrie.mk        |   8 +-
 package/python-sdnotify/python-sdnotify.hash  |   9 +-
 package/python-sdnotify/python-sdnotify.mk    |   4 +-
 .../python-sortedcontainers.hash              |   8 +-
 .../python-sortedcontainers.mk                |   4 +-
 .../0001-Fix-syntax-for-python3.7.patch       | 160 ++++++++++++++++++
 package/python-twisted/Config.in              |   2 +
 package/python-twisted/python-twisted.hash    |   8 +-
 package/python-twisted/python-twisted.mk      |   4 +-
 package/python-txaio/python-txaio.hash        |   9 +-
 package/python-txaio/python-txaio.mk          |   4 +-
 package/python-txtorcon/python-txtorcon.hash  |   9 +-
 package/python-txtorcon/python-txtorcon.mk    |   4 +-
 .../python-u-msgpack/python-u-msgpack.hash    |   8 +-
 package/python-u-msgpack/python-u-msgpack.mk  |   4 +-
 .../python-zope-interface.hash                |   9 +-
 .../python-zope-interface.mk                  |   4 +-
 58 files changed, 425 insertions(+), 153 deletions(-)
 create mode 100644 package/python-crossbar/0002-Remove-idna-requirement.patch
 delete mode 100644 package/python-crossbar/0002-Rework-runtime-dependencies.patch
 create mode 100644 package/python-passlib/Config.in
 create mode 100644 package/python-passlib/python-passlib.hash
 create mode 100644 package/python-passlib/python-passlib.mk
 create mode 100644 package/python-pyasn1-modules/Config.in
 create mode 100644 package/python-pyasn1-modules/python-pyasn1-modules.hash
 create mode 100644 package/python-pyasn1-modules/python-pyasn1-modules.mk
 create mode 100644 package/python-pyhamcrest/Config.in
 create mode 100644 package/python-pyhamcrest/python-pyhamcrest.hash
 create mode 100644 package/python-pyhamcrest/python-pyhamcrest.mk
 create mode 100644 package/python-twisted/0001-Fix-syntax-for-python3.7.patch

-- 
2.17.1

             reply	other threads:[~2018-09-26 15:34 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-26 15:34 Asaf Kahlon [this message]
2018-09-26 15:34 ` [Buildroot] [PATCH 01/23] python-attrs: bump to version 18.2.0 Asaf Kahlon
2018-09-28  9:51   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 02/23] python-autobahn: bump to version 18.9.2 Asaf Kahlon
2018-09-28  9:52   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 03/23] python-automat: bump to version 0.7.0 Asaf Kahlon
2018-09-28  9:53   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 04/23] python-hyperlink: bump to version 18.0.0 Asaf Kahlon
2018-09-28 11:10   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 05/23] python-incremental: bump to version 17.5.0 Asaf Kahlon
2018-09-28 11:11   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 06/23] python-jinja2: bump to version 2.10 Asaf Kahlon
2018-09-28 11:12   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 07/23] python-lmdb: bump to version 0.94 Asaf Kahlon
2018-09-28 11:16   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 08/23] python-psutil: bump to version 5.4.7 Asaf Kahlon
2018-10-01  6:47   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 09/23] python-pycparser: bump to version 2.19 Asaf Kahlon
2018-10-01  6:47   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 10/23] python-pynacl: bump to version 1.2.1 Asaf Kahlon
2018-10-02 14:35   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 11/23] python-pyopenssl: bump to version 18.0.0 Asaf Kahlon
2018-10-02 14:40   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 12/23] python-sdnotify: bump to version 0.3.2 Asaf Kahlon
2018-10-02 14:42   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 13/23] python-sortedcontainers: bump to version 2.0.5 Asaf Kahlon
2018-10-02 14:43   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 14/23] python-txaio: bump to version 18.8.1 Asaf Kahlon
2018-10-02 14:55   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 15/23] python-txtorcon: bump to version 18.0.2 Asaf Kahlon
2018-09-29  5:37   ` Ricardo Martincoski
2018-09-29  7:24     ` Asaf Kahlon
2018-10-01  6:44     ` Thomas Petazzoni
2018-10-03 13:39   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 16/23] python-u-msgpack: bump to version 2.5.0 Asaf Kahlon
2018-10-03 14:00   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 17/23] python-zope-interface: bump to version 4.5.0 Asaf Kahlon
2018-10-03 19:02   ` Thomas Petazzoni
2018-09-26 15:35 ` [Buildroot] [PATCH 18/23] python-pytrie: bump to version 0.3.1 Asaf Kahlon
2018-09-26 15:35 ` [Buildroot] [PATCH 19/23] python-passlib: new package Asaf Kahlon
2018-10-04 11:50   ` Thomas Petazzoni
2018-10-06 15:05     ` Yegor Yefremov
2018-09-26 15:35 ` [Buildroot] [PATCH 20/23] python-pyasn1-modules: " Asaf Kahlon
2018-10-04 11:59   ` Thomas Petazzoni
2018-09-26 15:35 ` [Buildroot] [PATCH 21/23] python-pyhamcrest: " Asaf Kahlon
2018-10-04 12:02   ` Thomas Petazzoni
2018-10-04 19:30     ` Asaf Kahlon
2018-10-06 15:03       ` Yegor Yefremov
2018-09-26 15:35 ` [Buildroot] [PATCH 22/23] python-twisted: bump to version 18.7.0 Asaf Kahlon
2018-09-26 15:45   ` Yegor Yefremov
2018-10-04 12:17   ` Thomas Petazzoni
2018-09-26 15:35 ` [Buildroot] [PATCH 23/23] python-crossbar: bump to version 18.9.2 Asaf Kahlon
2018-10-04 12:17   ` Thomas Petazzoni
2018-09-26 15:54 ` [Buildroot] [PATCH 00/23] Fix python-crossbar to work with python 3.7 Yegor Yefremov
2018-09-27  6:19   ` Yegor Yefremov

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=20180926153505.3411-1-asafka7@gmail.com \
    --to=asafka7@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