From patchwork Thu Jul 18 07:50:06 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabien Marteau X-Patchwork-Id: 260029 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 3271E2C0099 for ; Thu, 18 Jul 2013 19:07:56 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id F2DD09BF06; Thu, 18 Jul 2013 09:07:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uBKwZnd_Ffhu; Thu, 18 Jul 2013 09:07:54 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 4428E9C109; Thu, 18 Jul 2013 09:07:53 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 914DC1BF9BF for ; Thu, 18 Jul 2013 09:07:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 12CCE8DA1B for ; Thu, 18 Jul 2013 09:07:52 +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 pdKTKfdozc2f for ; Thu, 18 Jul 2013 09:07:50 +0000 (UTC) X-Greylist: delayed 01:17:25 by SQLgrey-1.7.6 Received: from mo3.mail-out.ovh.net (18.mo3.mail-out.ovh.net [87.98.172.162]) by whitealder.osuosl.org (Postfix) with ESMTP id C03D58DA32 for ; Thu, 18 Jul 2013 09:07:50 +0000 (UTC) Received: from mail432.ha.ovh.net (b6.ovh.net [213.186.33.56]) by mo3.mail-out.ovh.net (Postfix) with SMTP id 856B8FF998B for ; Thu, 18 Jul 2013 09:50:22 +0200 (CEST) Received: from b0.ovh.net (HELO queueout) (213.186.33.50) by b0.ovh.net with SMTP; 18 Jul 2013 09:51:10 +0200 Received: from unknown (HELO localhost.localdomain) (fabien.marteau@armadeus.com@83.141.254.164) by ns0.ovh.net with SMTP; 18 Jul 2013 09:51:08 +0200 From: Fabien Marteau To: buildroot@busybox.net X-Ovh-Mailout: 178.32.228.3 (mo3.mail-out.ovh.net) Date: Thu, 18 Jul 2013 09:50:06 +0200 Message-Id: <1374133806-9162-2-git-send-email-fabien.marteau@armadeus.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1374133806-9162-1-git-send-email-fabien.marteau@armadeus.com> References: <1374133806-9162-1-git-send-email-fabien.marteau@armadeus.com> X-Ovh-Tracer-Id: 11415499156871078359 X-Ovh-Remote: 83.141.254.164 () X-Ovh-Local: 213.186.33.20 (ns0.ovh.net) X-OVH-SPAMSTATE: OK X-OVH-SPAMSCORE: 0 X-OVH-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrfeeijedrvdehucetufdoteggodetrfcurfhrohhfihhlvgemucfqggfjnecuuegrihhlohhuthemuceftddtnecu X-Spam-Check: DONE|U 0.5/N X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrfeeijedrvdehucetufdoteggodetrfcurfhrohhfihhlvgemucfqggfjnecuuegrihhlohhuthemuceftddtnecu Subject: [Buildroot] [PATCH 1/1] package/python-pyro: adding Pyro 3.14 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net Signed-off-by: Fabien Marteau --- package/python-pyro/Config.in | 9 +++++++++ package/python-pyro/python-pyro.mk | 17 +++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 package/python-pyro/Config.in create mode 100644 package/python-pyro/python-pyro.mk diff --git a/package/python-pyro/Config.in b/package/python-pyro/Config.in new file mode 100644 index 0000000..b744c1c --- /dev/null +++ b/package/python-pyro/Config.in @@ -0,0 +1,9 @@ +config BR2_PACKAGE_PYTHON_PYRO + bool "python-pyro" + depends on BR2_PACKAGE_PYTHON + help + python-pyro is a Python library stands for PYthon Remote Objects. + It is an advanced and powerful Distributed Object Technology system + written entirely in Python, that is designed to be very easy to use.. + + https://pypi.python.org/pypi/Pyro/3.14 diff --git a/package/python-pyro/python-pyro.mk b/package/python-pyro/python-pyro.mk new file mode 100644 index 0000000..1b3b904 --- /dev/null +++ b/package/python-pyro/python-pyro.mk @@ -0,0 +1,17 @@ +############################################################# +# +# python-pyro +# +############################################################# + +PYTHON_PYRO_VERSION = 3.14 +PYTHON_PYRO_SOURCE = Pyro-$(PYTHON_PYRO_VERSION).tar.gz +PYTHON_PYRO_SITE = https://pypi.python.org/packages/source/P/Pyro/ + +PYTHON_PYRO_DEPENDENCIES = python + +define PYTHON_PYRO_INSTALL_TARGET_CMDS + (cd $(@D); $(HOST_DIR)/usr/bin/python setup.py install --prefix=$(TARGET_DIR)/usr) +endef + +$(eval $(generic-package))