all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Hartmut Goebel <h.goebel@crazy-compilers.com>
To: 50628@debbugs.gnu.org
Subject: [bug#50628] [PATCH 023/154] gnu: Add trytond-account-invoice-correction.
Date: Fri, 17 Sep 2021 00:52:42 +0200	[thread overview]
Message-ID: <44523eb0cd1ad9ba878fe51a35a2ddfcc906a29c.1631832505.git.h.goebel@crazy-compilers.com> (raw)
In-Reply-To: <cover.1631832504.git.h.goebel@crazy-compilers.com>

* gnu/packages/tryton.scm (trytond-account-invoice-correction): New variable.
---
 gnu/packages/tryton.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm
index 4b588f5974..0a57265067 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -628,6 +628,31 @@ term.")
 (define-public python-trytond-account-invoice
   (deprecated-package "python-trytond-account-invoice" trytond-account-invoice))
 
+(define-public trytond-account-invoice-correction
+  (package
+    (name "trytond-account-invoice-correction")
+    (version "6.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "trytond_account_invoice_correction" version))
+       (sha256
+        (base32 "152jxsl6v2wclk1wjhykbyvianh47cp2yg575hkx18dfynyp7nmw"))))
+    (build-system python-build-system)
+    (arguments (tryton-arguments "account_invoice_correction"))
+    (native-inputs `(,@%standard-trytond-native-inputs))
+    (propagated-inputs
+     `(("trytond" ,trytond)
+       ("trytond-account-invoice" ,trytond-account-invoice)))
+    (home-page
+     "https://docs.tryton.org/projects/modules-account-invoice-correction")
+    (synopsis "Tryton module to correct invoice")
+    (description "The @emph{Account Invoice Correction} Tryton module adds a
+wizard on invoice which allows select lines for which the unit price must be
+corrected.  A new invoice is created with those lines in double: once with the
+original quantity, once with the inverted quantity.")
+    (license license:gpl3+)))
+
 (define-public trytond-account-invoice-stock
   (package
     (name "trytond-account-invoice-stock")
-- 
2.30.2





  parent reply	other threads:[~2021-09-16 22:58 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
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 ` Hartmut Goebel [this message]
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=44523eb0cd1ad9ba878fe51a35a2ddfcc906a29c.1631832505.git.h.goebel@crazy-compilers.com \
    --to=h.goebel@crazy-compilers.com \
    --cc=50628@debbugs.gnu.org \
    /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.