All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Raphaël Mélotte" <raphael.melotte@essensium.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 2/4] package/python-botocore: new package.
Date: Fri,  7 Feb 2020 12:43:48 +0100	[thread overview]
Message-ID: <20200207114350.31365-3-raphael.melotte@essensium.com> (raw)
In-Reply-To: <20200207114350.31365-1-raphael.melotte@essensium.com>

Low-level, data-driven core of boto 3.

Signed-off-by: Rapha?l M?lotte <raphael.melotte@essensium.com>
---
 DEVELOPERS                                   |  1 +
 package/Config.in                            |  1 +
 package/python-botocore/Config.in            | 10 ++++++++++
 package/python-botocore/python-botocore.hash |  5 +++++
 package/python-botocore/python-botocore.mk   | 14 ++++++++++++++
 5 files changed, 31 insertions(+)
 create mode 100644 package/python-botocore/Config.in
 create mode 100644 package/python-botocore/python-botocore.hash
 create mode 100644 package/python-botocore/python-botocore.mk

diff --git a/DEVELOPERS b/DEVELOPERS
index ea44b0709a..5aa26a88af 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -2077,6 +2077,7 @@ F:	package/uhttpd/
 F:	package/ustream-ssl/
 
 N:  Rapha?l M?lotte <raphael.melotte@essensium.com>
+F:  package/python-botocore/
 F:  package/python-jmespath/
 
 N:	Refik Tuzakli <tuzakli.refik@gmail.com>
diff --git a/package/Config.in b/package/Config.in
index 920de84a7e..9279ad20c9 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -877,6 +877,7 @@ menu "External python modules"
 	source "package/python-beautifulsoup4/Config.in"
 	source "package/python-bitstring/Config.in"
 	source "package/python-bluezero/Config.in"
+	source "package/python-botocore/Config.in"
 	source "package/python-bottle/Config.in"
 	source "package/python-brotli/Config.in"
 	source "package/python-bunch/Config.in"
diff --git a/package/python-botocore/Config.in b/package/python-botocore/Config.in
new file mode 100644
index 0000000000..a552900b6c
--- /dev/null
+++ b/package/python-botocore/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_PYTHON_BOTOCORE
+	bool "python-botocore"
+	select BR2_PACKAGE_PYTHON_JMESPATH # runtime
+	select BR2_PACKAGE_PYTHON_DOCUTILS # runtime
+	select BR2_PACKAGE_PYTHON_DATEUTIL # runtime
+	select BR2_PACKAGE_PYTHON_URLLIB3 # runtime
+	help
+	  Low-level, data-driven core of boto 3.
+
+	  https://github.com/boto/botocore
diff --git a/package/python-botocore/python-botocore.hash b/package/python-botocore/python-botocore.hash
new file mode 100644
index 0000000000..199c4cdff1
--- /dev/null
+++ b/package/python-botocore/python-botocore.hash
@@ -0,0 +1,5 @@
+# md5, sha256 from https://pypi.org/pypi/botocore/json
+md5	a75ae28d58d64dbf689d18ac3424342a  botocore-1.12.210.tar.gz
+sha256	7983b7624b3f71648a7101fbcb437e3d599b4f79b754e89220e574482a2f8298  botocore-1.12.210.tar.gz
+# Locally computed sha256 checksums
+sha256	0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  LICENSE.txt
diff --git a/package/python-botocore/python-botocore.mk b/package/python-botocore/python-botocore.mk
new file mode 100644
index 0000000000..378bd93768
--- /dev/null
+++ b/package/python-botocore/python-botocore.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# python-botocore
+#
+################################################################################
+
+PYTHON_BOTOCORE_VERSION = 1.12.210
+PYTHON_BOTOCORE_SOURCE = botocore-$(PYTHON_BOTOCORE_VERSION).tar.gz
+PYTHON_BOTOCORE_SITE = https://files.pythonhosted.org/packages/39/78/068e7cf5bb9901f34eacbf449cdfbdf32e470333930cbcda890cfc9fb820
+PYTHON_BOTOCORE_SETUP_TYPE = setuptools
+PYTHON_BOTOCORE_LICENSE = Apache-2.0
+PYTHON_BOTOCORE_LICENSE_FILES = LICENSE.txt
+
+$(eval $(python-package))
-- 
2.23.0

  parent reply	other threads:[~2020-02-07 11:43 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-07 11:43 [Buildroot] [PATCH 0/4] Add python-boto3 Raphaël Mélotte
2020-02-07 11:43 ` [Buildroot] [PATCH 1/4] package/python-jmespath: new package Raphaël Mélotte
2020-02-07 11:49   ` Yegor Yefremov
2020-02-15 14:31   ` Jagan Teki
2020-02-07 11:43 ` Raphaël Mélotte [this message]
2020-02-07 11:50   ` [Buildroot] [PATCH 2/4] package/python-botocore: " Yegor Yefremov
2020-02-15 14:30   ` Jagan Teki
2020-02-07 11:43 ` [Buildroot] [PATCH 3/4] package/python-s3transfer: " Raphaël Mélotte
2020-02-07 11:50   ` Yegor Yefremov
2020-02-15 14:31   ` Jagan Teki
2020-02-07 11:43 ` [Buildroot] [PATCH 4/4] package/python-boto3: " Raphaël Mélotte
2020-02-07 11:50   ` Yegor Yefremov
2020-02-15 14:29   ` Jagan Teki
2020-09-15 20:34 ` [Buildroot] [PATCH 0/4] Add python-boto3 Yann E. MORIN

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=20200207114350.31365-3-raphael.melotte@essensium.com \
    --to=raphael.melotte@essensium.com \
    --cc=buildroot@busybox.net \
    /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.