From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49341) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eWP1v-0004fx-EJ for guix-patches@gnu.org; Tue, 02 Jan 2018 11:03:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eWP1q-0006Q4-Gv for guix-patches@gnu.org; Tue, 02 Jan 2018 11:03:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:52852) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eWP1q-0006Pt-E9 for guix-patches@gnu.org; Tue, 02 Jan 2018 11:03:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eWP1q-0000gv-3g for guix-patches@gnu.org; Tue, 02 Jan 2018 11:03:02 -0500 Subject: [bug#29944] [PATCH 1/2] gnu: Add python2-pyro. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48824) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eWP0b-0003aQ-QS for guix-patches@gnu.org; Tue, 02 Jan 2018 11:01:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eWP0V-0005ty-RE for guix-patches@gnu.org; Tue, 02 Jan 2018 11:01:45 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:41673) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eWP0V-0005t6-KG for guix-patches@gnu.org; Tue, 02 Jan 2018 11:01:39 -0500 From: Konrad Hinsen Date: Tue, 2 Jan 2018 16:52:14 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29944@debbugs.gnu.org * gnu/packages/python.scm (python2-pyro): New public variable. --- gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 07302c729..0dff54a1b 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -12180,3 +12180,32 @@ such as figshare or Zenodo.") (define-public python2-semver (package-with-python2 python-semver)) + +(define-public python2-pyro + (package + (name "python2-pyro") + (version "3.16") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Pyro" version)) + (file-name (string-append "Pyro-" version ".tar.gz")) + (sha256 + (base32 + "0y75wzdqbjy565rpxaxscav4j8xg060sa90lnmb7aypgaf251v8v")))) + (build-system python-build-system) + (arguments + ;; Pyro is not compatible with Python 3 + `(#:python ,python-2 + ;; Pyro has no test cases for automatic execution + #:tests? #f)) + (home-page "http://pythonhosted.org/Pyro/") + (synopsis "Distributed object manager for Python") + (description "Pyro is a Distributed Object Technology system +written in Python that is designed to be easy to use. It resembles +Java's Remote Method Invocation (RMI). It has less similarity to CORBA, +which is a system and language independent Distributed Object Technology +and has much more to offer than Pyro or RMI. Pyro 3.x is no +longer maintained. New projects should use Pyro4 instead, which +is the new Pyro version that is actively developed.") + (license license:expat))) -- 2.14.3 (Apple Git-98)