From unknown Sun Jun 22 22:47:48 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#37431] [PATCH] gnu: Add python-bibtexparser. Resent-From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 16 Sep 2019 16:36:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 37431 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 37431@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.156865174324904 (code B ref -1); Mon, 16 Sep 2019 16:36:03 +0000 Received: (at submit) by debbugs.gnu.org; 16 Sep 2019 16:35:43 +0000 Received: from localhost ([127.0.0.1]:50946 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i9tyY-0006TW-LF for submit@debbugs.gnu.org; Mon, 16 Sep 2019 12:35:43 -0400 Received: from lists.gnu.org ([209.51.188.17]:33849) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i9tjZ-00064T-VW for submit@debbugs.gnu.org; Mon, 16 Sep 2019 12:20:14 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40537) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i9tjY-0004LK-6F for guix-patches@gnu.org; Mon, 16 Sep 2019 12:20:13 -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 1i9tjX-0005yX-0F for guix-patches@gnu.org; Mon, 16 Sep 2019 12:20:12 -0400 Received: from freeshell.de ([2a01:360:106::2]:54477) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i9tjW-0005y2-QI for guix-patches@gnu.org; Mon, 16 Sep 2019 12:20:10 -0400 From: Wiktor =?UTF-8?Q?=C5=BBelazny?= DKIM-Filter: OpenDKIM Filter v2.9.2 freeshell.de 4755735CC2B0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freeshell.de; s=mail; t=1568650808; bh=JJl/8G2uG23kUnMz8QO5lzdCJ1HbKxk629KnmErK+yk=; h=From:To:Subject:Date; b=Wh1LbRSLQ5wEZTgbsHI3j4tE1Lkz0sqX7kLKYVsDOZ7QhHg7/0NhJ6b9WsxLs0PSV P6LCDewH0cxMD7nsMwyUtZa+g4iXFvj4C513SlQRBrDCjNSk9VxfV+4bF4Vg/uTJcR +dgjxiFT/++OhYHG3MoHITQxSkDQBy1YpAaquxO4= Date: Mon, 16 Sep 2019 18:19:39 +0200 Message-Id: <20190916161939.26079-1-wz@freeshell.de> 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: 2a01:360:106::2 X-Spam-Score: -1.4 (-) X-Mailman-Approved-At: Mon, 16 Sep 2019 12:35:39 -0400 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.4 (--) From: Wiktor =C5=BBelazny * gnu/packages/python-xyz.scm (python-bibtexparser): 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 4541604873..21fed40cc3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -65,6 +65,7 @@ ;;; Copyright =C2=A9 2019 Pierre Langlois ;;; Copyright =C2=A9 2019 Jacob MacDonald ;;; Copyright =C2=A9 2019 Giacomo Leidi +;;; Copyright =C2=A9 2019 Wiktor =C5=BBelazny ;;; ;;; This file is part of GNU Guix. ;;; @@ -16265,3 +16266,24 @@ ElementTree library and for the @uref{http://lxm= l.de, lxml.etree} library. For lxml.etree this package can be useful for providing XPath 2.0 select= ors, because lxml.etree already has it's own implementation of XPath 1.0.") (license license:expat))) + +(define-public python-bibtexparser + (package + (name "python-bibtexparser") + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "bibtexparser" version)) + (sha256 + (base32 + "0zwhfkrzf3n5847dbnfng92k7ak199l9v6x6ax3dgdidfpm6d2fz")))) + (build-system python-build-system) + (propagated-inputs + `(("python-pyparsing" ,python-pyparsing))) + (native-inputs + `(("python-future" ,python-future))) + (home-page "https://github.com/sciunto-org/python-bibtexparser") + (synopsis "Python library to parse bibtex files") + (description "BibtexParser is a python library to parse bibtex files= .") + (license (list license:bsd-3 license:lgpl3)))) --=20 2.23.0 From unknown Sun Jun 22 22:47:48 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: Wiktor =?UTF-8?Q?=C5=BBelazny?= Subject: bug#37431: closed (Re: [bug#37431] [PATCH] gnu: Add python-bibtexparser.) Message-ID: References: <8736gqpubn.fsf@gnu.org> <20190916161939.26079-1-wz@freeshell.de> X-Gnu-PR-Message: they-closed 37431 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 37431@debbugs.gnu.org Date: Fri, 20 Sep 2019 20:50:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1569012603-32016-1" This is a multi-part message in MIME format... ------------=_1569012603-32016-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #37431: [PATCH] gnu: Add python-bibtexparser. 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 37431@debbugs.gnu.org. --=20 37431: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D37431 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1569012603-32016-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 37431-done) by debbugs.gnu.org; 20 Sep 2019 20:49:09 +0000 Received: from localhost ([127.0.0.1]:58634 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBPq0-0008IL-W4 for submit@debbugs.gnu.org; Fri, 20 Sep 2019 16:49:09 -0400 Received: from eggs.gnu.org ([209.51.188.92]:37788) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBPpz-0008I4-Fa for 37431-done@debbugs.gnu.org; Fri, 20 Sep 2019 16:49:07 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:60078) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iBPpu-0008IZ-8Y; Fri, 20 Sep 2019 16:49:02 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=48610 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iBPpt-0001uN-PF; Fri, 20 Sep 2019 16:49:02 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Wiktor =?utf-8?Q?=C5=BBelazny?= Subject: Re: [bug#37431] [PATCH] gnu: Add python-bibtexparser. References: <20190916161939.26079-1-wz@freeshell.de> Date: Fri, 20 Sep 2019 22:49:00 +0200 In-Reply-To: <20190916161939.26079-1-wz@freeshell.de> ("Wiktor \=\?utf-8\?Q\?\=C5\=BBelazny\=22's\?\= message of "Mon, 16 Sep 2019 18:19:39 +0200") Message-ID: <8736gqpubn.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 37431-done Cc: 37431-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 (---) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Wiktor =C5=BBelazny skribis: > From: Wiktor =C5=BBelazny > > * gnu/packages/python-xyz.scm (python-bibtexparser): New variable. Applied with the minor changes below, thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a9ca56aeed..69c8e63ecf 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -16395,6 +16395,6 @@ because lxml.etree already has it's own implementation of XPath 1.0.") (native-inputs `(("python-future" ,python-future))) (home-page "https://github.com/sciunto-org/python-bibtexparser") - (synopsis "Python library to parse bibtex files") - (description "BibtexParser is a python library to parse bibtex files.") + (synopsis "Python library to parse BibTeX files") + (description "BibtexParser is a Python library to parse BibTeX files.") (license (list license:bsd-3 license:lgpl3)))) --=-=-=-- ------------=_1569012603-32016-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 16 Sep 2019 16:35:43 +0000 Received: from localhost ([127.0.0.1]:50946 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i9tyY-0006TW-LF for submit@debbugs.gnu.org; Mon, 16 Sep 2019 12:35:43 -0400 Received: from lists.gnu.org ([209.51.188.17]:33849) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i9tjZ-00064T-VW for submit@debbugs.gnu.org; Mon, 16 Sep 2019 12:20:14 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40537) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i9tjY-0004LK-6F for guix-patches@gnu.org; Mon, 16 Sep 2019 12:20:13 -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 1i9tjX-0005yX-0F for guix-patches@gnu.org; Mon, 16 Sep 2019 12:20:12 -0400 Received: from freeshell.de ([2a01:360:106::2]:54477) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i9tjW-0005y2-QI for guix-patches@gnu.org; Mon, 16 Sep 2019 12:20:10 -0400 From: =?UTF-8?q?Wiktor=20=C5=BBelazny?= DKIM-Filter: OpenDKIM Filter v2.9.2 freeshell.de 4755735CC2B0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freeshell.de; s=mail; t=1568650808; bh=JJl/8G2uG23kUnMz8QO5lzdCJ1HbKxk629KnmErK+yk=; h=From:To:Subject:Date; b=Wh1LbRSLQ5wEZTgbsHI3j4tE1Lkz0sqX7kLKYVsDOZ7QhHg7/0NhJ6b9WsxLs0PSV P6LCDewH0cxMD7nsMwyUtZa+g4iXFvj4C513SlQRBrDCjNSk9VxfV+4bF4Vg/uTJcR +dgjxiFT/++OhYHG3MoHITQxSkDQBy1YpAaquxO4= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-bibtexparser. Date: Mon, 16 Sep 2019 18:19:39 +0200 Message-Id: <20190916161939.26079-1-wz@freeshell.de> 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: 2a01:360:106::2 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Mon, 16 Sep 2019 12:35:39 -0400 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.4 (--) From: Wiktor =C5=BBelazny * gnu/packages/python-xyz.scm (python-bibtexparser): 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 4541604873..21fed40cc3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -65,6 +65,7 @@ ;;; Copyright =C2=A9 2019 Pierre Langlois ;;; Copyright =C2=A9 2019 Jacob MacDonald ;;; Copyright =C2=A9 2019 Giacomo Leidi +;;; Copyright =C2=A9 2019 Wiktor =C5=BBelazny ;;; ;;; This file is part of GNU Guix. ;;; @@ -16265,3 +16266,24 @@ ElementTree library and for the @uref{http://lxm= l.de, lxml.etree} library. For lxml.etree this package can be useful for providing XPath 2.0 select= ors, because lxml.etree already has it's own implementation of XPath 1.0.") (license license:expat))) + +(define-public python-bibtexparser + (package + (name "python-bibtexparser") + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "bibtexparser" version)) + (sha256 + (base32 + "0zwhfkrzf3n5847dbnfng92k7ak199l9v6x6ax3dgdidfpm6d2fz")))) + (build-system python-build-system) + (propagated-inputs + `(("python-pyparsing" ,python-pyparsing))) + (native-inputs + `(("python-future" ,python-future))) + (home-page "https://github.com/sciunto-org/python-bibtexparser") + (synopsis "Python library to parse bibtex files") + (description "BibtexParser is a python library to parse bibtex files= .") + (license (list license:bsd-3 license:lgpl3)))) --=20 2.23.0 ------------=_1569012603-32016-1--