guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: python-protobuf@3.6: Fix inputs and argument


From: guix-commits
Subject: branch master updated: gnu: python-protobuf@3.6: Fix inputs and arguments.
Date: Sat, 03 Dec 2022 18:38:10 -0500

This is an automated email from the git hooks/post-receive script.

civodul pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new bf46192d4c gnu: python-protobuf@3.6: Fix inputs and arguments.
bf46192d4c is described below

commit bf46192d4c7c4cd8d71edb8ace2cdf86322aafe7
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sun Dec 4 00:33:13 2022 +0100

    gnu: python-protobuf@3.6: Fix inputs and arguments.
    
    Fixes a regression introduced in
    9b016e29912b11f52e67e59b211fa016d88fea4a, whereby the 'inputs' field
    would be invalid, plus "--cpp_implementation" wouldn't work.
    
    * gnu/packages/protobuf.scm (python-protobuf-3.6)[arguments]: New
    field.
    [inputs]: No longer refer to the inputs of PYTHON-PROTOBUF.
---
 gnu/packages/protobuf.scm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm
index ab701b254d..b580f8b2a7 100644
--- a/gnu/packages/protobuf.scm
+++ b/gnu/packages/protobuf.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2014, 2022 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2016 Daniel Pimentel <d4n1@d4n1.org>
 ;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
 ;;; Copyright © 2017, 2018, 2019, 2022 Ricardo Wurmus <rekado@elephly.net>
@@ -468,9 +468,8 @@ structured data.")
        (sha256
         (base32
          "04bqb12smlckzmgkj6vgmpbr3cby0n6726cmz33bqr7kn1vb728l"))))
-    (inputs
-     (cons python-six
-           (package-inputs python-protobuf)))))
+    (arguments '())                            ;no "--cpp_implementation" here
+    (inputs (list python-six))))
 
 (define-public python-proto-plus
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]