From unknown Thu Sep 11 12:42:00 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#35974] [PATCH 42/47] gnu: Add python-typed-ast. Resent-From: "h.nasajpour" Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 29 May 2019 00:36:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 35974 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 35974@debbugs.gnu.org Cc: "h.nasajpour" X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.155909011123447 (code B ref -1); Wed, 29 May 2019 00:36:01 +0000 Received: (at submit) by debbugs.gnu.org; 29 May 2019 00:35:11 +0000 Received: from localhost ([127.0.0.1]:57743 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hVmYg-000667-Qa for submit@debbugs.gnu.org; Tue, 28 May 2019 20:35:11 -0400 Received: from eggs.gnu.org ([209.51.188.92]:54182) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hVmYf-00065B-89 for submit@debbugs.gnu.org; Tue, 28 May 2019 20:35:09 -0400 Received: from lists.gnu.org ([209.51.188.17]:47634) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hVmYa-0000Tq-47 for submit@debbugs.gnu.org; Tue, 28 May 2019 20:35:04 -0400 Received: from eggs.gnu.org ([209.51.188.92]:40325) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVmYZ-0007H3-0l for guix-patches@gnu.org; Tue, 28 May 2019 20:35:04 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: **** X-Spam-Status: No, score=4.3 required=5.0 tests=BAYES_50,NO_DNS_FOR_FROM, RDNS_DYNAMIC,RECEIVED_FROM_WINDOWS_HOST autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVmYY-0000Sc-3y for guix-patches@gnu.org; Tue, 28 May 2019 20:35:02 -0400 Received: from 37.59.236.227.rdns.hasaserver.com ([37.59.236.227]:55886 helo=hamzeh-VirtualBox.Home) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVmYX-0000Pd-IC for guix-patches@gnu.org; Tue, 28 May 2019 20:35:02 -0400 Received: by hamzeh-VirtualBox.Home (Postfix, from userid 0) id 141EC1A154B; Wed, 29 May 2019 05:05:01 +0430 (+0430) From: "h.nasajpour" Date: Wed, 29 May 2019 05:04:59 +0430 Message-Id: <20190529003459.3108-1-h.nasajpour@pantherx.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: References: X-detected-operating-system: by eggs.gnu.org: Windows NT kernel [generic] X-Received-From: 37.59.236.227 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: -1.9 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.9 (--) * gnu/packages/python-xyz.scm (python-typed-ast): New variable --- gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0c06833cec..93783d17ee 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15474,3 +15474,25 @@ by Igor Pavlov.") (description "A module for cross-platform control of the mouse and keyboard in python that is simple to use.") (license license:lgpl3))) + +(define-public python-typed-ast + (package + (name "python-typed-ast") + (version "1.3.5") + (source (origin + (method url-fetch) + (uri (pypi-uri "typed-ast" version)) + (sha256 (base32 "1m7pr6qpana3cvqwiw7mlvrgvmw27ch5mx1592572xhlki8g85ak")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) + (home-page "https://github.com/python/typed_ast") + (synopsis "A fork of Python 2 and 3 ast modules with type comment support") + (description + "typed_ast is a Python 3 package that provides a Python 2.7 and Python 3 parser similar to the standard ast library. + Unlike ast, the parsers in typed_ast include PEP 484 type comments and are independent of the version of Python under which they are run. + The typed_ast parsers produce the standard Python AST (plus type comments), and are both fast and correct, + as they are based on the CPython 2.7 and 3.6 parsers.") + (license license:expat))) + + -- 2.17.1 From unknown Thu Sep 11 12:42:00 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: "h.nasajpour" Subject: bug#35974: closed (Re: [bug#35974] [PATCH 42/47] gnu: Add python-typed-ast.) Message-ID: References: <87pngwlnne.fsf@posteo.net> <20190529003459.3108-1-h.nasajpour@pantherx.org> X-Gnu-PR-Message: they-closed 35974 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 35974@debbugs.gnu.org Date: Tue, 10 Dec 2019 06:08:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1575958082-3525-1" This is a multi-part message in MIME format... ------------=_1575958082-3525-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #35974: [PATCH 42/47] gnu: Add python-typed-ast. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 35974@debbugs.gnu.org. --=20 35974: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D35974 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1575958082-3525-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 35974-done) by debbugs.gnu.org; 10 Dec 2019 06:07:13 +0000 Received: from localhost ([127.0.0.1]:54757 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ieYfx-0000tn-5P for submit@debbugs.gnu.org; Tue, 10 Dec 2019 01:07:13 -0500 Received: from mout02.posteo.de ([185.67.36.66]:44125) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ieYfu-0000pm-Lb for 35974-done@debbugs.gnu.org; Tue, 10 Dec 2019 01:07:11 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 5564A2400FD for <35974-done@debbugs.gnu.org>; Tue, 10 Dec 2019 07:07:04 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1575958024; bh=ORHDld184qXIzzJIvElfBrF1BTLDPaw4xgK3CaO0f6E=; h=From:To:Cc:Subject:Date:From; b=DB0zXDFyu7LA55vkpgZnOf/Kb8ADnopmU43OYqSnhI+kq2tnZkZYYswp0xa79BcRT kjlkG+jOa/SbbOqG9fZhQV9LcdtvE19Crlcve0Z2vybjvPlMib5XNf44HGkwHUpub3 +hrH3xMDSKBT/7xZJORCjca6uKahkUbJHH2ALxh5UHdvwURxMnXpP/S9TV7JP4JbcX Ze/c32hnjtreyoB4qXz9N7eIHn7MvqG+9BZ41A7Iw3X4pI/4Isq6CHZS5KVm8GEdgQ AFcQbLUH9giqg2i9FAJi2x1xL6iZS2kCflOGCa514vL3HOiNhI9jKACiSVtr6lub3w iVljlz7tNeasA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 47X8j26l99z9rxN; Tue, 10 Dec 2019 07:07:02 +0100 (CET) From: Brett Gilio To: "h.nasajpour" Subject: Re: [bug#35974] [PATCH 42/47] gnu: Add python-typed-ast. References: <20190529003459.3108-1-h.nasajpour@pantherx.org> Date: Tue, 10 Dec 2019 00:07:01 -0600 In-Reply-To: <20190529003459.3108-1-h.nasajpour@pantherx.org> (h. nasajpour's message of "Wed, 29 May 2019 05:04:59 +0430") Message-ID: <87pngwlnne.fsf@posteo.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.3 (/) X-Debbugs-Envelope-To: 35974-done Cc: 35974-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.3 (-) Closing. This package was added with commit was applied with commit dae2eb1c127c636226ba11d05ec638f113a3c831 on 2019-06-26. -- Brett M. Gilio Homepage -- https://scm.pw/ GNU Guix -- https://guix.gnu.org/ ------------=_1575958082-3525-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 29 May 2019 00:35:11 +0000 Received: from localhost ([127.0.0.1]:57743 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hVmYg-000667-Qa for submit@debbugs.gnu.org; Tue, 28 May 2019 20:35:11 -0400 Received: from eggs.gnu.org ([209.51.188.92]:54182) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hVmYf-00065B-89 for submit@debbugs.gnu.org; Tue, 28 May 2019 20:35:09 -0400 Received: from lists.gnu.org ([209.51.188.17]:47634) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hVmYa-0000Tq-47 for submit@debbugs.gnu.org; Tue, 28 May 2019 20:35:04 -0400 Received: from eggs.gnu.org ([209.51.188.92]:40325) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVmYZ-0007H3-0l for guix-patches@gnu.org; Tue, 28 May 2019 20:35:04 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: **** X-Spam-Status: No, score=4.3 required=5.0 tests=BAYES_50,NO_DNS_FOR_FROM, RDNS_DYNAMIC,RECEIVED_FROM_WINDOWS_HOST autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVmYY-0000Sc-3y for guix-patches@gnu.org; Tue, 28 May 2019 20:35:02 -0400 Received: from 37.59.236.227.rdns.hasaserver.com ([37.59.236.227]:55886 helo=hamzeh-VirtualBox.Home) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVmYX-0000Pd-IC for guix-patches@gnu.org; Tue, 28 May 2019 20:35:02 -0400 Received: by hamzeh-VirtualBox.Home (Postfix, from userid 0) id 141EC1A154B; Wed, 29 May 2019 05:05:01 +0430 (+0430) From: "h.nasajpour" To: guix-patches@gnu.org Subject: [PATCH 42/47] gnu: Add python-typed-ast. Date: Wed, 29 May 2019 05:04:59 +0430 Message-Id: <20190529003459.3108-1-h.nasajpour@pantherx.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: References: X-detected-operating-system: by eggs.gnu.org: Windows NT kernel [generic] X-Received-From: 37.59.236.227 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: submit Cc: "h.nasajpour" X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.9 (--) * gnu/packages/python-xyz.scm (python-typed-ast): New variable --- gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0c06833cec..93783d17ee 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15474,3 +15474,25 @@ by Igor Pavlov.") (description "A module for cross-platform control of the mouse and keyboard in python that is simple to use.") (license license:lgpl3))) + +(define-public python-typed-ast + (package + (name "python-typed-ast") + (version "1.3.5") + (source (origin + (method url-fetch) + (uri (pypi-uri "typed-ast" version)) + (sha256 (base32 "1m7pr6qpana3cvqwiw7mlvrgvmw27ch5mx1592572xhlki8g85ak")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) + (home-page "https://github.com/python/typed_ast") + (synopsis "A fork of Python 2 and 3 ast modules with type comment support") + (description + "typed_ast is a Python 3 package that provides a Python 2.7 and Python 3 parser similar to the standard ast library. + Unlike ast, the parsers in typed_ast include PEP 484 type comments and are independent of the version of Python under which they are run. + The typed_ast parsers produce the standard Python AST (plus type comments), and are both fast and correct, + as they are based on the CPython 2.7 and 3.6 parsers.") + (license license:expat))) + + -- 2.17.1 ------------=_1575958082-3525-1--