From unknown Mon Aug 18 11:15:49 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#51148] [PATCH] gnu: Add python-tinydb. Resent-From: jgart Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 12 Oct 2021 05:46:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 51148 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 51148@debbugs.gnu.org Cc: jgart X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16340175143843 (code B ref -1); Tue, 12 Oct 2021 05:46:02 +0000 Received: (at submit) by debbugs.gnu.org; 12 Oct 2021 05:45:14 +0000 Received: from localhost ([127.0.0.1]:33212 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1maAbC-0000zv-Ix for submit@debbugs.gnu.org; Tue, 12 Oct 2021 01:45:14 -0400 Received: from lists.gnu.org ([209.51.188.17]:50386) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1maAbA-0000zn-Np for submit@debbugs.gnu.org; Tue, 12 Oct 2021 01:45:13 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55684) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1maAb7-0005Cw-NE for guix-patches@gnu.org; Tue, 12 Oct 2021 01:45:12 -0400 Received: from mx1.dismail.de ([78.46.223.134]:16439) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1maAb5-0001hp-Ao for guix-patches@gnu.org; Tue, 12 Oct 2021 01:45:09 -0400 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id efb81967 for ; Tue, 12 Oct 2021 07:45:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=from:to:cc :subject:date:message-id:mime-version:content-transfer-encoding; s=20190914; bh=tInPE8r3ulD5dPnz4ttw3MV0ntdcIvwWR0zZKtRl94w=; b= HUbzMmACtgOu7RSgU9M+jE76ugmPHTfCEvmSM7xi4iiQRU8o3hk32FOtVlXUjaTw 6SH7ySRzkb39eO4fMdOew0SMo9dQQAxYAMrVdg9GizuQaRXMYfOxJkyvhzufN1+s 3XCzCbO/CiyTfvuPB1YjPyVV7nxDPkcqddqtkOsn70mMZ1N2yZw6hjeVDmOUCADf 4hZlZ3p1i+eoocL599YG+TwtnTpJ69OUBmcX5c3ekPbPOULnJJUr0NqNOi5VrJEO 1LJKsUfjCmHAQJ5fFk9D9GGpASETHopn/3o5bg/DHCTTXX+YtLgdjSNcJPS8WpKq 6iQNhgVdj33e7TTVRzg0Xg== Received: from smtp1.dismail.de ( [10.240.26.11]) by mx1.dismail.de (OpenSMTPD) with ESMTP id af5ce2f0 for ; Tue, 12 Oct 2021 07:45:01 +0200 (CEST) Received: from smtp1.dismail.de (localhost [127.0.0.1]) by smtp1.dismail.de (OpenSMTPD) with ESMTP id 836c13d9 for ; Tue, 12 Oct 2021 07:45:01 +0200 (CEST) Received: by dismail.de (OpenSMTPD) with ESMTPSA id d05907b4 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Tue, 12 Oct 2021 07:45:00 +0200 (CEST) From: jgart Date: Tue, 12 Oct 2021 01:44:49 -0400 Message-Id: <20211012054449.16935-1-jgart@dismail.de> X-Mailer: git-send-email 2.33.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=78.46.223.134; envelope-from=jgart@dismail.de; helo=mx1.dismail.de X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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 (--) * gnu/packages/databases.scm (python-tinydb): New variable. --- gnu/packages/databases.scm | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index b1dd44da1c..60970b9c8e 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -579,6 +579,46 @@ the API, and provides features such as: @end itemize") (license license:bsd-3))) +(define-public python-tinydb + (package + (name "python-tinydb") + (version "4.5.2") + (source (origin + (method url-fetch) + (uri (pypi-uri "tinydb" version)) + (sha256 + (base32 + "1x9c4s42930wwal3ds0plwb57kg5c3gj7kbpy64c29vq478b463x")))) + (build-system python-build-system) + (arguments + ;; PyPi tarball does not contain tests and github repository does not + ;; have a setup.py file (only pyproject). + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key inputs outputs tests? #:allow-other-keys) + (when tests? + (add-installed-pythonpath inputs outputs) + (setenv "PYTHONPATH" (string-append ".:" (getenv "PYTHONPATH"))) + (invoke "pytest"))))))) + (native-inputs + `(("python-pytest" ,python-pytest) + ("python-pytest-cov" ,python-pytest-cov) + ("python-pycodestyle" ,python-pycodestyle) + ("python-pyyaml" ,python-pyyaml))) + (propagated-inputs + `(("python-typing-extensions" ,python-typing-extensions))) + (home-page "https://github.com/msiemens/tinydb") + (synopsis + "TinyDB is a lightweight document oriented database") + (description +"TinyDB is a lightweight document oriented database optimized for +your happiness. It's written in pure Python and has no external +dependencies. The targets are small apps that would be blown away by a +SQL-DB or an external database server.") + (license license:expat))) + (define-public python-pylibmc (package (name "python-pylibmc") -- 2.33.0 From unknown Mon Aug 18 11:15:49 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#51148] [PATCH] gnu: Add python-tinydb. Resent-From: Vinicius Monego Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 11 Nov 2021 05:26:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 51148 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: jgart@dismail.de, 51148@debbugs.gnu.org X-Debbugs-Original-To: jgart , guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16366083167315 (code B ref -1); Thu, 11 Nov 2021 05:26:01 +0000 Received: (at submit) by debbugs.gnu.org; 11 Nov 2021 05:25:16 +0000 Received: from localhost ([127.0.0.1]:39866 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ml2aJ-0001tv-Ty for submit@debbugs.gnu.org; Thu, 11 Nov 2021 00:25:16 -0500 Received: from lists.gnu.org ([209.51.188.17]:53062) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ml2aH-0001tl-92 for submit@debbugs.gnu.org; Thu, 11 Nov 2021 00:25:15 -0500 Received: from eggs.gnu.org ([209.51.188.92]:43738) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ml2aH-0005w2-1L for guix-patches@gnu.org; Thu, 11 Nov 2021 00:25:13 -0500 Received: from mout01.posteo.de ([185.67.36.65]:45793) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ml2aE-0007w8-Oq for guix-patches@gnu.org; Thu, 11 Nov 2021 00:25:12 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id DF148240028 for ; Thu, 11 Nov 2021 06:25:06 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1636608306; bh=V4FR3MB3R5wvTwVudMliE8fxDiM2Oa7+6vBHBaeQiLw=; h=Subject:From:To:Date:From; b=UUVxInNTdyYqZUAG14Npu5LxSrFnYa8ms3KGXVwcLxZgf+XERoQB3myTDH+8Ll4RR YLyH/Qv2I+zwmTNzVSIntM9JkZwT2SZaDbK4k6uPoHkXgLVp+anr2uMbYQ6PbXi2LJ 01K1Ckh53NW3+1qI331FOXkYVXUplI1kcalEudq1WL/inRXndE+E0AdtW+4c3F9cJx rLntNlb7liN21kDQ7fbXtlPHPHigdpQciHJ4GjThobO4jJEYAnjWLs+n5tEtAdYOjd 5RiWe8V8V5zdVe+VBZIda5fbRQJoRW0EJ74ekuQYbbp6HiZ4ongbZXKazXHrrb3CZc XKn0ZzqD9I+Fg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4HqVXc6DdNz9rxD; Thu, 11 Nov 2021 06:25:04 +0100 (CET) Message-ID: From: Vinicius Monego Date: Thu, 11 Nov 2021 05:24:54 +0000 In-Reply-To: <20211012054449.16935-1-jgart@dismail.de> References: <20211012054449.16935-1-jgart@dismail.de> Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.65; envelope-from=monego@posteo.net; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.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: -2.3 (--) Hi jgart, Em ter, 2021-10-12 às 01:44 -0400, jgart escreveu: > * gnu/packages/databases.scm (python-tinydb): New variable. > --- >  gnu/packages/databases.scm | 40 Don't miss your copyright in this file. > ++++++++++++++++++++++++++++++++++++++ >  1 file changed, 40 insertions(+) > > diff --git a/gnu/packages/databases.scm  > b/gnu/packages/databases.scm > index b1dd44da1c..60970b9c8e 100644 > --- a/gnu/packages/databases.scm > +++ b/gnu/packages/databases.scm > @@ -579,6 +579,46 @@ the API, and provides features such as: >  @end itemize") >      (license license:bsd-3))) >   > +(define-public python-tinydb > +  (package > +    (name "python-tinydb") > +    (version "4.5.2") > +    (source (origin > +              (method url-fetch) > +              (uri (pypi-uri "tinydb" version)) > +              (sha256 > +               (base32 > +                > "1x9c4s42930wwal3ds0plwb57kg5c3gj7kbpy64c29vq478b463x")))) > +    (build-system python-build-system) The indentation is off below. > +    (arguments > +       ;; PyPi tarball does not contain tests and github repository > does not > +       ;; have a setup.py file (only pyproject). I recently noticed this pattern of shipping only Poetry in the repository while at the same time not shipping tests in PyPI. I don't know why this is happening or what we can do about it in guix, the best for now is to source from PyPI and skip tests like in this package. > +      `(#:tests? #f > +        #:phases > +        (modify-phases %standard-phases > +          (replace 'check > +            (lambda* (#:key inputs outputs tests? #:allow-other- > keys) > +              (when tests? > +                (add-installed-pythonpath inputs outputs) > +                (setenv "PYTHONPATH" (string-append ".:" (getenv > "PYTHONPATH"))) The two lines above are redundant. The second line is the manual way of doing what the first one does. But if we don't have a way to run the tests, I'd not override the check phase. > +                (invoke "pytest"))))))) > +    (native-inputs > +      `(("python-pytest" ,python-pytest) > +        ("python-pytest-cov" ,python-pytest-cov) > +        ("python-pycodestyle" ,python-pycodestyle) > +        ("python-pyyaml" ,python-pyyaml))) Test-related native inputs are also useless if tests can't run. > +    (propagated-inputs > +      `(("python-typing-extensions" ,python-typing-extensions))) > +    (home-page "https://github.com/msiemens/tinydb") > +    (synopsis > +      "TinyDB is a lightweight document oriented database") Same line for the synopsis. > +    (description > +"TinyDB is a lightweight document oriented database optimized for > +your happiness.  It's written in pure Python and has no external > +dependencies.  The targets are small apps that would be blown away > by a > +SQL-DB or an external database server.") I'd suggest "TinyDB is a small document oriented database written in pure Python with no external dependencies. [...]" > +    (license license:expat))) > + >  (define-public python-pylibmc >    (package >      (name "python-pylibmc") From unknown Mon Aug 18 11:15:49 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#51148] [PATCH] gnu: Add python-tinydb. Resent-From: Vinicius Monego Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 11 Nov 2021 05:28:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 51148 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: jgart , 51148@debbugs.gnu.org Received: via spool by 51148-submit@debbugs.gnu.org id=B51148.16366084277518 (code B ref 51148); Thu, 11 Nov 2021 05:28:02 +0000 Received: (at 51148) by debbugs.gnu.org; 11 Nov 2021 05:27:07 +0000 Received: from localhost ([127.0.0.1]:39870 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ml2c6-0001xA-DP for submit@debbugs.gnu.org; Thu, 11 Nov 2021 00:27:06 -0500 Received: from mout02.posteo.de ([185.67.36.66]:45127) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ml2c1-0001wZ-6B for 51148@debbugs.gnu.org; Thu, 11 Nov 2021 00:27:04 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 1854E240103 for <51148@debbugs.gnu.org>; Thu, 11 Nov 2021 06:26:54 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1636608415; bh=ZRy7fwY9QcItvdYYD8Ow2SSGG7/sWHzeUWUJ3HOz06k=; h=Subject:From:To:Date:From; b=mXKxpHP2+I/zl+7gsZ7E5n5Si0DuW+Xr+ldHa4WWHXL9+sBh4od2kSvh5utWOdEUL O/pKtW0xD6L/ug7d1IE8CK16UbNOU7BCJpqcZurtB3Q8gIq3c1jpI8ezUSKppO4fXA 1g+QnV0hPPMxsdr9MOVN5aISNjWhStyD62jtwVWm27GZQQx5DwblfdVZ/aCFx4da1R eZ4qvcyuE6hZU7eRwSYdiyXJPr6TciWfsMv2Go1mQxV2eo1GrkImlqS2nXSW/PWZJt 49ydrg86aSLsSepXxTc2nl0W3ozO87ERZfO7GfzkUdJs2Q+WqCnevwiRMtB+t04xDg I4coWNctZgl1A== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4HqVZj2Dgwz9rxF; Thu, 11 Nov 2021 06:26:53 +0100 (CET) Message-ID: From: Vinicius Monego Date: Thu, 11 Nov 2021 05:26:45 +0000 In-Reply-To: <20211012054449.16935-1-jgart@dismail.de> References: <20211012054449.16935-1-jgart@dismail.de> Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 (---) Hi jgart, Em ter, 2021-10-12 às 01:44 -0400, jgart escreveu: > * gnu/packages/databases.scm (python-tinydb): New variable. > --- >  gnu/packages/databases.scm | 40 Don't miss your copyright in this file. > ++++++++++++++++++++++++++++++++++++++ >  1 file changed, 40 insertions(+) > > diff --git a/gnu/packages/databases.scm  > b/gnu/packages/databases.scm > index b1dd44da1c..60970b9c8e 100644 > --- a/gnu/packages/databases.scm > +++ b/gnu/packages/databases.scm > @@ -579,6 +579,46 @@ the API, and provides features such as: >  @end itemize") >      (license license:bsd-3))) >   > +(define-public python-tinydb > +  (package > +    (name "python-tinydb") > +    (version "4.5.2") > +    (source (origin > +              (method url-fetch) > +              (uri (pypi-uri "tinydb" version)) > +              (sha256 > +               (base32 > +                > "1x9c4s42930wwal3ds0plwb57kg5c3gj7kbpy64c29vq478b463x")))) > +    (build-system python-build-system) The indentation is off below. > +    (arguments > +       ;; PyPi tarball does not contain tests and github repository > does not > +       ;; have a setup.py file (only pyproject). I recently noticed this pattern of shipping only Poetry in the repository while at the same time not shipping tests in PyPI. I don't know why this is happening or what we can do about it in guix, the best for now is to source from PyPI and skip tests like in this package. > +      `(#:tests? #f > +        #:phases > +        (modify-phases %standard-phases > +          (replace 'check > +            (lambda* (#:key inputs outputs tests? #:allow-other- > keys) > +              (when tests? > +                (add-installed-pythonpath inputs outputs) > +                (setenv "PYTHONPATH" (string-append ".:" (getenv > "PYTHONPATH"))) The two lines above are redundant. The second line is the manual way of doing what the first one does. But if we don't have a way to run the tests, I'd not override the check phase. > +                (invoke "pytest"))))))) > +    (native-inputs > +      `(("python-pytest" ,python-pytest) > +        ("python-pytest-cov" ,python-pytest-cov) > +        ("python-pycodestyle" ,python-pycodestyle) > +        ("python-pyyaml" ,python-pyyaml))) Test-related native inputs are also useless if tests can't run. > +    (propagated-inputs > +      `(("python-typing-extensions" ,python-typing-extensions))) > +    (home-page "https://github.com/msiemens/tinydb") > +    (synopsis > +      "TinyDB is a lightweight document oriented database") Same line for the synopsis. > +    (description > +"TinyDB is a lightweight document oriented database optimized for > +your happiness.  It's written in pure Python and has no external > +dependencies.  The targets are small apps that would be blown away > by a > +SQL-DB or an external database server.") I'd suggest "TinyDB is a small document oriented database written in pure Python with no external dependencies. [...]". > +    (license license:expat))) > + >  (define-public python-pylibmc >    (package >      (name "python-pylibmc") From unknown Mon Aug 18 11:15:49 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#51148] [PATCH] gnu: Add python-tinydb. References: <20211012054449.16935-1-jgart@dismail.de> In-Reply-To: <20211012054449.16935-1-jgart@dismail.de> Resent-From: jgart Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 11 Nov 2021 16:34:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 51148 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 51148@debbugs.gnu.org Cc: Vinicius Monego , jgart Received: via spool by 51148-submit@debbugs.gnu.org id=B51148.16366484034047 (code B ref 51148); Thu, 11 Nov 2021 16:34:01 +0000 Received: (at 51148) by debbugs.gnu.org; 11 Nov 2021 16:33:23 +0000 Received: from localhost ([127.0.0.1]:42097 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mlD0s-00013D-Oz for submit@debbugs.gnu.org; Thu, 11 Nov 2021 11:33:22 -0500 Received: from mx1.dismail.de ([78.46.223.134]:48266) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mlD0q-00012v-29 for 51148@debbugs.gnu.org; Thu, 11 Nov 2021 11:33:20 -0500 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 83e0c42c; Thu, 11 Nov 2021 17:33:12 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=from:to:cc :subject:date:message-id:mime-version:content-transfer-encoding; s=20190914; bh=zupgl/0qD3BzxEHCt1upkFzlXf/SpRMBMLWT9JsaAbE=; b= M618Qx1AbTqsGdFqf445Q7ow3rpK9jcUDjM/IDqItilEi8SpyUxK8uld1Kul+CjF lg0zfPs9yiELRdslA0j9RGFFK06U32mQYC2dvNQYf0ZtPnhgovZTl/9+KpI5mcmK VyVc/pkouJ/rnEU9Klr6ns4AVdxegE1Jb6eeWFIWELZrXgYS5pHpSulQdUSMHd1i ZGs/SAwY7EFBGtocgQ52uzLUGKaIt0QI+g4+sJ5ALZbwXqEdNt16OgkCmHSCR13k M440w7u2Y+2HjOIHMxBLWZ9GeNM52rOzH/kEVpdfRTV1iLUzVBprAUT4IJk4MmqY FWyuAWeL2Awj959ysCKKiw== Received: from smtp2.dismail.de ( [10.240.26.12]) by mx1.dismail.de (OpenSMTPD) with ESMTP id f422d240; Thu, 11 Nov 2021 17:33:11 +0100 (CET) Received: from smtp2.dismail.de (localhost [127.0.0.1]) by smtp2.dismail.de (OpenSMTPD) with ESMTP id 509f52ec; Thu, 11 Nov 2021 17:33:10 +0100 (CET) Received: by dismail.de (OpenSMTPD) with ESMTPSA id c9f23a2f (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Thu, 11 Nov 2021 17:33:09 +0100 (CET) From: jgart Date: Thu, 11 Nov 2021 11:31:52 -0500 Message-Id: <20211111163151.13310-1-jgart@dismail.de> X-Mailer: git-send-email 2.33.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) 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 Vinicius, Attached are the changes you requested. Thanks for the code review. It's much appreciated! * gnu/packages/databases.scm (python-tinydb): New variable. --- gnu/packages/databases.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 92a7aa2761..2495ad8a28 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -4072,6 +4072,29 @@ (define-public freetds connecting to MS SQL and Sybase servers over TCP/IP.") (license license:lgpl2.0+))) +(define-public python-tinydb + (package + (name "python-tinydb") + (version "4.5.2") + (source (origin + (method url-fetch) + (uri (pypi-uri "tinydb" version)) + (sha256 + (base32 "1x9c4s42930wwal3ds0plwb57kg5c3gj7kbpy64c29vq478b463x")))) + (build-system python-build-system) + ;; PyPi tarball does not contain tests and github repository does not + ;; have a setup.py file (only pyproject). + (arguments `(#:tests? #f)) + (propagated-inputs + `(("python-typing-extensions" ,python-typing-extensions))) + (home-page "https://github.com/msiemens/tinydb") + (synopsis "TinyDB is a lightweight document oriented database") + (description +"TinyDB is a small document oriented database written in pure Python +with no external dependencies. The targets are small apps that would +be blown away by a SQL-DB or an external database server.") + (license license:expat))) + (define-public sequeler (package (name "sequeler") -- 2.33.1 From unknown Mon Aug 18 11:15:49 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#51148] [PATCH v3] gnu: Add python-tinydb. References: <20211012054449.16935-1-jgart@dismail.de> In-Reply-To: <20211012054449.16935-1-jgart@dismail.de> Resent-From: jgart Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 12 Nov 2021 03:49:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 51148 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 51148@debbugs.gnu.org Cc: Vinicius Monego , jgart Received: via spool by 51148-submit@debbugs.gnu.org id=B51148.163668888916218 (code B ref 51148); Fri, 12 Nov 2021 03:49:01 +0000 Received: (at 51148) by debbugs.gnu.org; 12 Nov 2021 03:48:09 +0000 Received: from localhost ([127.0.0.1]:42833 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mlNXs-0004DV-Ml for submit@debbugs.gnu.org; Thu, 11 Nov 2021 22:48:08 -0500 Received: from mx1.dismail.de ([78.46.223.134]:48588) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mlNXr-0004Cw-64 for 51148@debbugs.gnu.org; Thu, 11 Nov 2021 22:48:08 -0500 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 2d03a513; Fri, 12 Nov 2021 04:48:00 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=from:to:cc :subject:date:message-id:mime-version:content-type :content-transfer-encoding; s=20190914; bh=k0W7rfQxEvkOYcfEn5Se1 l614uRJB9/OW/QWed7IHBo=; b=joqybRnxdFGq3iPkugHyQgrsLxBwXOLztnEDS ObjI+C+nzzLrw4QTi672zavXMMrN+EKg29s3i8pVjgQRlfnZMWca6YImLw/7QD/Z SHQtQpqBS4KvEDYFdPrB7rpqkQxyGMLLlxQ0xcg0T8ADGpfoHrkvukbwXLjKrN8o o2+3kBGHMo6DhuqSaL3cDbk0ePItyyCNalMVlx1U8igcX4iTCfCuqPOdtdtUt//3 1wJH6AfWMZL2XGI7VwE3RzaFmRKqRrzll3AMxwJcBOH1cpYsMtesEvgTfmbq/b+A srf8vEkMVAdDzgvBiKEx/7yK0eh3quYk7KuWPBjx0sWlF73AA== Received: from smtp1.dismail.de ( [10.240.26.11]) by mx1.dismail.de (OpenSMTPD) with ESMTP id f1b6ca7e; Fri, 12 Nov 2021 04:47:59 +0100 (CET) Received: from smtp1.dismail.de (localhost [127.0.0.1]) by smtp1.dismail.de (OpenSMTPD) with ESMTP id 6a569c1f; Fri, 12 Nov 2021 04:47:59 +0100 (CET) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 840fa481 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Fri, 12 Nov 2021 04:47:51 +0100 (CET) From: jgart Date: Thu, 11 Nov 2021 22:45:02 -0500 Message-Id: <20211112034501.29311-1-jgart@dismail.de> X-Mailer: git-send-email 2.33.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) 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 (-) I forgot to add the copyright at the top. Attached is version 3 of the patchset. * gnu/packages/databases.scm (python-tinydb): New variable. --- gnu/packages/databases.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 92a7aa2761..87fa1da895 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -53,6 +53,7 @@ ;;; Copyright © 2021 Simon Streit ;;; Copyright © 2021 Alexandre Hannud Abdo ;;; Copyright © 2021 Simon Tournier +;;; Copyright © 2021 Jorge Gomez ;;; ;;; This file is part of GNU Guix. ;;; @@ -4072,6 +4073,29 @@ (define-public freetds connecting to MS SQL and Sybase servers over TCP/IP.") (license license:lgpl2.0+))) +(define-public python-tinydb + (package + (name "python-tinydb") + (version "4.5.2") + (source (origin + (method url-fetch) + (uri (pypi-uri "tinydb" version)) + (sha256 + (base32 "1x9c4s42930wwal3ds0plwb57kg5c3gj7kbpy64c29vq478b463x")))) + (build-system python-build-system) + ;; PyPi tarball does not contain tests and github repository does not + ;; have a setup.py file (only pyproject). + (arguments `(#:tests? #f)) + (propagated-inputs + `(("python-typing-extensions" ,python-typing-extensions))) + (home-page "https://github.com/msiemens/tinydb") + (synopsis "TinyDB is a lightweight document oriented database") + (description +"TinyDB is a small document oriented database written in pure Python +with no external dependencies. The targets are small apps that would +be blown away by a SQL-DB or an external database server.") + (license license:expat))) + (define-public sequeler (package (name "sequeler") -- 2.33.1 From unknown Mon Aug 18 11:15:49 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: jgart Subject: bug#51148: closed (Re: bug#51148: [PATCH] gnu: Add python-tinydb.) Message-ID: References: <87v90jl1rk.fsf_-_@gnu.org> <20211012054449.16935-1-jgart@dismail.de> X-Gnu-PR-Message: they-closed 51148 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 51148@debbugs.gnu.org Date: Tue, 23 Nov 2021 08:23:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1637655782-22438-1" This is a multi-part message in MIME format... ------------=_1637655782-22438-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #51148: [PATCH] gnu: Add python-tinydb. 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 51148@debbugs.gnu.org. --=20 51148: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D51148 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1637655782-22438-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 51148-done) by debbugs.gnu.org; 23 Nov 2021 08:22:51 +0000 Received: from localhost ([127.0.0.1]:49893 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mpR4l-0005pV-I0 for submit@debbugs.gnu.org; Tue, 23 Nov 2021 03:22:51 -0500 Received: from eggs.gnu.org ([209.51.188.92]:58570) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mpR4i-0005pH-6m for 51148-done@debbugs.gnu.org; Tue, 23 Nov 2021 03:22:50 -0500 Received: from [2001:470:142:3::e] (port=37806 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mpR4c-0008PZ-Am; Tue, 23 Nov 2021 03:22:42 -0500 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=XNKahOhdnd5vOU1BPer3oIBrJLtwMPjOoHocYNjz6Bs=; b=U1+22xkUoF/Y4tPZU//d +wjlcKzGk+QhphbhZcAw6WQsC4vle74UHSX9NBSd4V0JUL+mD0KGQoTljgrBaMp8FgaTevEDmG6MM uHY5Gxyg6yTEixvE0CGZD/NdwJeQrcWVq+mnxJuTlxLK49jE/Wj2NQ4JdDqXeogMaQMWucz838XQp NtknMwwoW0x5n6U2TOKT6rpeoRBSkp8fYm0z3a0CFNclWuwmvb/l7mklY5vMNUzMmADshdhTTmcpo pBmjDqFmsP7WX6Yd0Zj3i+IBytajqMx5M15oLRseBU90mR4js2dHsXQHxFn4IPVbWAt+kO09Kp9aL /jhv7Txoczffog==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:50240 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mpR4c-0001sI-4K; Tue, 23 Nov 2021 03:22:42 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: jgart Subject: Re: bug#51148: [PATCH] gnu: Add python-tinydb. References: <20211012054449.16935-1-jgart@dismail.de> <20211112034501.29311-1-jgart@dismail.de> Date: Tue, 23 Nov 2021 09:22:39 +0100 In-Reply-To: <20211112034501.29311-1-jgart@dismail.de> (jgart@dismail.de's message of "Thu, 11 Nov 2021 22:45:02 -0500") Message-ID: <87v90jl1rk.fsf_-_@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (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: 51148-done Cc: 51148-done@debbugs.gnu.org, Vinicius Monego 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 (---) Hi, jgart skribis: > I forgot to add the copyright at the top. In the meantime another line had been added for you. :-) > Attached is version 3 of the patchset. > > * gnu/packages/databases.scm (python-tinydb): New variable. I applied and tweaked indentation. Thanks, and thanks Vinicius for reviewing, Ludo=E2=80=99. ------------=_1637655782-22438-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 12 Oct 2021 05:45:14 +0000 Received: from localhost ([127.0.0.1]:33212 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1maAbC-0000zv-Ix for submit@debbugs.gnu.org; Tue, 12 Oct 2021 01:45:14 -0400 Received: from lists.gnu.org ([209.51.188.17]:50386) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1maAbA-0000zn-Np for submit@debbugs.gnu.org; Tue, 12 Oct 2021 01:45:13 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55684) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1maAb7-0005Cw-NE for guix-patches@gnu.org; Tue, 12 Oct 2021 01:45:12 -0400 Received: from mx1.dismail.de ([78.46.223.134]:16439) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1maAb5-0001hp-Ao for guix-patches@gnu.org; Tue, 12 Oct 2021 01:45:09 -0400 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id efb81967 for ; Tue, 12 Oct 2021 07:45:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=from:to:cc :subject:date:message-id:mime-version:content-transfer-encoding; s=20190914; bh=tInPE8r3ulD5dPnz4ttw3MV0ntdcIvwWR0zZKtRl94w=; b= HUbzMmACtgOu7RSgU9M+jE76ugmPHTfCEvmSM7xi4iiQRU8o3hk32FOtVlXUjaTw 6SH7ySRzkb39eO4fMdOew0SMo9dQQAxYAMrVdg9GizuQaRXMYfOxJkyvhzufN1+s 3XCzCbO/CiyTfvuPB1YjPyVV7nxDPkcqddqtkOsn70mMZ1N2yZw6hjeVDmOUCADf 4hZlZ3p1i+eoocL599YG+TwtnTpJ69OUBmcX5c3ekPbPOULnJJUr0NqNOi5VrJEO 1LJKsUfjCmHAQJ5fFk9D9GGpASETHopn/3o5bg/DHCTTXX+YtLgdjSNcJPS8WpKq 6iQNhgVdj33e7TTVRzg0Xg== Received: from smtp1.dismail.de ( [10.240.26.11]) by mx1.dismail.de (OpenSMTPD) with ESMTP id af5ce2f0 for ; Tue, 12 Oct 2021 07:45:01 +0200 (CEST) Received: from smtp1.dismail.de (localhost [127.0.0.1]) by smtp1.dismail.de (OpenSMTPD) with ESMTP id 836c13d9 for ; Tue, 12 Oct 2021 07:45:01 +0200 (CEST) Received: by dismail.de (OpenSMTPD) with ESMTPSA id d05907b4 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Tue, 12 Oct 2021 07:45:00 +0200 (CEST) From: jgart To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-tinydb. Date: Tue, 12 Oct 2021 01:44:49 -0400 Message-Id: <20211012054449.16935-1-jgart@dismail.de> X-Mailer: git-send-email 2.33.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=78.46.223.134; envelope-from=jgart@dismail.de; helo=mx1.dismail.de X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: jgart 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 (--) * gnu/packages/databases.scm (python-tinydb): New variable. --- gnu/packages/databases.scm | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index b1dd44da1c..60970b9c8e 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -579,6 +579,46 @@ the API, and provides features such as: @end itemize") (license license:bsd-3))) +(define-public python-tinydb + (package + (name "python-tinydb") + (version "4.5.2") + (source (origin + (method url-fetch) + (uri (pypi-uri "tinydb" version)) + (sha256 + (base32 + "1x9c4s42930wwal3ds0plwb57kg5c3gj7kbpy64c29vq478b463x")))) + (build-system python-build-system) + (arguments + ;; PyPi tarball does not contain tests and github repository does not + ;; have a setup.py file (only pyproject). + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key inputs outputs tests? #:allow-other-keys) + (when tests? + (add-installed-pythonpath inputs outputs) + (setenv "PYTHONPATH" (string-append ".:" (getenv "PYTHONPATH"))) + (invoke "pytest"))))))) + (native-inputs + `(("python-pytest" ,python-pytest) + ("python-pytest-cov" ,python-pytest-cov) + ("python-pycodestyle" ,python-pycodestyle) + ("python-pyyaml" ,python-pyyaml))) + (propagated-inputs + `(("python-typing-extensions" ,python-typing-extensions))) + (home-page "https://github.com/msiemens/tinydb") + (synopsis + "TinyDB is a lightweight document oriented database") + (description +"TinyDB is a lightweight document oriented database optimized for +your happiness. It's written in pure Python and has no external +dependencies. The targets are small apps that would be blown away by a +SQL-DB or an external database server.") + (license license:expat))) + (define-public python-pylibmc (package (name "python-pylibmc") -- 2.33.0 ------------=_1637655782-22438-1-- From unknown Mon Aug 18 11:15:49 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#51148] [PATCH] gnu: Add python-tinydb. Resent-From: jgart Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 23 Nov 2021 08:38:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 51148 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 51148-done@debbugs.gnu.org, Vinicius Monego Received: via spool by 51148-done@debbugs.gnu.org id=D51148.163765665823906 (code D ref 51148); Tue, 23 Nov 2021 08:38:02 +0000 Received: (at 51148-done) by debbugs.gnu.org; 23 Nov 2021 08:37:38 +0000 Received: from localhost ([127.0.0.1]:49921 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mpRJ4-0006DW-4E for submit@debbugs.gnu.org; Tue, 23 Nov 2021 03:37:38 -0500 Received: from mx1.dismail.de ([78.46.223.134]:6394) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mpRJ1-0006DI-IR for 51148-done@debbugs.gnu.org; Tue, 23 Nov 2021 03:37:36 -0500 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id c266d1f4; Tue, 23 Nov 2021 09:37:28 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=date :message-id:from:to:cc:subject:in-reply-to:references :mime-version:content-type:content-transfer-encoding; s= 20190914; bh=By1c9eHbIgAFvmOUqyydi3kVqEHJU/gwziipi8O8dqk=; b=tug 9hk3uQRq5F+wJag9wsB0o2bVkVjPE17SqxDKvnBtkzUmyvkvF/bRLptyIiCoEQnq DhDRZ6pdSczyXYb0dCKXo64YTEuwGCm5allOsDD/IVpxJiCTGhv9rONVWlRG23ks m5cTGEu5Wid0F0FUWk0UMWvCqX29pWy+0wl4kJlY/NrP8zeN3sabQM1/wlW3wzmg rR73oroJcGFTO12F8w0EoNN0MaauJ5jTVXs4ymQR5n73w1ocbhu9QEJ45UqjTPXb jsEecmLHfqAIjTkXkQalxEG71xryqb6caWvv4r79EIFg0tc+/Ygg4SCjHPJ6bdjl GQHElIfuT0EEhAf/U5g== Received: from smtp1.dismail.de ( [10.240.26.11]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 0b5c53b9; Tue, 23 Nov 2021 09:37:28 +0100 (CET) Received: from smtp1.dismail.de (localhost [127.0.0.1]) by smtp1.dismail.de (OpenSMTPD) with ESMTP id 4f951f4b; Tue, 23 Nov 2021 09:37:27 +0100 (CET) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 9eca5fb0 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Tue, 23 Nov 2021 09:37:27 +0100 (CET) Date: Tue, 23 Nov 2021 03:37:25 -0500 Message-ID: <20211123033725.GF895@gac.attlocal.net> From: jgart In-Reply-To: <87v90jl1rk.fsf_-_@gnu.org> References: <20211012054449.16935-1-jgart@dismail.de> <20211112034501.29311-1-jgart@dismail.de> <87v90jl1rk.fsf_-_@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) 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 (-) On Tue, 23 Nov 2021 09:22:39 +0100 Ludovic Courtès wrote: Thanks Ludo and Vinicius! all best, jgart