All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <peter@korsgaard.com>
To: Romain Naour <romain.naour@gmail.com>
Cc: buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH 4/5] package/python-stack-data: new package
Date: Wed, 14 Jun 2023 13:40:35 +0200	[thread overview]
Message-ID: <87cz1ys24s.fsf@48ers.dk> (raw)
In-Reply-To: <20230528190111.2430580-4-romain.naour@gmail.com> (Romain Naour's message of "Sun, 28 May 2023 21:01:10 +0200")

>>>>> "Romain" == Romain Naour <romain.naour@gmail.com> writes:

 > Signed-off-by: Romain Naour <romain.naour@gmail.com>

Committed to 2023.02.x, thanks.

> ---
 >  package/Config.in                                |  1 +
 >  package/python-stack-data/Config.in              | 10 ++++++++++
 >  package/python-stack-data/python-stack-data.hash |  5 +++++
 >  package/python-stack-data/python-stack-data.mk   | 14 ++++++++++++++
 >  4 files changed, 30 insertions(+)
 >  create mode 100644 package/python-stack-data/Config.in
 >  create mode 100644 package/python-stack-data/python-stack-data.hash
 >  create mode 100644 package/python-stack-data/python-stack-data.mk

 > diff --git a/package/Config.in b/package/Config.in
 > index e018fe66ca..585072aa83 100644
 > --- a/package/Config.in
 > +++ b/package/Config.in
 > @@ -1310,6 +1310,7 @@ menu "External python modules"
 >  	source "package/python-sqlalchemy/Config.in"
 >  	source "package/python-sqliteschema/Config.in"
 >  	source "package/python-sqlparse/Config.in"
 > +	source "package/python-stack-data/Config.in"
 >  	source "package/python-systemd/Config.in"
 >  	source "package/python-tabledata/Config.in"
 >  	source "package/python-tempora/Config.in"
 > diff --git a/package/python-stack-data/Config.in b/package/python-stack-data/Config.in
 > new file mode 100644
 > index 0000000000..508eb9cf13
 > --- /dev/null
 > +++ b/package/python-stack-data/Config.in
 > @@ -0,0 +1,10 @@
 > +config BR2_PACKAGE_PYTHON_STACK_DATA
 > +	bool "python-stack-data"
 > +	select BR2_PACKAGE_PYTHON_ASTTOKENS # runtime
 > +	select BR2_PACKAGE_PYTHON_EXECUTING # runtime
 > +	select BR2_PACKAGE_PYTHON_PURE_EVAL # runtime
 > +	help
 > +	  Extract data from python stack frames and tracebacks
 > +	  for informative displays.
 > +
 > +	  http://github.com/alexmojaki/stack_data
 > diff --git a/package/python-stack-data/python-stack-data.hash b/package/python-stack-data/python-stack-data.hash
 > new file mode 100644
 > index 0000000000..6decd3ca8e
 > --- /dev/null
 > +++ b/package/python-stack-data/python-stack-data.hash
 > @@ -0,0 +1,5 @@
 > +# md5, sha256 from https://pypi.org/pypi/stack_data/json
 > +md5  bf86c3c81a0158e1e7f3979da5a0033b  stack_data-0.6.2.tar.gz
 > +sha256  32d2dd0376772d01b6cb9fc996f3c8b57a357089dec328ed4b6553d037eaf815  stack_data-0.6.2.tar.gz
 > +# Locally computed sha256 checksums
 > +sha256  a476a2cb0ef4c41450340a577a28b91ac4c7f669136b2ee148047fabd5fc4181  LICENSE.txt
 > diff --git a/package/python-stack-data/python-stack-data.mk b/package/python-stack-data/python-stack-data.mk
 > new file mode 100644
 > index 0000000000..494ce8f454
 > --- /dev/null
 > +++ b/package/python-stack-data/python-stack-data.mk
 > @@ -0,0 +1,14 @@
 > +################################################################################
 > +#
 > +# python-stack-data
 > +#
 > +################################################################################
 > +
 > +PYTHON_STACK_DATA_VERSION = 0.6.2
 > +PYTHON_STACK_DATA_SOURCE = stack_data-$(PYTHON_STACK_DATA_VERSION).tar.gz
 > +PYTHON_STACK_DATA_SITE = https://files.pythonhosted.org/packages/db/18/aa7f2b111aeba2cd83503254d9133a912d7f61f459a0c8561858f0d72a56
 > +PYTHON_STACK_DATA_SETUP_TYPE = setuptools
 > +PYTHON_STACK_DATA_LICENSE = MIT
 > +PYTHON_STACK_DATA_LICENSE_FILES = LICENSE.txt
 > +
 > +$(eval $(python-package))
 > -- 

 > 2.34.3

 > _______________________________________________
 > buildroot mailing list
 > buildroot@buildroot.org
 > https://lists.buildroot.org/mailman/listinfo/buildroot


-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  parent reply	other threads:[~2023-06-14 11:41 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-28 19:01 [Buildroot] [PATCH 1/5] package/python-executing: new package Romain Naour
2023-05-28 19:01 ` [Buildroot] [PATCH 2/5] package/python-pure-eval: " Romain Naour
2023-06-02 19:45   ` Peter Korsgaard
2023-06-14 11:40   ` Peter Korsgaard
2023-05-28 19:01 ` [Buildroot] [PATCH 3/5] package/python-asttokens: " Romain Naour
2023-06-02 19:45   ` Peter Korsgaard
2023-06-14 11:40   ` Peter Korsgaard
2023-05-28 19:01 ` [Buildroot] [PATCH 4/5] package/python-stack-data: " Romain Naour
2023-06-02 19:45   ` Peter Korsgaard
2023-06-14 11:40   ` Peter Korsgaard [this message]
2023-05-28 19:01 ` [Buildroot] [PATCH 5/5] package/ipython: add missing dependencies Romain Naour
2023-06-02 19:46   ` Peter Korsgaard
2023-06-14 11:40   ` Peter Korsgaard
2023-06-02 19:42 ` [Buildroot] [PATCH 1/5] package/python-executing: new package Peter Korsgaard
2023-06-14 11:40 ` Peter Korsgaard

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=87cz1ys24s.fsf@48ers.dk \
    --to=peter@korsgaard.com \
    --cc=buildroot@buildroot.org \
    --cc=romain.naour@gmail.com \
    /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.