Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Asaf Kahlon <asafka7@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/2] package/python-entrypoints: new package
Date: Mon, 21 Oct 2019 16:40:24 +0300	[thread overview]
Message-ID: <20191021134031.20586-4-asafka7@gmail.com> (raw)
In-Reply-To: <20191021134031.20586-1-asafka7@gmail.com>

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
---
 package/Config.in                                  |  1 +
 package/python-entrypoints/Config.in               |  6 ++++++
 package/python-entrypoints/python-entrypoints.hash |  5 +++++
 package/python-entrypoints/python-entrypoints.mk   | 14 ++++++++++++++
 4 files changed, 26 insertions(+)
 create mode 100644 package/python-entrypoints/Config.in
 create mode 100644 package/python-entrypoints/python-entrypoints.hash
 create mode 100644 package/python-entrypoints/python-entrypoints.mk

diff --git a/package/Config.in b/package/Config.in
index c8ff524e83..bdaa310177 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -897,6 +897,7 @@ menu "External python modules"
 	source "package/python-dpkt/Config.in"
 	source "package/python-ecdsa/Config.in"
 	source "package/python-engineio/Config.in"
+	source "package/python-entrypoints/Config.in"
 	source "package/python-enum/Config.in"
 	source "package/python-enum34/Config.in"
 	source "package/python-falcon/Config.in"
diff --git a/package/python-entrypoints/Config.in b/package/python-entrypoints/Config.in
new file mode 100644
index 0000000000..8253a04591
--- /dev/null
+++ b/package/python-entrypoints/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PYTHON_ENTRYPOINTS
+	bool "python-entrypoints"
+	help
+	  Discover and load entry points from installed packages.
+
+	  https://github.com/takluyver/entrypoints
diff --git a/package/python-entrypoints/python-entrypoints.hash b/package/python-entrypoints/python-entrypoints.hash
new file mode 100644
index 0000000000..c645452109
--- /dev/null
+++ b/package/python-entrypoints/python-entrypoints.hash
@@ -0,0 +1,5 @@
+# md5, sha256 from https://pypi.org/pypi/entrypoints/json
+md5	c5c61ea2e46a0c50ea08f4af7955a0b1  entrypoints-0.3.tar.gz
+sha256	c70dd71abe5a8c85e55e12c19bd91ccfeec11a6e99044204511f9ed547d48451  entrypoints-0.3.tar.gz
+# Locally computed sha256 checksums
+sha256	de5fcd7349cdf399b0707a2a024833c4704743650133c72d6f0ff7561a03a848  LICENSE
diff --git a/package/python-entrypoints/python-entrypoints.mk b/package/python-entrypoints/python-entrypoints.mk
new file mode 100644
index 0000000000..7ab1b4d64a
--- /dev/null
+++ b/package/python-entrypoints/python-entrypoints.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# python-entrypoints
+#
+################################################################################
+
+PYTHON_ENTRYPOINTS_VERSION = 0.3
+PYTHON_ENTRYPOINTS_SOURCE = entrypoints-$(PYTHON_ENTRYPOINTS_VERSION).tar.gz
+PYTHON_ENTRYPOINTS_SITE = https://files.pythonhosted.org/packages/b4/ef/063484f1f9ba3081e920ec9972c96664e2edb9fdc3d8669b0e3b8fc0ad7c
+PYTHON_ENTRYPOINTS_SETUP_TYPE = distutils
+PYTHON_ENTRYPOINTS_LICENSE = MIT
+PYTHON_ENTRYPOINTS_LICENSE_FILES = LICENSE
+
+$(eval $(python-package))
-- 
2.20.1

  parent reply	other threads:[~2019-10-21 13:40 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-21 13:40 [Buildroot] [PATCH 1/1] package/python-asn1crypyo: bump to version 1.2.0 Asaf Kahlon
2019-10-21 13:40 ` [Buildroot] [PATCH 1/1] package/python-cheroot: bump to version 8.2.1 Asaf Kahlon
2019-10-21 17:11   ` Thomas Petazzoni
2019-10-21 13:40 ` [Buildroot] [PATCH 1/1] package/python-docker: bump to version 4.1.0 Asaf Kahlon
2019-10-21 17:11   ` Thomas Petazzoni
2019-10-23 15:40   ` Peter Korsgaard
2019-10-23 19:20     ` Asaf Kahlon
2019-10-23 19:46       ` Peter Korsgaard
2019-10-21 13:40 ` Asaf Kahlon [this message]
2019-10-21 17:13   ` [Buildroot] [PATCH 1/2] package/python-entrypoints: new package Thomas Petazzoni
2019-10-21 19:01     ` Asaf Kahlon
2019-10-21 19:19       ` Thomas Petazzoni
2019-10-21 19:31         ` Asaf Kahlon
2019-10-21 21:17           ` Thomas Petazzoni
2020-02-02 19:49   ` Peter Korsgaard
2019-10-21 13:40 ` [Buildroot] [PATCH 1/1] package/python-flask-sqlalchemy: bump to version 2.4.1 Asaf Kahlon
2019-10-21 17:13   ` Thomas Petazzoni
2019-10-21 13:40 ` [Buildroot] [PATCH 1/1] package/python-flup: bump to version 1.0.3 Asaf Kahlon
2019-10-21 17:13   ` Thomas Petazzoni
2019-10-21 13:40 ` [Buildroot] [PATCH 1/1] package/python-pymodbus: bump to version 2.2.0 Asaf Kahlon
2019-10-21 17:13   ` Thomas Petazzoni
2019-10-21 13:40 ` [Buildroot] [PATCH 1/1] package/python-xlsxwriter: bump to version 1.2.2 Asaf Kahlon
2019-10-21 17:13   ` Thomas Petazzoni
2019-10-21 13:40 ` [Buildroot] [PATCH 1/2] package/python-zc-lockfile: new package Asaf Kahlon
2020-02-04  9:58   ` Peter Korsgaard
2019-10-21 13:40 ` [Buildroot] [PATCH 2/2] package/python-cherrypy: bump to version 18.3.0 Asaf Kahlon
2020-02-04 10:03   ` Peter Korsgaard
2019-10-21 13:40 ` [Buildroot] [PATCH 2/2] package/python-keyring: bump to version 19.2.0 Asaf Kahlon
2020-04-13 19:54   ` Thomas Petazzoni
2019-10-21 17:11 ` [Buildroot] [PATCH 1/1] package/python-asn1crypyo: bump to version 1.2.0 Thomas Petazzoni

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=20191021134031.20586-4-asafka7@gmail.com \
    --to=asafka7@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox