mbox series

[0/4] Misc Python package updates/additions

Message ID 20210919124517.524402-1-thomas.petazzoni@bootlin.com
Headers show
Series Misc Python package updates/additions | expand

Message

Thomas Petazzoni Sept. 19, 2021, 12:45 p.m. UTC
Hello,

A small patch series that:

 - Updates python-smmap2 and python-gitdb2 to newer versions (must be
   done in lockstep)

 - Adds a python-flask test

 - Adds a python-flask-expects-json package, and its associated test.

 - Adds a python-git package, and its associated test

Best regards,

Thomas Petazzoni

Thomas Petazzoni (4):
  package/python-{smmap2,gitdb2}: bump versions to 4.0.0 and 4.0.7
  support/testing/tests/package/test_python_flask: new test
  package/python-flask-expects-json: new package
  package/python-git: new package

 DEVELOPERS                                    | 16 ++++++++
 package/Config.in                             |  2 +
 package/python-flask-expects-json/Config.in   |  9 +++++
 .../python-flask-expects-json.hash            |  5 +++
 .../python-flask-expects-json.mk              | 14 +++++++
 package/python-git/Config.in                  | 13 +++++++
 package/python-git/python-git.hash            |  3 ++
 package/python-git/python-git.mk              | 13 +++++++
 package/python-gitdb2/Config.in               |  4 +-
 package/python-gitdb2/python-gitdb2.hash      |  6 +--
 package/python-gitdb2/python-gitdb2.mk        |  6 +--
 package/python-smmap2/Config.in               |  1 +
 package/python-smmap2/python-smmap2.hash      |  6 +--
 package/python-smmap2/python-smmap2.mk        |  6 +--
 .../tests/package/sample_python_flask.py      |  7 ++++
 .../sample_python_flask_expects_json.py       | 18 +++++++++
 .../tests/package/sample_python_git.py        |  1 +
 .../tests/package/test_python_flask.py        | 29 ++++++++++++++
 .../package/test_python_flask_expects_json.py | 38 +++++++++++++++++++
 .../testing/tests/package/test_python_git.py  | 11 ++++++
 .../tests/package/test_python_gitdb2.py       | 10 -----
 .../tests/package/test_python_smmap2.py       | 10 -----
 22 files changed, 194 insertions(+), 34 deletions(-)
 create mode 100644 package/python-flask-expects-json/Config.in
 create mode 100644 package/python-flask-expects-json/python-flask-expects-json.hash
 create mode 100644 package/python-flask-expects-json/python-flask-expects-json.mk
 create mode 100644 package/python-git/Config.in
 create mode 100644 package/python-git/python-git.hash
 create mode 100644 package/python-git/python-git.mk
 create mode 100644 support/testing/tests/package/sample_python_flask.py
 create mode 100644 support/testing/tests/package/sample_python_flask_expects_json.py
 create mode 100644 support/testing/tests/package/sample_python_git.py
 create mode 100644 support/testing/tests/package/test_python_flask.py
 create mode 100644 support/testing/tests/package/test_python_flask_expects_json.py
 create mode 100644 support/testing/tests/package/test_python_git.py

Comments

Arnout Vandecappelle Sept. 23, 2021, 8:08 p.m. UTC | #1
On 19/09/2021 14:45, Thomas Petazzoni wrote:
> Hello,
> 
> A small patch series that:
> 
>   - Updates python-smmap2 and python-gitdb2 to newer versions (must be
>     done in lockstep)
> 
>   - Adds a python-flask test
> 
>   - Adds a python-flask-expects-json package, and its associated test.
> 
>   - Adds a python-git package, and its associated test
> 
> Best regards,
> 
> Thomas Petazzoni
> 
> Thomas Petazzoni (4):
>    package/python-{smmap2,gitdb2}: bump versions to 4.0.0 and 4.0.7
>    support/testing/tests/package/test_python_flask: new test
>    package/python-flask-expects-json: new package
>    package/python-git: new package
> 
>   DEVELOPERS                                    | 16 ++++++++

  Since you added stuff to Nicolas' DEVELOPERS entry, it would have been nice to 
put him in Cc...

  Series applied to master, thanks. One changes in patches 3 and 4 which I'll 
comment on there.

  Regards,
  Arnout

>   package/Config.in                             |  2 +
>   package/python-flask-expects-json/Config.in   |  9 +++++
>   .../python-flask-expects-json.hash            |  5 +++
>   .../python-flask-expects-json.mk              | 14 +++++++
>   package/python-git/Config.in                  | 13 +++++++
>   package/python-git/python-git.hash            |  3 ++
>   package/python-git/python-git.mk              | 13 +++++++
>   package/python-gitdb2/Config.in               |  4 +-
>   package/python-gitdb2/python-gitdb2.hash      |  6 +--
>   package/python-gitdb2/python-gitdb2.mk        |  6 +--
>   package/python-smmap2/Config.in               |  1 +
>   package/python-smmap2/python-smmap2.hash      |  6 +--
>   package/python-smmap2/python-smmap2.mk        |  6 +--
>   .../tests/package/sample_python_flask.py      |  7 ++++
>   .../sample_python_flask_expects_json.py       | 18 +++++++++
>   .../tests/package/sample_python_git.py        |  1 +
>   .../tests/package/test_python_flask.py        | 29 ++++++++++++++
>   .../package/test_python_flask_expects_json.py | 38 +++++++++++++++++++
>   .../testing/tests/package/test_python_git.py  | 11 ++++++
>   .../tests/package/test_python_gitdb2.py       | 10 -----
>   .../tests/package/test_python_smmap2.py       | 10 -----
>   22 files changed, 194 insertions(+), 34 deletions(-)
>   create mode 100644 package/python-flask-expects-json/Config.in
>   create mode 100644 package/python-flask-expects-json/python-flask-expects-json.hash
>   create mode 100644 package/python-flask-expects-json/python-flask-expects-json.mk
>   create mode 100644 package/python-git/Config.in
>   create mode 100644 package/python-git/python-git.hash
>   create mode 100644 package/python-git/python-git.mk
>   create mode 100644 support/testing/tests/package/sample_python_flask.py
>   create mode 100644 support/testing/tests/package/sample_python_flask_expects_json.py
>   create mode 100644 support/testing/tests/package/sample_python_git.py
>   create mode 100644 support/testing/tests/package/test_python_flask.py
>   create mode 100644 support/testing/tests/package/test_python_flask_expects_json.py
>   create mode 100644 support/testing/tests/package/test_python_git.py
>