From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: James Hilliard <james.hilliard1@gmail.com>
Cc: Asaf Kahlon <asafka7@gmail.com>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH 1/3] package/python-annotated-types: new package
Date: Sun, 26 Nov 2023 18:11:53 +0100 [thread overview]
Message-ID: <20231126171153.GY3177259@scaer> (raw)
In-Reply-To: <20231125081052.881728-1-james.hilliard1@gmail.com>
James, All,
On 2023-11-25 01:10 -0700, James Hilliard spake thusly:
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Applied to next, thanks.
Regards,
Yann E. MORIN.
> ---
> package/Config.in | 1 +
> package/python-annotated-types/Config.in | 6 ++++++
> .../python-annotated-types.hash | 5 +++++
> .../python-annotated-types.mk | 15 +++++++++++++++
> 4 files changed, 27 insertions(+)
> create mode 100644 package/python-annotated-types/Config.in
> create mode 100644 package/python-annotated-types/python-annotated-types.hash
> create mode 100644 package/python-annotated-types/python-annotated-types.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 5a3410d758..68e6e29a4d 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -974,6 +974,7 @@ menu "External python modules"
> source "package/python-aiozipkin/Config.in"
> source "package/python-alembic/Config.in"
> source "package/python-alsaaudio/Config.in"
> + source "package/python-annotated-types/Config.in"
> source "package/python-ansicolors/Config.in"
> source "package/python-apispec/Config.in"
> source "package/python-appdirs/Config.in"
> diff --git a/package/python-annotated-types/Config.in b/package/python-annotated-types/Config.in
> new file mode 100644
> index 0000000000..36525a526b
> --- /dev/null
> +++ b/package/python-annotated-types/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PYTHON_ANNOTATED_TYPES
> + bool "python-annotated-types"
> + help
> + Reusable constraint types to use with typing.Annotated.
> +
> + https://github.com/annotated-types/annotated-types
> diff --git a/package/python-annotated-types/python-annotated-types.hash b/package/python-annotated-types/python-annotated-types.hash
> new file mode 100644
> index 0000000000..1663bcb51f
> --- /dev/null
> +++ b/package/python-annotated-types/python-annotated-types.hash
> @@ -0,0 +1,5 @@
> +# md5, sha256 from https://pypi.org/pypi/annotated-types/json
> +md5 5fe2125b08851f0d05a8efad6456861c annotated_types-0.6.0.tar.gz
> +sha256 563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d annotated_types-0.6.0.tar.gz
> +# Locally computed sha256 checksums
> +sha256 fe1049884b1a0d9342901e88e07f32925d24b3121d9972b6a6805fb9824b095d LICENSE
> diff --git a/package/python-annotated-types/python-annotated-types.mk b/package/python-annotated-types/python-annotated-types.mk
> new file mode 100644
> index 0000000000..8bc617069d
> --- /dev/null
> +++ b/package/python-annotated-types/python-annotated-types.mk
> @@ -0,0 +1,15 @@
> +################################################################################
> +#
> +# python-annotated-types
> +#
> +################################################################################
> +
> +PYTHON_ANNOTATED_TYPES_VERSION = 0.6.0
> +PYTHON_ANNOTATED_TYPES_SOURCE = annotated_types-$(PYTHON_ANNOTATED_TYPES_VERSION).tar.gz
> +PYTHON_ANNOTATED_TYPES_SITE = https://files.pythonhosted.org/packages/67/fe/8c7b275824c6d2cd17c93ee85d0ee81c090285b6d52f4876ccc47cf9c3c4
> +PYTHON_ANNOTATED_TYPES_SETUP_TYPE = pep517
> +PYTHON_ANNOTATED_TYPES_LICENSE = MIT
> +PYTHON_ANNOTATED_TYPES_LICENSE_FILES = LICENSE
> +PYTHON_ANNOTATED_TYPES_DEPENDENCIES = host-python-hatchling
> +
> +$(eval $(python-package))
> --
> 2.34.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
prev parent reply other threads:[~2023-11-26 17:12 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-25 8:10 [Buildroot] [PATCH 1/3] package/python-annotated-types: new package James Hilliard
2023-11-25 8:10 ` [Buildroot] [PATCH 2/3] package/python-pydantic-core: " James Hilliard
2023-11-25 15:36 ` Yann E. MORIN
2023-11-26 0:11 ` James Hilliard
2023-11-26 11:27 ` Yann E. MORIN
2023-11-26 16:19 ` James Hilliard
2023-11-26 16:39 ` Yann E. MORIN
2023-11-26 16:46 ` James Hilliard
2023-11-26 17:12 ` Yann E. MORIN
2023-11-25 8:10 ` [Buildroot] [PATCH 3/3] package/python-pydantic: bump to version 2.5.2 James Hilliard
2023-11-26 17:12 ` Yann E. MORIN
2023-11-26 17:11 ` Yann E. MORIN [this message]
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=20231126171153.GY3177259@scaer \
--to=yann.morin.1998@free.fr \
--cc=asafka7@gmail.com \
--cc=buildroot@buildroot.org \
--cc=james.hilliard1@gmail.com \
--cc=thomas.petazzoni@bootlin.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox