From patchwork Fri Apr 15 16:48:11 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Ludovic_Court=C3=A8s?= X-Patchwork-Id: 38604 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 527D727BBE9; Fri, 15 Apr 2022 17:49:19 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.7 required=5.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,MAILING_LIST_MULTI,SPF_HELO_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.6 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id B377327BBEA for ; Fri, 15 Apr 2022 17:49:15 +0100 (BST) Received: from localhost ([::1]:54328 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nfP8E-0006g9-QR for patchwork@mira.cbaines.net; Fri, 15 Apr 2022 12:49:14 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:44650) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nfP82-0006di-GE for guix-patches@gnu.org; Fri, 15 Apr 2022 12:49:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:38079) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1nfP82-0000us-7d for guix-patches@gnu.org; Fri, 15 Apr 2022 12:49:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1nfP82-0003NS-3L for guix-patches@gnu.org; Fri, 15 Apr 2022 12:49:02 -0400 Subject: bug#54792: [PATCH] gnu: Add python-verspec. Resent-From: Ludovic =?utf-8?q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-To: guix-patches@gnu.org Resent-Date: Fri, 15 Apr 2022 16:49:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: cc-closed 54792 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Vincent Prat Cc: 54792-done@debbugs.gnu.org Mail-Followup-To: 54792@debbugs.gnu.org, ludo@gnu.org, vprat@deeplinks.com Received: via spool by 54792-done@debbugs.gnu.org id=D54792.165004130412918 (code D ref 54792); Fri, 15 Apr 2022 16:49:01 +0000 Received: (at 54792-done) by debbugs.gnu.org; 15 Apr 2022 16:48:24 +0000 Received: from localhost ([127.0.0.1]:60208 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nfP7P-0003MI-OY for submit@debbugs.gnu.org; Fri, 15 Apr 2022 12:48:23 -0400 Received: from eggs.gnu.org ([209.51.188.92]:51186) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nfP7N-0003M5-PK for 54792-done@debbugs.gnu.org; Fri, 15 Apr 2022 12:48:22 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:59738) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nfP7H-0000s8-5g; Fri, 15 Apr 2022 12:48:16 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=MpFL9OJzP77EWvL/Gl43nzbmch5J8ym407uRdyuSOac=; b=AQADIHHA72cvYmsnhobd rKSAr0z8VariKyjMPTRhlQfT5Vm2UNrd4At2fJ9fS3QUIHLMykZB4DGXHjXtdiw3ye6S46Rkkav8Q +xXtC5V5tmCtFw6Bfhs8DjL6tPxoZ1zMITXs5w6pGViTg0HnB3DDmnmXjM7f6RWyqQOXZB9VI+aTl s/agewcJJogBw6k5EVIG31SYhxBgWhTxZCSlw0skYky9Ns+JrbHVdKLh62zJIsSsYWPJhyUMBPfqA vX9VWjNQ+R/yRvGZBfUMe/FrPSls058n0/YL+ZAv1uYaR82g/ybaZfC1u0p5AR7jWGuMwBmSDelvf PPtFDeq7dt3GHw==; Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=38848 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nfP7F-00086B-75; Fri, 15 Apr 2022 12:48:14 -0400 From: Ludovic =?utf-8?q?Court=C3=A8s?= References: Date: Fri, 15 Apr 2022 18:48:11 +0200 In-Reply-To: (Vincent Prat's message of "Fri, 8 Apr 2022 16:32:57 +0200") Message-ID: <87v8va2sz8.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (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 Vincent Prat skribis: > From 6358a97915e91a49eb9fff85729a60e58ff920d2 Mon Sep 17 00:00:00 2001 > From: Vincent Prat > Date: Fri, 8 Apr 2022 16:29:38 +0200 > Subject: [PATCH] gnu: Add python-verspec. > > * gnu/packages/python.xyz.scm (python-verspec): New variable. Applied with the changes below, as per . Thanks, Ludo’. diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2278d7fa85..b3187f97be 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -29489,8 +29489,8 @@ (define-public python-verspec (home-page "https://github.com/jimporter/verspec") (synopsis "Flexible version handling for Python") (description - "Python library for handling software versions and specifiers, adapted -from the packaging package.") + "This Python library handles software versions and specifiers. It is +adapted from the @code{packaging} package.") (license (list license:bsd-2 license:asl2.0)))) (define-public python-shtab