All of lore.kernel.org
 help / color / mirror / Atom feed
From: Asaf Kahlon <asafka7@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 21/23] python-pyhamcrest: new package
Date: Wed, 26 Sep 2018 18:35:03 +0300	[thread overview]
Message-ID: <20180926153505.3411-22-asafka7@gmail.com> (raw)
In-Reply-To: <20180926153505.3411-1-asafka7@gmail.com>

Hamcrest framework for matcher objects.

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

diff --git a/DEVELOPERS b/DEVELOPERS
index 986423e9a7..b667b24d18 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -207,6 +207,7 @@ F:	package/python-paramiko/
 F:	package/python-passlib/
 F:	package/python-pyasn1/
 F:	package/python-pyasn1-modules/
+F:	package/python-pyhamcrest/
 F:	package/python-pyroute2/
 F:	package/python-pytz/
 F:	package/python-reentry/
diff --git a/package/Config.in b/package/Config.in
index 38b4196f67..5034126c68 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -929,6 +929,7 @@ menu "External python modules"
 	source "package/python-pyftpdlib/Config.in"
 	source "package/python-pygame/Config.in"
 	source "package/python-pygments/Config.in"
+	source "package/python-pyhamcrest/Config.in"
 	source "package/python-pyicu/Config.in"
 	source "package/python-pyinotify/Config.in"
 	source "package/python-pylibftdi/Config.in"
diff --git a/package/python-pyhamcrest/Config.in b/package/python-pyhamcrest/Config.in
new file mode 100644
index 0000000000..c2a4dc06f7
--- /dev/null
+++ b/package/python-pyhamcrest/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_PYTHON_PYHAMCREST
+	bool "python-pyhamcrest"
+	select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
+	select BR2_PACKAGE_PYTHON_SIX # runtime
+	help
+	  Hamcrest framework for matcher objects.
+
+	  https://github.com/hamcrest/PyHamcrest
diff --git a/package/python-pyhamcrest/python-pyhamcrest.hash b/package/python-pyhamcrest/python-pyhamcrest.hash
new file mode 100644
index 0000000000..0c1660e08a
--- /dev/null
+++ b/package/python-pyhamcrest/python-pyhamcrest.hash
@@ -0,0 +1,5 @@
+# md5, sha256 from https://pypi.org/pypi/pyhamcrest/json
+md5	8b833a3fa30197455df79424f30c8c3f  PyHamcrest-1.9.0.tar.gz
+sha256	8ffaa0a53da57e89de14ced7185ac746227a8894dbd5a3c718bf05ddbd1d56cd  PyHamcrest-1.9.0.tar.gz
+# Locally computed sha256 checksums
+sha256	ec76c04449607010d061b1e29c9d20a5ffae74db9d04670ae82538ccfe68b941  LICENSE.txt
diff --git a/package/python-pyhamcrest/python-pyhamcrest.mk b/package/python-pyhamcrest/python-pyhamcrest.mk
new file mode 100644
index 0000000000..244aa8c606
--- /dev/null
+++ b/package/python-pyhamcrest/python-pyhamcrest.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# python-pyhamcrest
+#
+################################################################################
+
+PYTHON_PYHAMCREST_VERSION = 1.9.0
+PYTHON_PYHAMCREST_SOURCE = PyHamcrest-$(PYTHON_PYHAMCREST_VERSION).tar.gz
+PYTHON_PYHAMCREST_SITE = https://files.pythonhosted.org/packages/a4/89/a469aad9256aedfbb47a29ec2b2eeb855d9f24a7a4c2ff28bd8d1042ef02
+PYTHON_PYHAMCREST_SETUP_TYPE = setuptools
+PYTHON_PYHAMCREST_LICENSE = BSD-3-Clause
+PYTHON_PYHAMCREST_LICENSE_FILES = LICENSE.txt
+
+$(eval $(python-package))
-- 
2.17.1

  parent reply	other threads:[~2018-09-26 15:35 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-26 15:34 [Buildroot] [PATCH 00/23] Fix python-crossbar to work with python 3.7 Asaf Kahlon
2018-09-26 15:34 ` [Buildroot] [PATCH 01/23] python-attrs: bump to version 18.2.0 Asaf Kahlon
2018-09-28  9:51   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 02/23] python-autobahn: bump to version 18.9.2 Asaf Kahlon
2018-09-28  9:52   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 03/23] python-automat: bump to version 0.7.0 Asaf Kahlon
2018-09-28  9:53   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 04/23] python-hyperlink: bump to version 18.0.0 Asaf Kahlon
2018-09-28 11:10   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 05/23] python-incremental: bump to version 17.5.0 Asaf Kahlon
2018-09-28 11:11   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 06/23] python-jinja2: bump to version 2.10 Asaf Kahlon
2018-09-28 11:12   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 07/23] python-lmdb: bump to version 0.94 Asaf Kahlon
2018-09-28 11:16   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 08/23] python-psutil: bump to version 5.4.7 Asaf Kahlon
2018-10-01  6:47   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 09/23] python-pycparser: bump to version 2.19 Asaf Kahlon
2018-10-01  6:47   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 10/23] python-pynacl: bump to version 1.2.1 Asaf Kahlon
2018-10-02 14:35   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 11/23] python-pyopenssl: bump to version 18.0.0 Asaf Kahlon
2018-10-02 14:40   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 12/23] python-sdnotify: bump to version 0.3.2 Asaf Kahlon
2018-10-02 14:42   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 13/23] python-sortedcontainers: bump to version 2.0.5 Asaf Kahlon
2018-10-02 14:43   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 14/23] python-txaio: bump to version 18.8.1 Asaf Kahlon
2018-10-02 14:55   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 15/23] python-txtorcon: bump to version 18.0.2 Asaf Kahlon
2018-09-29  5:37   ` Ricardo Martincoski
2018-09-29  7:24     ` Asaf Kahlon
2018-10-01  6:44     ` Thomas Petazzoni
2018-10-03 13:39   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 16/23] python-u-msgpack: bump to version 2.5.0 Asaf Kahlon
2018-10-03 14:00   ` Thomas Petazzoni
2018-09-26 15:34 ` [Buildroot] [PATCH 17/23] python-zope-interface: bump to version 4.5.0 Asaf Kahlon
2018-10-03 19:02   ` Thomas Petazzoni
2018-09-26 15:35 ` [Buildroot] [PATCH 18/23] python-pytrie: bump to version 0.3.1 Asaf Kahlon
2018-09-26 15:35 ` [Buildroot] [PATCH 19/23] python-passlib: new package Asaf Kahlon
2018-10-04 11:50   ` Thomas Petazzoni
2018-10-06 15:05     ` Yegor Yefremov
2018-09-26 15:35 ` [Buildroot] [PATCH 20/23] python-pyasn1-modules: " Asaf Kahlon
2018-10-04 11:59   ` Thomas Petazzoni
2018-09-26 15:35 ` Asaf Kahlon [this message]
2018-10-04 12:02   ` [Buildroot] [PATCH 21/23] python-pyhamcrest: " Thomas Petazzoni
2018-10-04 19:30     ` Asaf Kahlon
2018-10-06 15:03       ` Yegor Yefremov
2018-09-26 15:35 ` [Buildroot] [PATCH 22/23] python-twisted: bump to version 18.7.0 Asaf Kahlon
2018-09-26 15:45   ` Yegor Yefremov
2018-10-04 12:17   ` Thomas Petazzoni
2018-09-26 15:35 ` [Buildroot] [PATCH 23/23] python-crossbar: bump to version 18.9.2 Asaf Kahlon
2018-10-04 12:17   ` Thomas Petazzoni
2018-09-26 15:54 ` [Buildroot] [PATCH 00/23] Fix python-crossbar to work with python 3.7 Yegor Yefremov
2018-09-27  6:19   ` Yegor Yefremov

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=20180926153505.3411-22-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 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.