From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 20 17:17:57 2022 Received: (at submit) by debbugs.gnu.org; 20 Jun 2022 21:17:57 +0000 Received: from localhost ([127.0.0.1]:58552 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o3OmT-0006ya-DW for submit@debbugs.gnu.org; Mon, 20 Jun 2022 17:17:57 -0400 Received: from lists.gnu.org ([209.51.188.17]:38262) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o3OmP-0006yR-I6 for submit@debbugs.gnu.org; Mon, 20 Jun 2022 17:17:56 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54026) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o3OmP-0008Pb-9M for guix-patches@gnu.org; Mon, 20 Jun 2022 17:17:53 -0400 Received: from mx1.dismail.de ([78.46.223.134]:17432) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o3OmM-0007SF-Mj for guix-patches@gnu.org; Mon, 20 Jun 2022 17:17:52 -0400 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id b3d835db for ; Mon, 20 Jun 2022 23:17:45 +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=TsPH/agNABsdFtjHSXB9rgElheE4AbYfUl4ehNacleA=; b= KnKqfeU8LbFcGMEi46X0R0ghmF4bAkIPyRiJ/5XNIiettTBgcY0FQwDLRdQz1RoJ 2jBmnjlVd9JFz3yZ09S+AwtjwsAiBwoidiq8Pt9kvB66lkiiMQq08MHEDx7qHODG yuw/jh1qsDm0ZwlsIZJR3uAMD8P7scqeHoax0s/+WXWbrXp3/xbttmQdannWEOQq rrTMd1NnDS93kfjXQIEPntZijo4ComO+m+E320JEO4e/s4uRZB+eRyHTLe11ewW+ e39Do0mRTfeREBP48Gq0cbZkX4BYhMSkPNsi1y3QeivH6XdfNljYpdVUT/4XePBO 8tewImk2lxPLhyRcSzzEyQ== Received: from smtp1.dismail.de ( [10.240.26.11]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 3f09094a for ; Mon, 20 Jun 2022 23:17:45 +0200 (CEST) Received: from smtp1.dismail.de (localhost [127.0.0.1]) by smtp1.dismail.de (OpenSMTPD) with ESMTP id 040e2a6e for ; Mon, 20 Jun 2022 23:17:45 +0200 (CEST) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 261eaa9a (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Mon, 20 Jun 2022 23:17:44 +0200 (CEST) From: jgart To: guix-patches@gnu.org Subject: [PATCH] python-build-system: Fix typo in module-level comment paragraph. Date: Mon, 20 Jun 2022 16:17:33 -0500 Message-Id: <20220620211733.14137-1-jgart@dismail.de> X-Mailer: git-send-email 2.36.1 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, T_SCC_BODY_TEXT_LINE=-0.01 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 (--) * guix/build/python-build-system.scm: Fix typo in comment paragraph. --- guix/build/python-build-system.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/build/python-build-system.scm b/guix/build/python-build-system.scm index 08871f60cd..28041e90a3 100644 --- a/guix/build/python-build-system.scm +++ b/guix/build/python-build-system.scm @@ -68,7 +68,7 @@ (define-module (guix build python-build-system) ;; downloading the package source from PyPI (the Python Package Index). Both ;; of them import setuptools and execute the "setup.py" file under their ;; control. Thus the "setup.py" behaves as if the developer had imported -;; setuptools within setup.py - even is still using only distutils. +;; setuptools within setup.py - even if it is still using only distutils. ;; ;; Setuptools' "install" command (to be more precise: the "easy_install" ;; command which is called by "install") will put the path of the currently -- 2.36.1 From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 22 14:40:32 2022 Received: (at 56115-done) by debbugs.gnu.org; 22 Jun 2022 18:40:32 +0000 Received: from localhost ([127.0.0.1]:36570 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o45HD-0007Dp-Tl for submit@debbugs.gnu.org; Wed, 22 Jun 2022 14:40:32 -0400 Received: from mail-qv1-f46.google.com ([209.85.219.46]:35456) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o45HB-0007Db-PD for 56115-done@debbugs.gnu.org; Wed, 22 Jun 2022 14:40:30 -0400 Received: by mail-qv1-f46.google.com with SMTP id g18so18943935qvn.2 for <56115-done@debbugs.gnu.org>; Wed, 22 Jun 2022 11:40:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=VgqpT9HEiHsPx06089wbipQEFz4dfvo50q39f9WUqqU=; b=XRaRoe+tB+Q3z+lCim7sSitVuYumntW5PRZQpK1sOatHqdq2NIhBljzAHBzAu6cmgc Bjj8hzXlE67vPxpeeMkcg43FEaU59P1AmXoYXpu5jmPD+1yil19jN3cT2P36g6TTYW9W SmOhusEE781JXoYOZqF87ktMWMyI6Y0bPRlLz/+2zxfbO79yyNXqs3Vo03Zn99p6uNqL yTCUR4yRZGDkuPLKWlXrBrA6DHoroH/X3vKGeuduP5jxD/fAE+SJOAMJK7/vQ0YiSIa6 YDitsh//gEItgWtoVjywL8eZl1zbigduHkVNp2bCn4G2TWrczI3j+ujClcnjIMCu3JcA QDfw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=VgqpT9HEiHsPx06089wbipQEFz4dfvo50q39f9WUqqU=; b=qJ5T9kmGLzHfynlU0eGrgkRD1RDYYMRqNxZ5erVCWBralN7tYmxZOfbNjiVQ8jqFcB hByyuyZtyLV0lCKLkKWAi4DNG5UxT1sBDuIPvOo5FcY1O0FNqTP7kYyFv0jHHxq9gbOp UU3OdT33DaIZx33buMbyxopCzcmVFPxbeBOYNX6oplHU9Fx89NFkzkEjAxSUtJdyek51 /9R3ncPqX/A9cOwc6lnyj2hC2BxHHsF/u65AWXHfrG1xzVRqaFtWYi7lDEUfFkEVfCi2 OvZkzed+FkQFbwolAXvPeHh2SRS2HvTw46kYE4xZYpKWYFr1x3FAvw7fKN7nFlqgmimU ooIQ== X-Gm-Message-State: AJIora/DhZJBuLiz0S9D+m0SOko6l5BzvpGnbT3wouaIHq/judOFfOSi kPJqwMPaKizDAanzOfKdwn2IIeq9r8V3bw== X-Google-Smtp-Source: AGRyM1vHUrfImBUULViKVId9+BYe0uOoj6oLdjibka5OavH12WeM6PJ8RqCyEDmsoUyveiz062/DJQ== X-Received: by 2002:a05:6214:238b:b0:470:4e6f:af4e with SMTP id fw11-20020a056214238b00b004704e6faf4emr10851019qvb.91.1655923223849; Wed, 22 Jun 2022 11:40:23 -0700 (PDT) Received: from hurd (dsl-10-141-244.b2b2c.ca. [72.10.141.244]) by smtp.gmail.com with ESMTPSA id d7-20020ac86687000000b00304e47b9602sm14526040qtp.9.2022.06.22.11.40.22 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 22 Jun 2022 11:40:23 -0700 (PDT) From: Maxim Cournoyer To: jgart Subject: Re: bug#56115: [PATCH] python-build-system: Fix typo in module-level comment paragraph. References: <20220620211733.14137-1-jgart@dismail.de> Date: Wed, 22 Jun 2022 14:40:22 -0400 In-Reply-To: <20220620211733.14137-1-jgart@dismail.de> (jgart@dismail.de's message of "Mon, 20 Jun 2022 16:17:33 -0500") Message-ID: <87y1xo4k4p.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 56115-done Cc: 56115-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.0 (-) Hi, jgart writes: > * guix/build/python-build-system.scm: Fix typo in comment paragraph. > --- > guix/build/python-build-system.scm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/guix/build/python-build-system.scm b/guix/build/python-build-system.scm > index 08871f60cd..28041e90a3 100644 > --- a/guix/build/python-build-system.scm > +++ b/guix/build/python-build-system.scm > @@ -68,7 +68,7 @@ (define-module (guix build python-build-system) > ;; downloading the package source from PyPI (the Python Package Index). Both > ;; of them import setuptools and execute the "setup.py" file under their > ;; control. Thus the "setup.py" behaves as if the developer had imported > -;; setuptools within setup.py - even is still using only distutils. > +;; setuptools within setup.py - even if it is still using only distutils. > ;; > ;; Setuptools' "install" command (to be more precise: the "easy_install" > ;; command which is called by "install") will put the path of the currently Thanks. Unfortunately this simply typo fix causes a world rebuild. I'd suggest flagging such patches with the 'core-updates PATCH' prefix, as hinted in info '(guix) Submitting Patches' to avoid committers from unintentionally pushing these to master. Applied to core-updates. Closing! Maxim From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 22 20:48:52 2022 Received: (at 56115-done) by debbugs.gnu.org; 23 Jun 2022 00:48:52 +0000 Received: from localhost ([127.0.0.1]:36907 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o4B1g-00088q-DN for submit@debbugs.gnu.org; Wed, 22 Jun 2022 20:48:52 -0400 Received: from mx1.dismail.de ([78.46.223.134]:18364) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o4B1e-00088e-Jx for 56115-done@debbugs.gnu.org; Wed, 22 Jun 2022 20:48:51 -0400 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 3afd2cc3; Thu, 23 Jun 2022 02:48:45 +0200 (CEST) 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=17eV0PvlzaeBYIIzrGgBfBH4BqnBkwTtWp3GYGwDhdM=; b=POi 5A9P23WrD1G00uNX1W819lQPk4v0w7FHG4U7qWU1FAbdagrwUSGP9KdGKhGz0l/f xwtEIHq3Ej3mmjfNRLR2wuQFgnMLwyT2dF1ciYefhpet4gMfyJvma4la7x4769z8 c0iNjp8Y+vLfI/+qhBCeq72PFt7Z9g9ULV9woYS+72/hU2r0geyo8tFCqs0NQ/jz UEe8dnaTG4txD+sYxespDgeEkcAbNdplHOCh2JllQuXAECtckzU7bl2tA7Epr3sx XHkexutt24aZzGbohnsSNx1po11kUSfjGzCD2Zwytg31G6loFbjSLJJZ91U0uDIP gHJiOF6cXPKSt4eAPGg== Received: from smtp1.dismail.de ( [10.240.26.11]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 1dadfac7; Thu, 23 Jun 2022 02:48:44 +0200 (CEST) Received: from smtp1.dismail.de (localhost [127.0.0.1]) by smtp1.dismail.de (OpenSMTPD) with ESMTP id 715f1688; Thu, 23 Jun 2022 02:48:44 +0200 (CEST) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 4d8bb08c (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Thu, 23 Jun 2022 02:48:44 +0200 (CEST) Date: Wed, 22 Jun 2022 19:48:48 -0500 Message-ID: <20220622194848.GF11143@gac> From: jgart To: Maxim Cournoyer Subject: Re: bug#56115: [PATCH] python-build-system: Fix typo in module-level comment paragraph. In-Reply-To: <87y1xo4k4p.fsf@gmail.com> References: <20220620211733.14137-1-jgart@dismail.de> <87y1xo4k4p.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 56115-done Cc: 56115-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 (-) On Wed, 22 Jun 2022 14:40:22 -0400 Maxim Cournoyer wrote: > Thanks. Unfortunately this simply typo fix causes a world rebuild. I'd > suggest flagging such patches with the 'core-updates PATCH' prefix, as > hinted in info '(guix) Submitting Patches' to avoid committers from > unintentionally pushing these to master. > > Applied to core-updates. Thanks! I'll keep that in mind on the next one and I'll try to add a note in the docs soon about this unless you do first. all best, jgart From unknown Mon Aug 18 02:37:18 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 21 Jul 2022 11:24:05 +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