From patchwork Tue Feb 2 00:44:52 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mauro Condarelli X-Patchwork-Id: 576886 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 13C7E1402D9 for ; Tue, 2 Feb 2016 11:46:59 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 545179226A; Tue, 2 Feb 2016 00:46:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id R0TyFUhx4u0y; Tue, 2 Feb 2016 00:46:54 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id AAAF79221A; Tue, 2 Feb 2016 00:46:13 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id B38FD1C1510 for ; Tue, 2 Feb 2016 00:45:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id AF0C0959AB for ; Tue, 2 Feb 2016 00:45:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id F9WtUJ7jRZqH for ; Tue, 2 Feb 2016 00:45:41 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from relaygw1-14.mclink.it (relaygw1-14.mclink.it [77.43.14.228]) by hemlock.osuosl.org (Postfix) with ESMTP id BCFEE959D3 for ; Tue, 2 Feb 2016 00:45:39 +0000 (UTC) Received: from smtpoutgw1.mclink.it ([172.24.30.41] verified) by relaygw1-14.mclink.it (CommuniGate Pro SMTP 6.0.2) with ESMTP id 78282089 for buildroot@buildroot.org; Tue, 02 Feb 2016 01:45:36 +0100 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2B0AwAo+69W/7T8/l9VCYNYNBIDWAGCZoVRIapEhQOCEwENggiFeYFrFAEBAQEBAQGBBgSEQgEFeRA/EjwbGYgfAQm+PoUXiTiBDINXBZZoB2qEXYJtBYUSgiWMS44+HgEBQoE2AUoCGIFSOy4FiWYBAQE Received: from host180-252-static.254-95-b.business.telecomitalia.it (HELO ariag25.rm.okcash.com) ([95.254.252.180]) by smtpoutgw1.mclink.it with ESMTP/TLS/AES128-SHA; 02 Feb 2016 01:45:35 +0100 Received: from mcon by ariag25.rm.okcash.com with local (Exim 4.84) (envelope-from ) id 1aQP5o-0005sR-St; Tue, 02 Feb 2016 01:45:16 +0100 From: Mauro Condarelli To: buildroot@buildroot.org Date: Tue, 2 Feb 2016 01:44:52 +0100 Message-Id: <1454373899-22481-13-git-send-email-mc5686@mclink.it> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1454373899-22481-1-git-send-email-mc5686@mclink.it> References: <1454373899-22481-1-git-send-email-mc5686@mclink.it> Cc: Mauro Condarelli Subject: [Buildroot] [PATCH 12/19] python-service-identity: new package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Mauro Condarelli --- package/Config.in | 1 + package/python-service-identity/Config.in | 11 +++++++++++ .../python-service-identity/python-service-identity.hash | 3 +++ .../python-service-identity/python-service-identity.mk | 15 +++++++++++++++ 4 files changed, 30 insertions(+) create mode 100644 package/python-service-identity/Config.in create mode 100644 package/python-service-identity/python-service-identity.hash create mode 100644 package/python-service-identity/python-service-identity.mk diff --git a/package/Config.in b/package/Config.in index 345a512..8b3304c 100644 --- a/package/Config.in +++ b/package/Config.in @@ -709,6 +709,7 @@ menu "External python modules" source "package/python-requests/Config.in" source "package/python-rtslib-fb/Config.in" source "package/python-serial/Config.in" + source "package/python-service-identity/Config.in" source "package/python-setuptools/Config.in" source "package/python-simplejson/Config.in" source "package/python-singledispatch/Config.in" diff --git a/package/python-service-identity/Config.in b/package/python-service-identity/Config.in new file mode 100644 index 0000000..fbf34c0 --- /dev/null +++ b/package/python-service-identity/Config.in @@ -0,0 +1,11 @@ +config BR2_PACKAGE_PYTHON_SERVICE_IDENTITY + bool "python-service-identity" + select BR2_PACKAGE_PYTHON_CHARACTERISTIC + select BR2_PACKAGE_PYTHON_PYASN + select BR2_PACKAGE_PYTHON_PYASN_MODULES + select BR2_PACKAGE_PYTHON_PYOPENSSL + help + Service identity verification for pyOpenSSL. + + https://pypi.python.org/pypi/service_identity + diff --git a/package/python-service-identity/python-service-identity.hash b/package/python-service-identity/python-service-identity.hash new file mode 100644 index 0000000..caf29dc --- /dev/null +++ b/package/python-service-identity/python-service-identity.hash @@ -0,0 +1,3 @@ +# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=cea0b0156d73b025ecef660fb51f0d9a, sha256 locally computed. +md5 cea0b0156d73b025ecef660fb51f0d9a service_identity-14.0.0.tar.gz +sha256 3105a319a7c558490666694f599be0c377ad54824eefb404cde4ce49e74a4f5a service_identity-14.0.0.tar.gz diff --git a/package/python-service-identity/python-service-identity.mk b/package/python-service-identity/python-service-identity.mk new file mode 100644 index 0000000..a1c4072 --- /dev/null +++ b/package/python-service-identity/python-service-identity.mk @@ -0,0 +1,15 @@ +################################################################################ +# +# python-service-identity +# +################################################################################ + +PYTHON_SERVICE_IDENTITY_VERSION = 14.0.0 +PYTHON_SERVICE_IDENTITY_SOURCE = service_identity-$(PYTHON_SERVICE_IDENTITY_VERSION).tar.gz +PYTHON_SERVICE_IDENTITY_SITE = http://pypi.python.org/packages/source/s/service_identity +PYTHON_SERVICE_IDENTITY_LICENSE = BSD +PYTHON_SERVICE_IDENTITY_LICENSE_FILES = LICENSE +PYTHON_SERVICE_IDENTITY_SETUP_TYPE = setuptools +PYTHON_SERVICE_IDENTITY_DEPENDENCIES = python-characteristic python-pyasn1 python-pyasn-modules python-pyopenssl + +$(eval $(python-package))