From unknown Tue Jun 17 20:16:09 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#42792 <42792@debbugs.gnu.org> To: bug#42792 <42792@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add python-pydantic. Reply-To: bug#42792 <42792@debbugs.gnu.org> Date: Wed, 18 Jun 2025 03:16:09 +0000 retitle 42792 [PATCH] gnu: Add python-pydantic. reassign 42792 guix-patches submitter 42792 Tanguy Le Carrour severity 42792 normal tag 42792 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Aug 10 04:44:03 2020 Received: (at submit) by debbugs.gnu.org; 10 Aug 2020 08:44:03 +0000 Received: from localhost ([127.0.0.1]:34299 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k53PW-0007dc-TA for submit@debbugs.gnu.org; Mon, 10 Aug 2020 04:44:03 -0400 Received: from lists.gnu.org ([209.51.188.17]:53306) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k53PT-0007d0-50 for submit@debbugs.gnu.org; Mon, 10 Aug 2020 04:44:00 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:48926) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k53PS-0005EI-S3 for guix-patches@gnu.org; Mon, 10 Aug 2020 04:43:58 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:56607) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k53PQ-0003Xk-ML for guix-patches@gnu.org; Mon, 10 Aug 2020 04:43:58 -0400 X-Originating-IP: 176.159.32.89 Received: from rafflesia.easter-eggs.fr (176-159-32-89.abo.bbox.fr [176.159.32.89]) (Authenticated sender: tanguy@bioneland.org) by relay6-d.mail.gandi.net (Postfix) with ESMTPA id A55E4C000A; Mon, 10 Aug 2020 08:43:52 +0000 (UTC) From: Tanguy Le Carrour To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-pydantic. Date: Mon, 10 Aug 2020 10:43:43 +0200 Message-Id: <20200810084343.10734-1-tanguy@bioneland.org> X-Mailer: git-send-email 2.28.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=217.70.183.198; envelope-from=tanguy@bioneland.org; helo=relay6-d.mail.gandi.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/08/10 03:55:33 X-ACL-Warn: Detected OS = Linux 3.11 and newer X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Tanguy Le Carrour 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-pydantic): New variable. --- gnu/packages/python-xyz.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4026d13f2d..a36e99aa32 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3820,6 +3820,41 @@ Language (TOML) configuration files.") "This package provides a JSON RPC 2.0 server library for Python.") (license license:expat))) +(define-public python-pydantic + (package + (name "python-pydantic") + (version "1.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/samuelcolvin/pydantic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 (base32 "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")))) + (build-system python-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + ;; Reported upstream: + ;; Not sure how to apply the suggested fix!? + (add-before 'check 'disable-test + (lambda _ + (substitute* "tests/test_validators.py" + (("test_assert_raises_validation_error") + "_test_assert_raises_validation_error")) + #t)) + (replace 'check + (lambda _ (invoke "pytest" "-vv" "tests")))))) + (native-inputs + `(("python-pytest" ,python-pytest))) + (home-page "https://github.com/samuelcolvin/pydantic") + (synopsis "Data validation and settings management using python type hinting") + (description + "Pydantic enforces type hints at runtime, and provides user friendly errors +when data is invalid.") + (license license:expat))) + (define-public python-pydocstyle (package (name "python-pydocstyle") -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Aug 10 06:05:31 2020 Received: (at 42792-done) by debbugs.gnu.org; 10 Aug 2020 10:05:31 +0000 Received: from localhost ([127.0.0.1]:34438 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k54gN-0001QX-9N for submit@debbugs.gnu.org; Mon, 10 Aug 2020 06:05:31 -0400 Received: from eggs.gnu.org ([209.51.188.92]:59812) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k54gM-0001QI-Et for 42792-done@debbugs.gnu.org; Mon, 10 Aug 2020 06:05:30 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:46803) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1k54gF-0005SC-U6; Mon, 10 Aug 2020 06:05:23 -0400 Received: from [2a01:e0a:19b:d9a0:3107:b202:556:bd51] (port=46542 helo=cervin) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1k54gF-0001rv-EI; Mon, 10 Aug 2020 06:05:23 -0400 From: Mathieu Othacehe To: Tanguy Le Carrour Subject: Re: [bug#42792] [PATCH] gnu: Add python-pydantic. References: <20200810084343.10734-1-tanguy@bioneland.org> Date: Mon, 10 Aug 2020 12:05:21 +0200 In-Reply-To: <20200810084343.10734-1-tanguy@bioneland.org> (Tanguy Le Carrour's message of "Mon, 10 Aug 2020 10:43:43 +0200") Message-ID: <87wo26g6ji.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42792-done Cc: 42792-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 Tanguy, > * gnu/packages/python-xyz.scm (python-pydantic): New variable. Applied with the following diff: diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a36e99aa32..4102902465 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3829,30 +3829,32 @@ Language (TOML) configuration files.") (method git-fetch) (uri (git-reference (url "https://github.com/samuelcolvin/pydantic") - (commit (string-append "v" version)))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) - (sha256 (base32 "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")))) + (sha256 + (base32 "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases - ;; Reported upstream: - ;; Not sure how to apply the suggested fix!? + ;; Reported upstream: + ;; . + ;; Disable the faulty test as the fix is unclear. (add-before 'check 'disable-test (lambda _ (substitute* "tests/test_validators.py" (("test_assert_raises_validation_error") - "_test_assert_raises_validation_error")) + "_test_assert_raises_validation_error")) #t)) (replace 'check (lambda _ (invoke "pytest" "-vv" "tests")))))) (native-inputs `(("python-pytest" ,python-pytest))) (home-page "https://github.com/samuelcolvin/pydantic") - (synopsis "Data validation and settings management using python type hinting") + (synopsis "Python data validation and settings management") (description - "Pydantic enforces type hints at runtime, and provides user friendly errors -when data is invalid.") + "Pydantic enforces type hints at runtime, and provides user friendly +errors when data is invalid.") (license license:expat))) Thanks, Mathieu From debbugs-submit-bounces@debbugs.gnu.org Mon Aug 10 10:19:19 2020 Received: (at 42792-done) by debbugs.gnu.org; 10 Aug 2020 14:19:19 +0000 Received: from localhost ([127.0.0.1]:37049 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k58dz-0003mf-JK for submit@debbugs.gnu.org; Mon, 10 Aug 2020 10:19:19 -0400 Received: from relay9-d.mail.gandi.net ([217.70.183.199]:45671) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k58dx-0003mL-Lv for 42792-done@debbugs.gnu.org; Mon, 10 Aug 2020 10:19:18 -0400 X-Originating-IP: 176.159.32.89 Received: from localhost (176-159-32-89.abo.bbox.fr [176.159.32.89]) (Authenticated sender: tanguy@bioneland.org) by relay9-d.mail.gandi.net (Postfix) with ESMTPSA id AD92FFF807; Mon, 10 Aug 2020 14:19:11 +0000 (UTC) Date: Mon, 10 Aug 2020 16:19:11 +0200 From: Tanguy Le Carrour To: Mathieu Othacehe Subject: Re: [bug#42792] [PATCH] gnu: Add python-pydantic. Message-ID: <20200810141911.jtpjdeylftxiyk6q@rafflesia> References: <20200810084343.10734-1-tanguy@bioneland.org> <87wo26g6ji.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <87wo26g6ji.fsf@gnu.org> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 42792-done Cc: 42792-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.7 (-) Hi Mathieu, Le 08/10, Mathieu Othacehe a écrit : > > * gnu/packages/python-xyz.scm (python-pydantic): New variable. > > Applied with the following diff: > > diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm > index a36e99aa32..4102902465 100644 > --- a/gnu/packages/python-xyz.scm > +++ b/gnu/packages/python-xyz.scm > @@ -3829,30 +3829,32 @@ Language (TOML) configuration files.") > (method git-fetch) > (uri (git-reference > (url "https://github.com/samuelcolvin/pydantic") > - (commit (string-append "v" version)))) > + (commit (string-append "v" version)))) > (file-name (git-file-name name version)) > - (sha256 (base32 "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")))) > + (sha256 > + (base32 "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")))) Thanks for paying attention to every details!! Actually, those things have been bothering me for quiet a while… They are not reported by `./pre-inst-env guix lint python-pydantic` or fixed by `emacs --script etc/indent-code.el gnu/packages/python-xyz.scm python-pydantic`. :-( Would the following have been acceptable? ``` > + (sha256 (base32 > + "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")))) ``` And what about this? (2-space indent instead of 1, like `add-before` below) ``` > + (sha256 > + (base32 "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")))) ``` > (build-system python-build-system) > (arguments > '(#:phases > (modify-phases %standard-phases > - ;; Reported upstream: > - ;; Not sure how to apply the suggested fix!? > + ;; Reported upstream: > + ;; . > + ;; Disable the faulty test as the fix is unclear. Much better, thanks! In retrospect, I realize that I should have put the question in the commit message for a maintainer to read, not in the package definition. Would that have been better?! > (add-before 'check 'disable-test > (lambda _ > (substitute* "tests/test_validators.py" > (("test_assert_raises_validation_error") > - "_test_assert_raises_validation_error")) > + "_test_assert_raises_validation_error")) > #t)) > (replace 'check > (lambda _ (invoke "pytest" "-vv" "tests")))))) > (native-inputs > `(("python-pytest" ,python-pytest))) > (home-page "https://github.com/samuelcolvin/pydantic") > - (synopsis "Data validation and settings management using python type hinting") > + (synopsis "Python data validation and settings management") Sorry, I still suck at synopsis! :-( > (description > - "Pydantic enforces type hints at runtime, and provides user friendly errors > -when data is invalid.") > + "Pydantic enforces type hints at runtime, and provides user friendly > +errors when data is invalid.") > (license license:expat))) Thanks! -- Tanguy From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 11 04:36:05 2020 Received: (at 42792-done) by debbugs.gnu.org; 11 Aug 2020 08:36:05 +0000 Received: from localhost ([127.0.0.1]:38533 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k5PlN-0001qv-7W for submit@debbugs.gnu.org; Tue, 11 Aug 2020 04:36:05 -0400 Received: from eggs.gnu.org ([209.51.188.92]:60636) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k5PlJ-0001qM-Hi for 42792-done@debbugs.gnu.org; Tue, 11 Aug 2020 04:36:03 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:39081) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1k5PlD-0002Uv-8t; Tue, 11 Aug 2020 04:35:55 -0400 Received: from [2a01:e0a:19b:d9a0:3107:b202:556:bd51] (port=54722 helo=cervin) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1k5PlB-0008UP-TN; Tue, 11 Aug 2020 04:35:54 -0400 From: Mathieu Othacehe To: Tanguy Le Carrour Subject: Re: [bug#42792] [PATCH] gnu: Add python-pydantic. References: <20200810084343.10734-1-tanguy@bioneland.org> <87wo26g6ji.fsf@gnu.org> <20200810141911.jtpjdeylftxiyk6q@rafflesia> Date: Tue, 11 Aug 2020 10:35:52 +0200 In-Reply-To: <20200810141911.jtpjdeylftxiyk6q@rafflesia> (Tanguy Le Carrour's message of "Mon, 10 Aug 2020 16:19:11 +0200") Message-ID: <87h7t9y3yv.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42792-done Cc: 42792-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 (---) Hey Tanguy, >> (uri (git-reference >> (url "https://github.com/samuelcolvin/pydantic") >> - (commit (string-append "v" version)))) >> + (commit (string-append "v" version)))) >> (file-name (git-file-name name version)) >> - (sha256 (base32 "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws= 2z3j8")))) >> + (sha256 >> + (base32 "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")= ))) > > Thanks for paying attention to every details!! > Actually, those things have been bothering me for quiet a while=E2=80=A6 > They are not reported by `./pre-inst-env guix lint python-pydantic` or > fixed by `emacs --script etc/indent-code.el gnu/packages/python-xyz.scm p= ython-pydantic`. :-( The first diff is fixed when running "./etc/indent-code.el gnu/packages/python-xyz.scm python-pydantic" for me. > > Would the following have been acceptable? > > ``` >> + (sha256 (base32 >> + "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")= ))) > ``` It is acceptable but the convention is to put "base32" on the next line. > > And what about this? (2-space indent instead of 1, like `add-before` belo= w) > > ``` >> + (sha256 >> + (base32 "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8"= )))) > ``` No only one space here, this is also handled by the indent script for me. > > >> (build-system python-build-system) >> (arguments >> '(#:phases >> (modify-phases %standard-phases >> - ;; Reported upstream: >> - ;; Not sure how to apply the suggested fix!? >> + ;; Reported upstream: >> + ;; . >> + ;; Disable the faulty test as the fix is unclear. > > Much better, thanks! > In retrospect, I realize that I should have put the question in the > commit message for a maintainer to read, not in the package definition. > Would that have been better?! No it's perfectly fine in the package declaration :) Hope I'm not bothering you to much with this boring syntactic stuff :p Thanks, Mathieu From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 11 05:00:29 2020 Received: (at 42792-done) by debbugs.gnu.org; 11 Aug 2020 09:00:29 +0000 Received: from localhost ([127.0.0.1]:38637 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k5Q8y-0002V5-T1 for submit@debbugs.gnu.org; Tue, 11 Aug 2020 05:00:29 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:46361) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k5Q8v-0002Um-53 for 42792-done@debbugs.gnu.org; Tue, 11 Aug 2020 05:00:26 -0400 X-Originating-IP: 176.185.184.238 Received: from localhost (static-176-185-184-238.ftth.abo.bbox.fr [176.185.184.238]) (Authenticated sender: tanguy@bioneland.org) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 0BA981C0017; Tue, 11 Aug 2020 09:00:18 +0000 (UTC) Date: Tue, 11 Aug 2020 11:00:18 +0200 From: Tanguy Le Carrour To: Mathieu Othacehe Subject: Re: [bug#42792] [PATCH] gnu: Add python-pydantic. Message-ID: <20200811090018.2tlkd2k4ken7r637@melmoth> References: <20200810084343.10734-1-tanguy@bioneland.org> <87wo26g6ji.fsf@gnu.org> <20200810141911.jtpjdeylftxiyk6q@rafflesia> <87h7t9y3yv.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <87h7t9y3yv.fsf@gnu.org> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 42792-done Cc: 42792-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.7 (-) Hi Mathieu, Le 08/11, Mathieu Othacehe a écrit : > Hey Tanguy, > > >> (uri (git-reference > >> (url "https://github.com/samuelcolvin/pydantic") > >> - (commit (string-append "v" version)))) > >> + (commit (string-append "v" version)))) > >> (file-name (git-file-name name version)) > >> - (sha256 (base32 "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")))) > >> + (sha256 > >> + (base32 "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")))) > > > > Thanks for paying attention to every details!! > > Actually, those things have been bothering me for quiet a while… > > They are not reported by `./pre-inst-env guix lint python-pydantic` or > > fixed by `emacs --script etc/indent-code.el gnu/packages/python-xyz.scm python-pydantic`. :-( > > The first diff is fixed when running "./etc/indent-code.el > gnu/packages/python-xyz.scm python-pydantic" for me. > > > > > Would the following have been acceptable? > > > > ``` > >> + (sha256 (base32 > >> + "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")))) > > ``` > > It is acceptable but the convention is to put "base32" on the next line. > > > > > And what about this? (2-space indent instead of 1, like `add-before` below) > > > > ``` > >> + (sha256 > >> + (base32 "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")))) > > ``` > > No only one space here, this is also handled by the indent script for me. Actually, I think there might be a problem with the way I use the script, because it does not fix anything!? :-( And before you say it, I know, I should be using Emacs and not Vim! ;-) I've considered moving to Emacs as my dev environment (not as my text editor), but there are so many things I have to set up to feel at home: evil, python, fuzzy file search… I hope I'll have some time to work on this later this month. > >> (build-system python-build-system) > >> (arguments > >> '(#:phases > >> (modify-phases %standard-phases > >> - ;; Reported upstream: > >> - ;; Not sure how to apply the suggested fix!? > >> + ;; Reported upstream: > >> + ;; . > >> + ;; Disable the faulty test as the fix is unclear. > > > > Much better, thanks! > > In retrospect, I realize that I should have put the question in the > > commit message for a maintainer to read, not in the package definition. > > Would that have been better?! > > No it's perfectly fine in the package declaration :) > > Hope I'm not bothering you to much with this boring syntactic stuff :p Not at all! I actually very much appreciate the fact that people take the time to review and discuss contributions! Regards -- Tanguy From unknown Tue Jun 17 20:16:09 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 08 Sep 2020 11:24:12 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator