all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Maxime Devos <maximedevos@telenet.be>
To: Hartmut Goebel <h.goebel@crazy-compilers.com>, 50628@debbugs.gnu.org
Subject: [bug#50628] [PATCH 004/154] gnu: Add python-tablib.
Date: Fri, 17 Sep 2021 16:15:34 +0200	[thread overview]
Message-ID: <d3a517b066a9ebc385588709642c676df0671065.camel@telenet.be> (raw)
In-Reply-To: <dc3c811fb6288b094a470a8b9287aa91ed2d571e.1631832504.git.h.goebel@crazy-compilers.com>

[-- Attachment #1: Type: text/plain, Size: 2587 bytes --]

Hartmut Goebel schreef op vr 17-09-2021 om 00:52 [+0200]:
> * gnu/packages/python-xyz.scm (python-tablib): New variable.
> ---
>  gnu/packages/python-xyz.scm | 46 +++++++++++++++++++++++++++++++++++++
>  1 file changed, 46 insertions(+)
> 
> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
> index 23a76d7727..693de6db7d 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm
> @@ -26645,3 +26645,49 @@ Braintree Gateway.  Braintree is a US-based payments service provider.")
>  HTML/XML from a Python program in an intuitive, lightweight, customizable and
>  pythonic way.")
>      (license license:expat)))
> +
> +(define-public python-tablib
> +  (package
> +    (name "python-tablib")
> +    (version "3.0.0")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (pypi-uri "tablib" version))
> +       (sha256
> +       (base32 "03f1z6jq6rf67gwhbm9ma4rydm8h447a5nh5lcs5l8jg8l4aqg7q"))))
> +    (build-system python-build-system)
> +    (arguments
> +     '(#:phases
> +       (modify-phases %standard-phases
> +         (replace 'check
> +           (lambda* (#:key tests? #:allow-other-keys)
> +             (when tests?
> +               (setenv "PYTHONPATH"
> +                       (string-append (getcwd) "/build/lib:"
> +                                      (getenv "PYTHONPATH")))
> +               (invoke "pytest")))))))
> +    (native-inputs
> +     `(("python-pandas" ,python-pandas)  ;; required for test-suite
> +       ("python-pytest" ,python-pytest)
> +       ("python-pytest-cov" ,python-pytest-cov)
> +       ("python-setuptools-scm" ,python-setuptools-scm)))
> +    (propagated-inputs
> +     `(("python-markuppy" ,python-markuppy)
> +       ("python-odfpy" ,python-odfpy)
> +       ("python-openpyxl" ,python-openpyxl)
> +       ("python-pyyaml" ,python-pyyaml)
> +       ("python-tabulate" ,python-tabulate)
> +       ("python-xlrd" ,python-xlrd)
> +       ("python-xlwt" ,python-xlwt)))
> +    (home-page "https://tablib.readthedocs.io")
> +    (synopsis "Format agnostic tabular data library")
> +    (description "is a format-agnostic tabular dataset library,
> +written in Python.  Supported [...]

Sentence is missing a subject.  If "guix show python-tablib" is run,
this would result in:

[...]
synopsis: Format agnostic tabular data library
description: is a format-agnostic tabular dataset library, written in Python. [...]

which isn't grammatical, though the meaning would be clear from context.

Greetings,
Maxime.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

  reply	other threads:[~2021-09-17 14:16 UTC|newest]

Thread overview: 163+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-16 22:53 [bug#50628] [PATCH 000/154] Add 146 Tryton modules and some dependencies Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 001/154] gnu: Add python-braintree Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 002/154] gnu: Add python-markuppy Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 003/154] gnu: Add python-xlwt Hartmut Goebel
2021-09-17 12:35   ` Maxime Devos
2021-09-17 14:08   ` Maxime Devos
2021-09-16 22:52 ` [bug#50628] [PATCH 004/154] gnu: Add python-tablib Hartmut Goebel
2021-09-17 14:15   ` Maxime Devos [this message]
2021-09-16 22:52 ` [bug#50628] [PATCH 005/154] gnu: Add python-csb43 Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 006/154] gnu: Add python-febelfin-coda Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 007/154] gnu: Add python-ofxparse Hartmut Goebel
2021-09-17 12:36   ` Maxime Devos
2021-09-16 22:52 ` [bug#50628] [PATCH 008/154] gnu: Add python-stripe Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 009/154] gnu: Add trytond-account-asset Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 010/154] gnu: Add trytond-account-be Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 011/154] gnu: Add trytond-account-cash-rounding Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 012/154] gnu: Add trytond-account-credit-limit Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 013/154] gnu: Add trytond-account-de-skr03 Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 014/154] gnu: Add trytond-account-deposit Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 015/154] gnu: Add trytond-account-dunning Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 016/154] gnu: Add trytond-account-dunning-email Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 017/154] gnu: Add trytond-account-dunning-fee Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 018/154] gnu: Add trytond-account-dunning-letter Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 019/154] gnu: Add trytond-account-es Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 020/154] gnu: Add trytond-account-eu Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 021/154] gnu: Add trytond-account-fr Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 022/154] gnu: Add trytond-account-fr-chorus Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 023/154] gnu: Add trytond-account-invoice-correction Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 024/154] gnu: Add trytond-account-invoice-defer Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 025/154] gnu: Add trytond-account-invoice-history Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 026/154] gnu: Add trytond-account-invoice-line-standalone Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 027/154] gnu: Add trytond-account-invoice-secondary-unit Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 028/154] gnu: Add trytond-account-payment Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 029/154] gnu: Add trytond-account-payment-braintree Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 030/154] gnu: Add trytond-account-payment-clearing Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 031/154] gnu: Add trytond-account-payment-sepa Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 032/154] gnu: Add trytond-account-payment-sepa-cfonb Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 033/154] gnu: Add trytond-account-payment-stripe Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 034/154] gnu: Add trytond-account-statement Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 035/154] gnu: Add trytond-account-statement-aeb43 Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 036/154] gnu: Add trytond-account-statement-coda Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 037/154] gnu: Add trytond-account-statement-ofx Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 038/154] gnu: Add trytond-account-statement-rule Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 039/154] gnu: Add trytond-account-stock-anglo-saxon Hartmut Goebel
2021-09-16 22:52 ` [bug#50628] [PATCH 040/154] gnu: Add trytond-account-stock-continental Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 041/154] gnu: Add trytond-account-stock-landed-cost Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 042/154] gnu: Add trytond-account-stock-landed-cost-weight Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 043/154] gnu: Add trytond-account-tax-cash Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 044/154] gnu: Add trytond-account-tax-rule-country Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 045/154] gnu: Add trytond-analytic-invoice Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 046/154] gnu: Add trytond-analytic-purchase Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 047/154] gnu: Add trytond-analytic-sale Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 048/154] gnu: Add trytond-attendance Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 049/154] gnu: Add trytond-authentication-sms Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 050/154] gnu: Add trytond-bank Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 051/154] gnu: Add trytond-carrier Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 052/154] gnu: Add trytond-carrier-percentage Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 053/154] gnu: Add trytond-carrier-subdivision Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 054/154] gnu: Add trytond-carrier-weight Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 055/154] gnu: Add trytond-commission Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 056/154] gnu: Add trytond-commission-waiting Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 057/154] gnu: Add trytond-company-work-time Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 058/154] gnu: Add trytond-customs Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 059/154] gnu: Add trytond-dashboard Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 060/154] gnu: Add trytond-edocument-uncefact Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 061/154] gnu: Add trytond-edocument-unece Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 062/154] gnu: Add trytond-incoterm Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 063/154] gnu: Add trytond-ldap-authentication Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 064/154] gnu: Add trytond-marketing Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 065/154] gnu: Add trytond-marketing-automation Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 066/154] gnu: Add trytond-marketing-email Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 067/154] gnu: Add trytond-notification-email Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 068/154] gnu: Add trytond-party-avatar Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 069/154] gnu: Add trytond-party-relationship Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 070/154] gnu: Add trytond-party-siret Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 071/154] gnu: Add trytond-product-attribute Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 072/154] gnu: Add trytond-product-classification Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 073/154] gnu: Add trytond-product-classification-taxonomic Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 074/154] gnu: Add trytond-product-cost-fifo Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 075/154] gnu: Add trytond-product-cost-history Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 076/154] gnu: Add trytond-product-cost-warehouse Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 077/154] gnu: Add trytond-product-kit Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 078/154] gnu: Add trytond-product-measurements Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 079/154] gnu: Add trytond-product-price-list Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 080/154] gnu: Add trytond-product-price-list-dates Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 081/154] gnu: Add trytond-product-price-list-parent Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 082/154] gnu: Add trytond-production Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 083/154] gnu: Add trytond-production-outsourcing Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 084/154] gnu: Add trytond-production-routing Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 085/154] gnu: Add trytond-production-split Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 086/154] gnu: Add trytond-production-work Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 087/154] gnu: Add trytond-production-work-timesheet Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 088/154] gnu: Add trytond-project Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 089/154] gnu: Add trytond-project-invoice Hartmut Goebel
2021-09-18 15:09   ` Maxime Devos
2021-09-16 22:53 ` [bug#50628] [PATCH 090/154] gnu: Add trytond-project-plan Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 091/154] gnu: Add trytond-project-revenue Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 092/154] gnu: Add trytond-purchase-amendment Hartmut Goebel
2021-09-18 15:08   ` Maxime Devos
2021-09-16 22:53 ` [bug#50628] [PATCH 093/154] gnu: Add trytond-purchase-history Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 094/154] gnu: Add trytond-purchase-invoice-line-standalone Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 095/154] gnu: Add trytond-purchase-price-list Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 096/154] gnu: Add trytond-purchase-request-quotation Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 097/154] gnu: Add trytond-purchase-requisition Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 098/154] gnu: Add trytond-purchase-secondary-unit Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 099/154] gnu: Add trytond-purchase-shipment-cost Hartmut Goebel
2021-09-16 22:53 ` [bug#50628] [PATCH 100/154] gnu: Add trytond-sale Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 101/154] gnu: Add trytond-sale-advance-payment Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 102/154] gnu: Add trytond-sale-amendment Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 103/154] gnu: Add trytond-sale-complaint Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 104/154] gnu: Add trytond-sale-credit-limit Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 105/154] gnu: Add trytond-sale-discount Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 106/154] gnu: Add trytond-sale-extra Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 107/154] gnu: Add trytond-sale-gift-card Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 108/154] gnu: Add trytond-sale-history Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 109/154] gnu: Add trytond-sale-invoice-grouping Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 110/154] gnu: Add trytond-sale-opportunity Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 111/154] gnu: Add trytond-sale-payment Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 112/154] gnu: Add trytond-sale-price-list Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 113/154] gnu: Add trytond-sale-product-customer Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 114/154] gnu: Add trytond-sale-promotion Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 115/154] gnu: Add trytond-sale-promotion-coupon Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 116/154] gnu: Add trytond-sale-secondary-unit Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 117/154] gnu: Add trytond-sale-shipment-cost Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 118/154] gnu: Add trytond-sale-shipment-grouping Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 119/154] gnu: Add trytond-sale-shipment-tolerance Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 120/154] gnu: Add trytond-sale-stock-quantity Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 121/154] gnu: Add trytond-sale-subscription Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 122/154] gnu: Add trytond-sale-subscription-asset Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 123/154] gnu: Add trytond-sale-supply Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 124/154] gnu: Add trytond-sale-supply-drop-shipment Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 125/154] gnu: Add trytond-sale-supply-production Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 126/154] gnu: Add trytond-stock-assign-manual Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 127/154] gnu: Add trytond-stock-consignment Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 128/154] gnu: Add trytond-stock-forecast Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 129/154] gnu: Add trytond-stock-inventory-location Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 130/154] gnu: Add trytond-stock-location-move Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 131/154] gnu: Add trytond-stock-location-sequence Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 132/154] gnu: Add trytond-stock-lot-sled Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 133/154] gnu: Add trytond-stock-lot-unit Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 134/154] gnu: Add trytond-stock-package Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 135/154] gnu: Add trytond-stock-package-shipping Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 136/154] gnu: Add trytond-stock-package-shipping-ups Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 137/154] gnu: Add trytond-stock-product-location Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 138/154] gnu: Add trytond-stock-quantity-early-planning Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 139/154] gnu: Add trytond-stock-quantity-issue Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 140/154] gnu: Add trytond-stock-secondary-unit Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 141/154] gnu: Add trytond-stock-shipment-cost Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 142/154] gnu: Add trytond-stock-shipment-measurements Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 143/154] gnu: Add trytond-stock-split Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 144/154] gnu: Add trytond-stock-supply-day Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 145/154] gnu: Add trytond-stock-supply-forecast Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 146/154] gnu: Add trytond-stock-supply-production Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 147/154] gnu: Add trytond-timesheet Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 148/154] gnu: Add trytond-timesheet-cost Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 149/154] gnu: Add trytond-user-role Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 150/154] gnu: Add trytond-web-shop Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 151/154] gnu: Add trytond-web-shop-vue-storefront Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 152/154] gnu: Add trytond-web-shop-vue-storefront-stripe Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 153/154] gnu: Add trytond-web-shortener Hartmut Goebel
2021-09-16 22:54 ` [bug#50628] [PATCH 154/154] gnu: Add trytond-web-user Hartmut Goebel
2021-09-21 19:10 ` [bug#50628] [PATCH 000/154] Add 146 Tryton modules and some dependencies Hartmut Goebel
     [not found] ` <handler.50628.B.16318328248009.ack@debbugs.gnu.org>
2021-09-21 19:11   ` bug#50628: Acknowledgement ([PATCH 000/154] Add 146 Tryton modules and some dependencies) Hartmut Goebel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d3a517b066a9ebc385588709642c676df0671065.camel@telenet.be \
    --to=maximedevos@telenet.be \
    --cc=50628@debbugs.gnu.org \
    --cc=h.goebel@crazy-compilers.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.