From patchwork Fri Feb 2 20:38:38 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gwenhael Goavec-Merou X-Patchwork-Id: 868777 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.136; helo=silver.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3zY7z42Z8Zz9sBW for ; Sat, 3 Feb 2018 07:35:28 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 554BC3060C; Fri, 2 Feb 2018 20:35:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Q60o6-BH1Hlu; Fri, 2 Feb 2018 20:35:21 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 102E630529; Fri, 2 Feb 2018 20:35:21 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 7722E1C2648 for ; Fri, 2 Feb 2018 20:35:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 73C47896CB for ; Fri, 2 Feb 2018 20:35:19 +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 bhCGWAFz7pVK for ; Fri, 2 Feb 2018 20:35:18 +0000 (UTC) X-Greylist: whitelisted by SQLgrey-1.7.6 Received: from smtp3-g21.free.fr (smtp3-g21.free.fr [212.27.42.3]) by whitealder.osuosl.org (Postfix) with ESMTPS id EACC6896B2 for ; Fri, 2 Feb 2018 20:35:17 +0000 (UTC) Received: from x230.trabucayre.com (unknown [78.252.129.8]) by smtp3-g21.free.fr (Postfix) with ESMTP id F0B6013F861; Fri, 2 Feb 2018 21:35:14 +0100 (CET) From: Gwenhael Goavec-Merou To: buildroot@busybox.net Date: Fri, 2 Feb 2018 21:38:38 +0100 Message-Id: <20180202203838.12797-1-gwenj@trabucayre.com> X-Mailer: git-send-email 2.13.6 Subject: [Buildroot] [PATCH] python-remi: new package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.24 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Gwenhael Goavec-Merou MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" From: Gwenhael Goavec-Merou Remi is a GUI library for Python applications which transpiles an application's interface into HTML to be rendered in a web browser. This removes platform-specific dependencies and lets you easily develop cross-platform applications in Python! https://github.com/dddomodossola/remi/tree/master Signed-off-by: Gwenhael Goavec-Merou Reviewed-by: Yegor Yefremov --- DEVELOPERS | 1 + package/Config.in | 1 + package/python-remi/Config.in | 9 +++++++++ package/python-remi/python-remi.hash | 2 ++ package/python-remi/python-remi.mk | 14 ++++++++++++++ 5 files changed, 27 insertions(+) create mode 100644 package/python-remi/Config.in create mode 100644 package/python-remi/python-remi.hash create mode 100644 package/python-remi/python-remi.mk diff --git a/DEVELOPERS b/DEVELOPERS index 9048d45b16..1083782422 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -753,6 +753,7 @@ F: package/libusbgx/ F: package/python-cheetah/ F: package/python-markdown/ F: package/python-pyqt/ +F: package/python-remi/ F: package/python-sip/ N: Henrique Camargo diff --git a/package/Config.in b/package/Config.in index 9a6b199f40..3ce86fcadf 100644 --- a/package/Config.in +++ b/package/Config.in @@ -888,6 +888,7 @@ menu "External python modules" source "package/python-pyyaml/Config.in" source "package/python-pyzmq/Config.in" source "package/python-raven/Config.in" + source "package/python-remi/Config.in" source "package/python-requests/Config.in" source "package/python-requests-oauthlib/Config.in" source "package/python-requests-toolbelt/Config.in" diff --git a/package/python-remi/Config.in b/package/python-remi/Config.in new file mode 100644 index 0000000000..68d0a92b11 --- /dev/null +++ b/package/python-remi/Config.in @@ -0,0 +1,9 @@ +config BR2_PACKAGE_PYTHON_REMI + bool "python-remi" + help + Remi is a GUI library for Python applications which transpiles an + application's interface into HTML to be rendered in a web browser. + This removes platform-specific dependencies and lets you easily + develop cross-platform applications in Python! + + https://github.com/dddomodossola/remi/tree/master diff --git a/package/python-remi/python-remi.hash b/package/python-remi/python-remi.hash new file mode 100644 index 0000000000..1ab8474994 --- /dev/null +++ b/package/python-remi/python-remi.hash @@ -0,0 +1,2 @@ +# Locally computed +sha256 69ab3f7438de76708bfc40396f791b76452f84bb8bca6dafbdaca510c17e9526 python-remi-v1.0.tar.gz diff --git a/package/python-remi/python-remi.mk b/package/python-remi/python-remi.mk new file mode 100644 index 0000000000..6514118192 --- /dev/null +++ b/package/python-remi/python-remi.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# python-remi +# +################################################################################ + +PYTHON_REMI_VERSION = v1.0 +PYTHON_REMI_SITE = $(call github,dddomodossola,remi,$(PYTHON_REMI_VERSION)) +PYTHON_REMI_LICENSE = Apache-2.0 +PYTHON_REMI_LICENSE_FILES = LICENSE +PYTHON_REMI_SETUP_TYPE = setuptools + +$(eval $(python-package)) +