From unknown Fri Jun 13 10:22:51 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#37090] [PATCH] gnu: Add python-elementpath. Resent-From: Giacomo Leidi Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 19 Aug 2019 22:17:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 37090 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 37090@debbugs.gnu.org Cc: Giacomo Leidi X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.156625296224188 (code B ref -1); Mon, 19 Aug 2019 22:17:02 +0000 Received: (at submit) by debbugs.gnu.org; 19 Aug 2019 22:16:02 +0000 Received: from localhost ([127.0.0.1]:60606 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hzpwY-0006I4-Hl for submit@debbugs.gnu.org; Mon, 19 Aug 2019 18:16:02 -0400 Received: from lists.gnu.org ([209.51.188.17]:48819) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hzpwW-0006Hd-4E for submit@debbugs.gnu.org; Mon, 19 Aug 2019 18:16:00 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37791) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1hzpwT-0001dZ-48 for guix-patches@gnu.org; Mon, 19 Aug 2019 18:15:59 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hzpwS-0003q3-0h for guix-patches@gnu.org; Mon, 19 Aug 2019 18:15:56 -0400 Received: from latitanza.investici.org ([82.94.249.234]:47979) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hzpwQ-0003kR-Lp for guix-patches@gnu.org; Mon, 19 Aug 2019 18:15:55 -0400 Received: from mx3.investici.org (localhost [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 0F921120583; Mon, 19 Aug 2019 22:15:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1566252943; bh=1uflZYbk/FlVc95CgdbOkDze8A/Sqp3+cOmgkN7BK98=; h=From:To:Cc:Subject:Date:From; b=TgW7gpwbnb8Fy/P6Wao7GF4uuVEKrx5K7H9uLR6Uvi85B9ZKqKTSuJFb9bUgMn4Ki Pnpow5aK3MrIJfB0VRBAeJBNCPwN1RQBL+PmuMjGNQ+XpXtOmIp9RWjVHmbjcOVV8T fq7C1SP8Wa5uzf96u29zNepa2pSwQeLmvYAWKyCA= Received: from [82.94.249.234] (mx3.investici.org [82.94.249.234]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id A3F7F120141; Mon, 19 Aug 2019 22:15:41 +0000 (UTC) From: Giacomo Leidi Date: Tue, 20 Aug 2019 00:15:20 +0200 Message-Id: <20190819221520.7930-1-goodoldpaul@autistici.org> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 82.94.249.234 X-Spam-Score: -2.3 (--) 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: -3.3 (---) * gnu/packages/python-xyz.scm (python-elementpath): New variable. --- gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 459d5d44e1..23227d8aef 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -64,6 +64,7 @@ ;;; Copyright =C2=A9 2019 Alex Griffin ;;; Copyright =C2=A9 2019 Pierre Langlois ;;; Copyright =C2=A9 2019 Jacob MacDonald +;;; Copyright =C2=A9 2019 Giacomo Leidi ;;; ;;; This file is part of GNU Guix. ;;; @@ -16058,3 +16059,23 @@ one-off scripts.") time-or-computationally-expensive properties quick and easy and works in= Python 2 or 3.") (license license:bsd-3))) + +(define-public python-elementpath + (package + (name "python-elementpath") + (version "1.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "elementpath" version)) + (sha256 + (base32 + "1syn2z543brab23dskh3fjd9pqvz6npqbcicrs2d88dbg26xl08p")))) + (build-system python-build-system) + (home-page + "https://github.com/sissaschool/elementpath") + (synopsis + "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml") + (description + "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml") + (license license:expat))) --=20 2.23.0 From unknown Fri Jun 13 10:22:51 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: Giacomo Leidi Subject: bug#37090: closed (Re: [bug#37090] [PATCH] gnu: Add python-elementpath.) Message-ID: References: <871rx6rir8.fsf@gnu.org> <20190819221520.7930-1-goodoldpaul@autistici.org> X-Gnu-PR-Message: they-closed 37090 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 37090@debbugs.gnu.org Date: Tue, 27 Aug 2019 10:44:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1566902642-10938-1" This is a multi-part message in MIME format... ------------=_1566902642-10938-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #37090: [PATCH] gnu: Add python-elementpath. 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 37090@debbugs.gnu.org. --=20 37090: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D37090 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1566902642-10938-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 37090-done) by debbugs.gnu.org; 27 Aug 2019 10:43:32 +0000 Received: from localhost ([127.0.0.1]:47780 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i2Ywm-0002pW-9t for submit@debbugs.gnu.org; Tue, 27 Aug 2019 06:43:32 -0400 Received: from eggs.gnu.org ([209.51.188.92]:53703) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i2Ywk-0002pC-UD for 37090-done@debbugs.gnu.org; Tue, 27 Aug 2019 06:43:31 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:56049) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1i2Ywf-0000kP-7O; Tue, 27 Aug 2019 06:43:25 -0400 Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=47496 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1i2Ywe-0006RG-QR; Tue, 27 Aug 2019 06:43:25 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Giacomo Leidi Subject: Re: [bug#37090] [PATCH] gnu: Add python-elementpath. References: <20190819221520.7930-1-goodoldpaul@autistici.org> Date: Tue, 27 Aug 2019 12:43:23 +0200 In-Reply-To: <20190819221520.7930-1-goodoldpaul@autistici.org> (Giacomo Leidi's message of "Tue, 20 Aug 2019 00:15:20 +0200") Message-ID: <871rx6rir8.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 37090-done Cc: 37090-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: -3.3 (---) Hello, Giacomo Leidi skribis: > * gnu/packages/python-xyz.scm (python-elementpath): New variable. [...] > + (description > + "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml") I copied a description from their README and committed. Thanks, Ludo=E2=80=99. ------------=_1566902642-10938-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 19 Aug 2019 22:16:02 +0000 Received: from localhost ([127.0.0.1]:60606 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hzpwY-0006I4-Hl for submit@debbugs.gnu.org; Mon, 19 Aug 2019 18:16:02 -0400 Received: from lists.gnu.org ([209.51.188.17]:48819) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hzpwW-0006Hd-4E for submit@debbugs.gnu.org; Mon, 19 Aug 2019 18:16:00 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37791) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1hzpwT-0001dZ-48 for guix-patches@gnu.org; Mon, 19 Aug 2019 18:15:59 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hzpwS-0003q3-0h for guix-patches@gnu.org; Mon, 19 Aug 2019 18:15:56 -0400 Received: from latitanza.investici.org ([82.94.249.234]:47979) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hzpwQ-0003kR-Lp for guix-patches@gnu.org; Mon, 19 Aug 2019 18:15:55 -0400 Received: from mx3.investici.org (localhost [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 0F921120583; Mon, 19 Aug 2019 22:15:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1566252943; bh=1uflZYbk/FlVc95CgdbOkDze8A/Sqp3+cOmgkN7BK98=; h=From:To:Cc:Subject:Date:From; b=TgW7gpwbnb8Fy/P6Wao7GF4uuVEKrx5K7H9uLR6Uvi85B9ZKqKTSuJFb9bUgMn4Ki Pnpow5aK3MrIJfB0VRBAeJBNCPwN1RQBL+PmuMjGNQ+XpXtOmIp9RWjVHmbjcOVV8T fq7C1SP8Wa5uzf96u29zNepa2pSwQeLmvYAWKyCA= Received: from [82.94.249.234] (mx3.investici.org [82.94.249.234]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id A3F7F120141; Mon, 19 Aug 2019 22:15:41 +0000 (UTC) From: Giacomo Leidi To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-elementpath. Date: Tue, 20 Aug 2019 00:15:20 +0200 Message-Id: <20190819221520.7930-1-goodoldpaul@autistici.org> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 82.94.249.234 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Giacomo Leidi 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: -3.3 (---) * gnu/packages/python-xyz.scm (python-elementpath): New variable. --- gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 459d5d44e1..23227d8aef 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -64,6 +64,7 @@ ;;; Copyright =C2=A9 2019 Alex Griffin ;;; Copyright =C2=A9 2019 Pierre Langlois ;;; Copyright =C2=A9 2019 Jacob MacDonald +;;; Copyright =C2=A9 2019 Giacomo Leidi ;;; ;;; This file is part of GNU Guix. ;;; @@ -16058,3 +16059,23 @@ one-off scripts.") time-or-computationally-expensive properties quick and easy and works in= Python 2 or 3.") (license license:bsd-3))) + +(define-public python-elementpath + (package + (name "python-elementpath") + (version "1.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "elementpath" version)) + (sha256 + (base32 + "1syn2z543brab23dskh3fjd9pqvz6npqbcicrs2d88dbg26xl08p")))) + (build-system python-build-system) + (home-page + "https://github.com/sissaschool/elementpath") + (synopsis + "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml") + (description + "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml") + (license license:expat))) --=20 2.23.0 ------------=_1566902642-10938-1--