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 2/5] package/python-pure-eval: new package
Date: Wed, 14 Jun 2023 13:40:29 +0200	[thread overview]
Message-ID: <87h6ras24y.fsf@48ers.dk> (raw)
In-Reply-To: <20230528190111.2430580-2-romain.naour@gmail.com> (Romain Naour's message of "Sun, 28 May 2023 21:01:08 +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-pure-eval/Config.in             |  6 ++++++
 >  package/python-pure-eval/python-pure-eval.hash |  5 +++++
 >  package/python-pure-eval/python-pure-eval.mk   | 16 ++++++++++++++++
 >  4 files changed, 28 insertions(+)
 >  create mode 100644 package/python-pure-eval/Config.in
 >  create mode 100644 package/python-pure-eval/python-pure-eval.hash
 >  create mode 100644 package/python-pure-eval/python-pure-eval.mk

 > diff --git a/package/Config.in b/package/Config.in
 > index 82aa348455..3da005b5e5 100644
 > --- a/package/Config.in
 > +++ b/package/Config.in
 > @@ -1190,6 +1190,7 @@ menu "External python modules"
 >  	source "package/python-psycopg2/Config.in"
 >  	source "package/python-ptyprocess/Config.in"
 >  	source "package/python-pudb/Config.in"
 > +	source "package/python-pure-eval/Config.in"
 >  	source "package/python-py/Config.in"
 >  	source "package/python-pyaes/Config.in"
 >  	source "package/python-pyalsa/Config.in"
 > diff --git a/package/python-pure-eval/Config.in b/package/python-pure-eval/Config.in
 > new file mode 100644
 > index 0000000000..f6ccd6056d
 > --- /dev/null
 > +++ b/package/python-pure-eval/Config.in
 > @@ -0,0 +1,6 @@
 > +config BR2_PACKAGE_PYTHON_PURE_EVAL
 > +	bool "python-pure-eval"
 > +	help
 > +	  Safely evaluate AST nodes without side effects.
 > +
 > +	  http://github.com/alexmojaki/pure_eval
 > diff --git a/package/python-pure-eval/python-pure-eval.hash b/package/python-pure-eval/python-pure-eval.hash
 > new file mode 100644
 > index 0000000000..5bf5dcb749
 > --- /dev/null
 > +++ b/package/python-pure-eval/python-pure-eval.hash
 > @@ -0,0 +1,5 @@
 > +# md5, sha256 from https://pypi.org/pypi/pure_eval/json
 > +md5  212fd27ca2c58d9effddec69748d738a  pure_eval-0.2.2.tar.gz
 > +sha256  2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3  pure_eval-0.2.2.tar.gz
 > +# Locally computed sha256 checksums
 > +sha256  a476a2cb0ef4c41450340a577a28b91ac4c7f669136b2ee148047fabd5fc4181  LICENSE.txt
 > diff --git a/package/python-pure-eval/python-pure-eval.mk b/package/python-pure-eval/python-pure-eval.mk
 > new file mode 100644
 > index 0000000000..f139ea270f
 > --- /dev/null
 > +++ b/package/python-pure-eval/python-pure-eval.mk
 > @@ -0,0 +1,16 @@
 > +################################################################################
 > +#
 > +# python-pure-eval
 > +#
 > +################################################################################
 > +
 > +PYTHON_PURE_EVAL_VERSION = 0.2.2
 > +PYTHON_PURE_EVAL_SOURCE = pure_eval-$(PYTHON_PURE_EVAL_VERSION).tar.gz
 > +PYTHON_PURE_EVAL_SITE = https://files.pythonhosted.org/packages/97/5a/0bc937c25d3ce4e0a74335222aee05455d6afa2888032185f8ab50cdf6fd
 > +PYTHON_PURE_EVAL_SETUP_TYPE = setuptools
 > +PYTHON_PURE_EVAL_LICENSE = MIT
 > +PYTHON_PURE_EVAL_LICENSE_FILES = LICENSE.txt
 > +
 > +PYTHON_PURE_EVAL_DEPENDENCIES = host-python-setuptools-scm
 > +
 > +$(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:40 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 [this message]
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
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=87h6ras24y.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.