From patchwork Wed Oct 21 17:13:13 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Ludovic_Court=C3=A8s?= X-Patchwork-Id: 24724 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id D702427BBEE; Wed, 21 Oct 2020 18:16:00 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 8154827BBED for ; Wed, 21 Oct 2020 18:16:00 +0100 (BST) Received: from localhost ([::1]:33430 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kVHiR-00087R-Kx for patchwork@mira.cbaines.net; Wed, 21 Oct 2020 13:15:59 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45006) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kVHgY-0006Ij-En for guix-patches@gnu.org; Wed, 21 Oct 2020 13:14:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:38864) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1kVHgY-00035J-3s for guix-patches@gnu.org; Wed, 21 Oct 2020 13:14:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1kVHgX-0007Zh-V4 for guix-patches@gnu.org; Wed, 21 Oct 2020 13:14:01 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#44074] [PATCH] gnu: visidata: Update to 2.0.1. Resent-From: Ludovic =?utf-8?q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 21 Oct 2020 17:14:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 44074 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ryan Prior Cc: 44074@debbugs.gnu.org Received: via spool by 44074-submit@debbugs.gnu.org id=B44074.160330041629075 (code B ref 44074); Wed, 21 Oct 2020 17:14:01 +0000 Received: (at 44074) by debbugs.gnu.org; 21 Oct 2020 17:13:36 +0000 Received: from localhost ([127.0.0.1]:50410 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kVHg7-0007Yt-MF for submit@debbugs.gnu.org; Wed, 21 Oct 2020 13:13:35 -0400 Received: from eggs.gnu.org ([209.51.188.92]:37950) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kVHg5-0007Yb-Os for 44074@debbugs.gnu.org; Wed, 21 Oct 2020 13:13:34 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:53740) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kVHg0-0002yq-HZ; Wed, 21 Oct 2020 13:13:28 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=44350 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1kVHfm-0005fO-Ka; Wed, 21 Oct 2020 13:13:18 -0400 From: Ludovic =?utf-8?q?Court=C3=A8s?= References: <20201019042926.30701-1-rprior@protonmail.com> Date: Wed, 21 Oct 2020 19:13:13 +0200 In-Reply-To: <20201019042926.30701-1-rprior@protonmail.com> (Ryan Prior's message of "Mon, 19 Oct 2020 04:29:31 +0000") Message-ID: <87zh4fzemu.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches Arf, forgot the diff: diff --git a/gnu/packages/visidata.scm b/gnu/packages/visidata.scm index 667aea172e..6ba2939b4f 100644 --- a/gnu/packages/visidata.scm +++ b/gnu/packages/visidata.scm @@ -45,7 +45,7 @@ (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) - (if tests? (invoke "pytest")) + (when tests? (invoke "pytest")) #t))))) (inputs `(("dateutil" ,python-dateutil)