Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/python-rfc3987: new package
@ 2022-05-10  7:14 yegorslists--- via buildroot
  2022-07-23 19:13 ` Thomas Petazzoni via buildroot
  0 siblings, 1 reply; 2+ messages in thread
From: yegorslists--- via buildroot @ 2022-05-10  7:14 UTC (permalink / raw)
  To: buildroot; +Cc: Asaf Kahlon, Thomas Petazzoni

From: Yegor Yefremov <yegorslists@googlemail.com>

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 package/Config.in                          |  1 +
 package/python-rfc3987/Config.in           |  7 +++++++
 package/python-rfc3987/python-rfc3987.hash |  5 +++++
 package/python-rfc3987/python-rfc3987.mk   | 14 ++++++++++++++
 4 files changed, 27 insertions(+)
 create mode 100644 package/python-rfc3987/Config.in
 create mode 100644 package/python-rfc3987/python-rfc3987.hash
 create mode 100644 package/python-rfc3987/python-rfc3987.mk

diff --git a/package/Config.in b/package/Config.in
index 8892134133..68eafd2463 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1205,6 +1205,7 @@ menu "External python modules"
 	source "package/python-requests/Config.in"
 	source "package/python-requests-oauthlib/Config.in"
 	source "package/python-requests-toolbelt/Config.in"
+	source "package/python-rfc3987/Config.in"
 	source "package/python-rpi-gpio/Config.in"
 	source "package/python-rpi-ws281x/Config.in"
 	source "package/python-rsa/Config.in"
diff --git a/package/python-rfc3987/Config.in b/package/python-rfc3987/Config.in
new file mode 100644
index 0000000000..3cd74f5314
--- /dev/null
+++ b/package/python-rfc3987/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PYTHON_RFC3987
+	bool "python-rfc3987"
+	help
+	  Parsing and validation of URIs (RFC 3986) and IRIs (RFC
+	  3987).
+
+	  http://pypi.python.org/pypi/rfc3987
diff --git a/package/python-rfc3987/python-rfc3987.hash b/package/python-rfc3987/python-rfc3987.hash
new file mode 100644
index 0000000000..013cee6161
--- /dev/null
+++ b/package/python-rfc3987/python-rfc3987.hash
@@ -0,0 +1,5 @@
+# md5, sha256 from https://pypi.org/pypi/rfc3987/json
+md5  b6c4028acdc788a9ba697e1c1d6b896c  rfc3987-1.3.8.tar.gz
+sha256  d3c4d257a560d544e9826b38bc81db676890c79ab9d7ac92b39c7a253d5ca733  rfc3987-1.3.8.tar.gz
+# Locally computed sha256 checksums
+sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  COPYING.txt
diff --git a/package/python-rfc3987/python-rfc3987.mk b/package/python-rfc3987/python-rfc3987.mk
new file mode 100644
index 0000000000..cad17e8de2
--- /dev/null
+++ b/package/python-rfc3987/python-rfc3987.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# python-rfc3987
+#
+################################################################################
+
+PYTHON_RFC3987_VERSION = 1.3.8
+PYTHON_RFC3987_SOURCE = rfc3987-$(PYTHON_RFC3987_VERSION).tar.gz
+PYTHON_RFC3987_SITE = https://files.pythonhosted.org/packages/14/bb/f1395c4b62f251a1cb503ff884500ebd248eed593f41b469f89caa3547bd
+PYTHON_RFC3987_SETUP_TYPE = setuptools
+PYTHON_RFC3987_LICENSE = GPL-3.0+
+PYTHON_RFC3987_LICENSE_FILES = COPYING.txt
+
+$(eval $(python-package))
-- 
2.17.0

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

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Buildroot] [PATCH] package/python-rfc3987: new package
  2022-05-10  7:14 [Buildroot] [PATCH] package/python-rfc3987: new package yegorslists--- via buildroot
@ 2022-07-23 19:13 ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-07-23 19:13 UTC (permalink / raw)
  To: yegorslists--- via buildroot; +Cc: Asaf Kahlon

On Tue, 10 May 2022 09:14:30 +0200
yegorslists--- via buildroot <buildroot@buildroot.org> wrote:

> From: Yegor Yefremov <yegorslists@googlemail.com>
> 
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> ---
>  package/Config.in                          |  1 +
>  package/python-rfc3987/Config.in           |  7 +++++++
>  package/python-rfc3987/python-rfc3987.hash |  5 +++++
>  package/python-rfc3987/python-rfc3987.mk   | 14 ++++++++++++++
>  4 files changed, 27 insertions(+)
>  create mode 100644 package/python-rfc3987/Config.in
>  create mode 100644 package/python-rfc3987/python-rfc3987.hash
>  create mode 100644 package/python-rfc3987/python-rfc3987.mk

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-07-23 19:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-10  7:14 [Buildroot] [PATCH] package/python-rfc3987: new package yegorslists--- via buildroot
2022-07-23 19:13 ` Thomas Petazzoni via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox