* [Buildroot] [PATCH 1/2] package/python-telnetlib3: new package
@ 2024-12-23 14:49 James Hilliard
2024-12-23 14:49 ` [Buildroot] [PATCH 2/2] package/python-aiomonitor: bump to version 0.7.1 James Hilliard
2024-12-27 14:35 ` [Buildroot] [PATCH 1/2] package/python-telnetlib3: new package Julien Olivain
0 siblings, 2 replies; 3+ messages in thread
From: James Hilliard @ 2024-12-23 14:49 UTC (permalink / raw)
To: buildroot; +Cc: James Hilliard, Thomas Petazzoni
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
package/Config.in | 1 +
package/python-telnetlib3/Config.in | 6 ++++++
package/python-telnetlib3/python-telnetlib3.hash | 5 +++++
package/python-telnetlib3/python-telnetlib3.mk | 14 ++++++++++++++
4 files changed, 26 insertions(+)
create mode 100644 package/python-telnetlib3/Config.in
create mode 100644 package/python-telnetlib3/python-telnetlib3.hash
create mode 100644 package/python-telnetlib3/python-telnetlib3.mk
diff --git a/package/Config.in b/package/Config.in
index 06472aa972..8da59cdcbf 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1421,6 +1421,7 @@ menu "External python modules"
source "package/python-systemd/Config.in"
source "package/python-tabledata/Config.in"
source "package/python-tcolorpy/Config.in"
+ source "package/python-telnetlib3/Config.in"
source "package/python-tempora/Config.in"
source "package/python-termcolor/Config.in"
source "package/python-terminaltables/Config.in"
diff --git a/package/python-telnetlib3/Config.in b/package/python-telnetlib3/Config.in
new file mode 100644
index 0000000000..487258c272
--- /dev/null
+++ b/package/python-telnetlib3/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PYTHON_TELNETLIB3
+ bool "python-telnetlib3"
+ help
+ Python 3 asyncio Telnet server and client Protocol library.
+
+ http://telnetlib3.rtfd.org/
diff --git a/package/python-telnetlib3/python-telnetlib3.hash b/package/python-telnetlib3/python-telnetlib3.hash
new file mode 100644
index 0000000000..db18889b8f
--- /dev/null
+++ b/package/python-telnetlib3/python-telnetlib3.hash
@@ -0,0 +1,5 @@
+# md5, sha256 from https://pypi.org/pypi/telnetlib3/json
+md5 2dfac7e10ed63c408da50ea712415f87 telnetlib3-2.0.4.tar.gz
+sha256 dbcbc16456a0e03a62431be7cfefff00515ab2f4ce2afbaf0d3a0e51a98c948d telnetlib3-2.0.4.tar.gz
+# Locally computed sha256 checksums
+sha256 caaf4ac82c4363d4874a49b50af15797618f6aee5bf42218697cdcb41c391ca5 LICENSE.txt
diff --git a/package/python-telnetlib3/python-telnetlib3.mk b/package/python-telnetlib3/python-telnetlib3.mk
new file mode 100644
index 0000000000..e68533af5c
--- /dev/null
+++ b/package/python-telnetlib3/python-telnetlib3.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# python-telnetlib3
+#
+################################################################################
+
+PYTHON_TELNETLIB3_VERSION = 2.0.4
+PYTHON_TELNETLIB3_SOURCE = telnetlib3-$(PYTHON_TELNETLIB3_VERSION).tar.gz
+PYTHON_TELNETLIB3_SITE = https://files.pythonhosted.org/packages/ef/af/0fadfddd1764e627f4ba9c7381caaf121795ed459a1cc3d0fbb89a187954
+PYTHON_TELNETLIB3_SETUP_TYPE = setuptools
+PYTHON_TELNETLIB3_LICENSE = ISC
+PYTHON_TELNETLIB3_LICENSE_FILES = LICENSE.txt
+
+$(eval $(python-package))
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 2/2] package/python-aiomonitor: bump to version 0.7.1
2024-12-23 14:49 [Buildroot] [PATCH 1/2] package/python-telnetlib3: new package James Hilliard
@ 2024-12-23 14:49 ` James Hilliard
2024-12-27 14:35 ` [Buildroot] [PATCH 1/2] package/python-telnetlib3: new package Julien Olivain
1 sibling, 0 replies; 3+ messages in thread
From: James Hilliard @ 2024-12-23 14:49 UTC (permalink / raw)
To: buildroot; +Cc: James Hilliard, Thomas Petazzoni
Add new python-telnetlib3 runtime dependency.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
package/python-aiomonitor/Config.in | 1 +
package/python-aiomonitor/python-aiomonitor.hash | 4 ++--
package/python-aiomonitor/python-aiomonitor.mk | 4 ++--
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/package/python-aiomonitor/Config.in b/package/python-aiomonitor/Config.in
index 9f3787f9b3..dbe0f133dc 100644
--- a/package/python-aiomonitor/Config.in
+++ b/package/python-aiomonitor/Config.in
@@ -7,6 +7,7 @@ config BR2_PACKAGE_PYTHON_AIOMONITOR
select BR2_PACKAGE_PYTHON_JANUS # runtime
select BR2_PACKAGE_PYTHON_JINJA2 # runtime
select BR2_PACKAGE_PYTHON_PROMPT_TOOLKIT # runtime
+ select BR2_PACKAGE_PYTHON_TELNETLIB3 # runtime
select BR2_PACKAGE_PYTHON_TERMINALTABLES # runtime
select BR2_PACKAGE_PYTHON_TRAFARET # runtime
select BR2_PACKAGE_PYTHON_TYPING_EXTENSIONS # runtime
diff --git a/package/python-aiomonitor/python-aiomonitor.hash b/package/python-aiomonitor/python-aiomonitor.hash
index f1c0e37667..fb8300fd0d 100644
--- a/package/python-aiomonitor/python-aiomonitor.hash
+++ b/package/python-aiomonitor/python-aiomonitor.hash
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/aiomonitor/json
-md5 75fc8f84c0ff385931d76c46265cfc0d aiomonitor-0.7.0.tar.gz
-sha256 109b9ad309a44c0c5db1219d106f4062615151ad3f0e288a0c104fbb004d0398 aiomonitor-0.7.0.tar.gz
+md5 e5b17b3baccb6e2b709bd85ab3faee32 aiomonitor-0.7.1.tar.gz
+sha256 beb1f14429bc4a3135bbac32381d242fe2019d74fcf9c86d3f4bd7405dc562e4 aiomonitor-0.7.1.tar.gz
# Locally computed sha256 checksums
sha256 98397c300949e0cc1ddc68b0e48e67b10f2d0a4ffada4903d891a1315fe04156 LICENSE
diff --git a/package/python-aiomonitor/python-aiomonitor.mk b/package/python-aiomonitor/python-aiomonitor.mk
index 8eaddcbfa6..824208ac79 100644
--- a/package/python-aiomonitor/python-aiomonitor.mk
+++ b/package/python-aiomonitor/python-aiomonitor.mk
@@ -4,9 +4,9 @@
#
################################################################################
-PYTHON_AIOMONITOR_VERSION = 0.7.0
+PYTHON_AIOMONITOR_VERSION = 0.7.1
PYTHON_AIOMONITOR_SOURCE = aiomonitor-$(PYTHON_AIOMONITOR_VERSION).tar.gz
-PYTHON_AIOMONITOR_SITE = https://files.pythonhosted.org/packages/50/30/1d903b716489c2b5d0a92baccf172f972e97c2de94d4ea41c154287e9b60
+PYTHON_AIOMONITOR_SITE = https://files.pythonhosted.org/packages/28/0a/805797608db4e30ab588b283137b5b2a735655c20df72f2f9bac41da789e
PYTHON_AIOMONITOR_SETUP_TYPE = setuptools
PYTHON_AIOMONITOR_LICENSE = Apache-2.0
PYTHON_AIOMONITOR_LICENSE_FILES = LICENSE
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/python-telnetlib3: new package
2024-12-23 14:49 [Buildroot] [PATCH 1/2] package/python-telnetlib3: new package James Hilliard
2024-12-23 14:49 ` [Buildroot] [PATCH 2/2] package/python-aiomonitor: bump to version 0.7.1 James Hilliard
@ 2024-12-27 14:35 ` Julien Olivain
1 sibling, 0 replies; 3+ messages in thread
From: Julien Olivain @ 2024-12-27 14:35 UTC (permalink / raw)
To: James Hilliard; +Cc: buildroot, Thomas Petazzoni
On 23/12/2024 15:49, James Hilliard wrote:
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Series applied to master, thanks.
> ---
> package/Config.in | 1 +
> package/python-telnetlib3/Config.in | 6 ++++++
> package/python-telnetlib3/python-telnetlib3.hash | 5 +++++
> package/python-telnetlib3/python-telnetlib3.mk | 14 ++++++++++++++
> 4 files changed, 26 insertions(+)
> create mode 100644 package/python-telnetlib3/Config.in
> create mode 100644 package/python-telnetlib3/python-telnetlib3.hash
> create mode 100644 package/python-telnetlib3/python-telnetlib3.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 06472aa972..8da59cdcbf 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -1421,6 +1421,7 @@ menu "External python modules"
> source "package/python-systemd/Config.in"
> source "package/python-tabledata/Config.in"
> source "package/python-tcolorpy/Config.in"
> + source "package/python-telnetlib3/Config.in"
> source "package/python-tempora/Config.in"
> source "package/python-termcolor/Config.in"
> source "package/python-terminaltables/Config.in"
> diff --git a/package/python-telnetlib3/Config.in
> b/package/python-telnetlib3/Config.in
> new file mode 100644
> index 0000000000..487258c272
> --- /dev/null
> +++ b/package/python-telnetlib3/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PYTHON_TELNETLIB3
> + bool "python-telnetlib3"
> + help
> + Python 3 asyncio Telnet server and client Protocol library.
> +
> + http://telnetlib3.rtfd.org/
> diff --git a/package/python-telnetlib3/python-telnetlib3.hash
> b/package/python-telnetlib3/python-telnetlib3.hash
> new file mode 100644
> index 0000000000..db18889b8f
> --- /dev/null
> +++ b/package/python-telnetlib3/python-telnetlib3.hash
> @@ -0,0 +1,5 @@
> +# md5, sha256 from https://pypi.org/pypi/telnetlib3/json
> +md5 2dfac7e10ed63c408da50ea712415f87 telnetlib3-2.0.4.tar.gz
> +sha256
> dbcbc16456a0e03a62431be7cfefff00515ab2f4ce2afbaf0d3a0e51a98c948d
> telnetlib3-2.0.4.tar.gz
> +# Locally computed sha256 checksums
> +sha256
> caaf4ac82c4363d4874a49b50af15797618f6aee5bf42218697cdcb41c391ca5
> LICENSE.txt
> diff --git a/package/python-telnetlib3/python-telnetlib3.mk
> b/package/python-telnetlib3/python-telnetlib3.mk
> new file mode 100644
> index 0000000000..e68533af5c
> --- /dev/null
> +++ b/package/python-telnetlib3/python-telnetlib3.mk
> @@ -0,0 +1,14 @@
> +################################################################################
> +#
> +# python-telnetlib3
> +#
> +################################################################################
> +
> +PYTHON_TELNETLIB3_VERSION = 2.0.4
> +PYTHON_TELNETLIB3_SOURCE =
> telnetlib3-$(PYTHON_TELNETLIB3_VERSION).tar.gz
> +PYTHON_TELNETLIB3_SITE =
> https://files.pythonhosted.org/packages/ef/af/0fadfddd1764e627f4ba9c7381caaf121795ed459a1cc3d0fbb89a187954
> +PYTHON_TELNETLIB3_SETUP_TYPE = setuptools
> +PYTHON_TELNETLIB3_LICENSE = ISC
> +PYTHON_TELNETLIB3_LICENSE_FILES = LICENSE.txt
> +
> +$(eval $(python-package))
> --
> 2.34.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-12-27 14:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-23 14:49 [Buildroot] [PATCH 1/2] package/python-telnetlib3: new package James Hilliard
2024-12-23 14:49 ` [Buildroot] [PATCH 2/2] package/python-aiomonitor: bump to version 0.7.1 James Hilliard
2024-12-27 14:35 ` [Buildroot] [PATCH 1/2] package/python-telnetlib3: new package Julien Olivain
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.