From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Madhu Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 15 Jul 2021 10:18:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 49570@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16263442342878 (code B ref -1); Thu, 15 Jul 2021 10:18:02 +0000 Received: (at submit) by debbugs.gnu.org; 15 Jul 2021 10:17:14 +0000 Received: from localhost ([127.0.0.1]:46895 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3yQc-0000kM-CR for submit@debbugs.gnu.org; Thu, 15 Jul 2021 06:17:14 -0400 Received: from lists.gnu.org ([209.51.188.17]:56256) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3yQa-0000kE-Ey for submit@debbugs.gnu.org; Thu, 15 Jul 2021 06:17:12 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:36988) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m3yQa-0001tb-93 for bug-gnu-emacs@gnu.org; Thu, 15 Jul 2021 06:17:12 -0400 Received: from [117.254.35.72] (port=27322 helo=localhost.localdomain) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m3yQU-00035i-Na for bug-gnu-emacs@gnu.org; Thu, 15 Jul 2021 06:17:11 -0400 Received: (qmail 32021 invoked by uid 500); 15 Jul 2021 09:55:06 -0000 From: Madhu Date: Thu, 15 Jul 2021 15:25:06 +0530 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Host-Lookup-Failed: Reverse DNS lookup failed for 117.254.35.72 (failed) Received-SPF: softfail client-ip=117.254.35.72; envelope-from=enometh@meer.net; helo=localhost.localdomain X-Spam_score_int: 33 X-Spam_score: 3.3 X-Spam_bar: +++ X-Spam_report: (3.3 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_MSPIKE_BL=0.001, RCVD_IN_MSPIKE_ZBI=0.001, RCVD_IN_PBL=3.335, RCVD_IN_XBL=0.375, RDNS_NONE=0.793, SPF_HELO_NONE=0.001, SPF_SOFTFAIL=0.665 autolearn=no 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 (--) --=-=-= Content-Type: text/plain When accessing https://melpa.org (an nginx webserver) through a http-proxy (by setting url-proxy-services, say to privoxy), url-http hangs when parsing headers. apparently the connection is dropped with emacs master. I'm on this commit on master GNU Emacs 28.0.50 (build 1, x86_64-pc-linux-gnu, X toolkit, cairo version 1.16.0, Xaw3d scroll bars) of 2021-06-15 794ec934a76d0647a72b7be32e20dc5b95e5ec11 #ELISP> (setq url-proxy-services '(("http" . "localhost:8118") ("https" . "localhost:8118"))) ELISP> (url-retrieve-synchronously (url-generic-parse-url "https://melpa.org/")) # And the buffer looks like #+BEGIN_EXAMPLE Process melpa.org connection broken by remote peer HTTP/1.1 200 OK Server: nginx Date: Thu, 15 Jul 2021 09:41:12 GMT Content-Type: text/html; charset=utf-8 Last-Modified: Wed, 10 Feb 2021 23:56:44 GMT Connection: close Vary: Accept-Encoding ETag: W/"602472bc-d92" Strict-Transport-Security: max-age=15768000 Content-Encoding: gzip #+END_EXAMPLE The connection is broken and the "\nProcess HOST connection broken by remote peer\n" line in the buffer means the spins without parsing the header. Now proxied requests are asynchronous. If I (setf (url-asynchronous url) t) in lisp/url/url.el: (url-retrieve-internal), as per the appended patch, then eventually make-network-process gets called with a :nowait t, and the connection pulls through. But I'm not sure if this is the right thing or if the problem is elsewhere as this problem doesn't happen on older emacs - say from 2020-10-15. Do others see this problem? [BTW I haven't seen paul eggert on the lists lately, any word if he is still too busy for emacs?] --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-protect-url-retrieve-synchronously-from-broken-proxi.patch Content-Description: proxy connections non-blocking diff --git a/lisp/url/url.el b/lisp/url/url.el index 00c5740cf8..e40a4ecc29 100644 --- a/lisp/url/url.el +++ b/lisp/url/url.el @@ -211,8 +211,9 @@ url-retrieve-internal (buffer nil) (asynch (url-scheme-get-property (url-type url) 'asynchronous-p))) (if url-using-proxy - (setq asynch t - loader #'url-proxy)) + (progn (setq asynch t + loader #'url-proxy) + (setf (url-asynchronous url) t))) (if asynch (let ((url-current-object url)) (setq buffer (funcall loader url callback cbargs))) -- 2.31.0 --=-=-=-- From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 15 Jul 2021 14:49:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Madhu Cc: 49570@debbugs.gnu.org Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.16263604886668 (code B ref 49570); Thu, 15 Jul 2021 14:49:01 +0000 Received: (at 49570) by debbugs.gnu.org; 15 Jul 2021 14:48:08 +0000 Received: from localhost ([127.0.0.1]:49361 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m42em-0001jU-Dv for submit@debbugs.gnu.org; Thu, 15 Jul 2021 10:48:08 -0400 Received: from quimby.gnus.org ([95.216.78.240]:57806) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m42ej-0001iw-JU for 49570@debbugs.gnu.org; Thu, 15 Jul 2021 10:48:06 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=cIVjKNHdD+uaZ6Qt+LtvH+c/cNlW9kTTMCnDKAv98xk=; b=WhcyKG8HUSRAo7OoWpf+zysn6q 7EjOpaQsXSb93iLn73E+zMbBpV3/WUewARv8l8Wy/CaSC06c2tpOGrHBzG7nRd3MqArlpWbQsFOIC FcfNUkz+lzycuzp+fwjE/nGjpHlc7PNrnhD+nbO27j84k/sqq3FAGzkbWjFMGr+uvqvM=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1m42eX-0001NN-T3; Thu, 15 Jul 2021 16:47:56 +0200 From: Lars Ingebrigtsen References: X-Now-Playing: Boris with Merzbow's _Gensho (4)_: "Vomitself" Date: Thu, 15 Jul 2021 16:47:53 +0200 In-Reply-To: (Madhu's message of "Thu, 15 Jul 2021 15:25:06 +0530") Message-ID: <87r1fzk50m.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Madhu writes: > When accessing https://melpa.org (an nginx webserver) through a > http-proxy (by setting url-proxy-services, say to privoxy), url-http > hangs when parsing headers. apparently the connection is drop [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 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 (---) Madhu writes: > When accessing https://melpa.org (an nginx webserver) through a > http-proxy (by setting url-proxy-services, say to privoxy), url-http > hangs when parsing headers. apparently the connection is dropped with > emacs master. I'm on this commit on master > > GNU Emacs 28.0.50 (build 1, x86_64-pc-linux-gnu, X toolkit, cairo > version 1.16.0, Xaw3d scroll bars) of 2021-06-15 > 794ec934a76d0647a72b7be32e20dc5b95e5ec11 Could you try updating the branch? Mattias pushed a connection logic fix a couple of days ago that may (or may not) change things in this area. > If I (setf (url-asynchronous url) t) in lisp/url/url.el: > (url-retrieve-internal), as per the appended patch, then eventually > make-network-process gets called with a :nowait t, and the connection > pulls through. > > But I'm not sure if this is the right thing or if the problem is > elsewhere as this problem doesn't happen on older emacs - say from > 2020-10-15. It'd be interesting if you could bisect to the commit that broke this. > [BTW I haven't seen paul eggert on the lists lately, any word if he is > still too busy for emacs?] He was here just the other day. :-) > - (setq asynch t > - loader #'url-proxy)) > + (progn (setq asynch t > + loader #'url-proxy) > + (setf (url-asynchronous url) t))) Hm... Looking at the code, I think this patch looks correct. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 16 06:12:36 2021 Received: (at control) by debbugs.gnu.org; 16 Jul 2021 10:12:36 +0000 Received: from localhost ([127.0.0.1]:50557 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m4Kpg-0003tT-J7 for submit@debbugs.gnu.org; Fri, 16 Jul 2021 06:12:36 -0400 Received: from quimby.gnus.org ([95.216.78.240]:39414) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m4Kpf-0003tE-BZ for control@debbugs.gnu.org; Fri, 16 Jul 2021 06:12:35 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=oU/OCMib6s52RwgWywhTc+QqqRUH9Nuqwe+WSJChhE8=; b=gCCgwBzSCRa+GvVhFW1wGuj1Vw RwQxrQvjpzT5TF6VDKYLCAhJNwS/9MYWJptAD98eD6BT6mFZRhMEcDgM91vwatQ+9RaIpbWnhtGcG X22kZti/4ZWxvlEJy2ouninWWVPJjxZGxf+qzBRvrkNklqWzPQ30D3ZTJBBVlvmM0K/A=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1m4KpX-00032u-QB for control@debbugs.gnu.org; Fri, 16 Jul 2021 12:12:29 +0200 Date: Fri, 16 Jul 2021 12:12:27 +0200 Message-Id: <87tukubm9g.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #49570 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 49570 + patch quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control 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 (---) tags 49570 + patch quit From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 19 Jul 2021 15:43:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Madhu Cc: 49570@debbugs.gnu.org Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.162670937221156 (code B ref 49570); Mon, 19 Jul 2021 15:43:01 +0000 Received: (at 49570) by debbugs.gnu.org; 19 Jul 2021 15:42:52 +0000 Received: from localhost ([127.0.0.1]:59932 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5VPv-0005VA-Np for submit@debbugs.gnu.org; Mon, 19 Jul 2021 11:42:51 -0400 Received: from quimby.gnus.org ([95.216.78.240]:46586) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5VPu-0005Ux-5Z for 49570@debbugs.gnu.org; Mon, 19 Jul 2021 11:42:50 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=felMKWELKXf39QKzSbRIlXteu3QW/2OpkushxgdO4bU=; b=cdFtQQYGDYZPP2GMU094w5VcFu GfG+cqwW2q9aZywrkf7VHmOnbQZJgrn/kHYxeF1RJTz23SikNxQMl7WUJxfjJq1RyFYn1qIHlAd20 fOtJoC6Sqj6QtBjdhwRsSAWngX0HycMZZgNhEZ+It80+YsNGWxB5xAJBvWZ+WQBFqS0I=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1m5VPl-0008N2-Mg; Mon, 19 Jul 2021 17:42:44 +0200 From: Lars Ingebrigtsen References: <87r1fzk50m.fsf@gnus.org> X-Now-Playing: Chuck Person's _Chuck Person's Eccojams Vol. 1_: "A6" Date: Mon, 19 Jul 2021 17:42:41 +0200 In-Reply-To: <87r1fzk50m.fsf@gnus.org> (Lars Ingebrigtsen's message of "Thu, 15 Jul 2021 16:47:53 +0200") Message-ID: <87lf62l37y.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Lars Ingebrigtsen writes: >> - (setq asynch t >> - loader #'url-proxy)) >> + (progn (setq asynch t >> + loader #'url-proxy) >> + (setf (url-asynchronous url) t))) > > Hm... Looking at the code, I think this patch looks correct [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 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 (---) Lars Ingebrigtsen writes: >> - (setq asynch t >> - loader #'url-proxy)) >> + (progn (setq asynch t >> + loader #'url-proxy) >> + (setf (url-asynchronous url) t))) > > Hm... Looking at the code, I think this patch looks correct. So I applied the patch to Emacs 28. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 19 11:42:57 2021 Received: (at control) by debbugs.gnu.org; 19 Jul 2021 15:42:57 +0000 Received: from localhost ([127.0.0.1]:59935 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5VQ0-0005VV-UF for submit@debbugs.gnu.org; Mon, 19 Jul 2021 11:42:57 -0400 Received: from quimby.gnus.org ([95.216.78.240]:46602) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5VPz-0005V3-R8 for control@debbugs.gnu.org; Mon, 19 Jul 2021 11:42:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=MZa/uTvew6VnorSMeMCZP13l+9qW93iQ7gJ0M6WeYs0=; b=JuiwGfpy833uQzNCOaZD3kblpG NERJMdlsB65Z/yo9J9Tu4Wg2uSLwtFKS76b3SMftsXK6GYcxuiZvsYVY5/pIuR5aJEJ2SRVq50i9E t2frRbMgYDWYrtYxY6sASK+ZY3YzSNSgz5PJbPrz3+ponSVxOwTwHSGs5z16+A8D6Zt8=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1m5VPr-0008NA-SU for control@debbugs.gnu.org; Mon, 19 Jul 2021 17:42:49 +0200 Date: Mon, 19 Jul 2021 17:42:47 +0200 Message-Id: <87k0lml37s.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #49570 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: close 49570 28.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control 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 (---) close 49570 28.1 quit From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Madhu Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 20 Jul 2021 06:52:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: larsi@gnus.org Cc: 49570@debbugs.gnu.org Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.162676387226894 (code B ref 49570); Tue, 20 Jul 2021 06:52:03 +0000 Received: (at 49570) by debbugs.gnu.org; 20 Jul 2021 06:51:12 +0000 Received: from localhost ([127.0.0.1]:60858 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5jax-0006zi-VW for submit@debbugs.gnu.org; Tue, 20 Jul 2021 02:51:12 -0400 Received: from smtp6.ctinetworks.com ([205.166.61.199]:53800) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5jaw-0006za-4A for 49570@debbugs.gnu.org; Tue, 20 Jul 2021 02:51:10 -0400 Received: from localhost (unknown [117.193.82.5]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: enometh@meer.net) by smtp6.ctinetworks.com (Postfix) with ESMTPSA id A419A84045; Tue, 20 Jul 2021 02:51:01 -0400 (EDT) Date: Tue, 20 Jul 2021 12:20:50 +0530 (IST) Message-Id: <20210720.122050.833709498766828032.enometh@meer.net> From: Madhu In-Reply-To: <87lf62l37y.fsf@gnus.org> References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> X-Mailer: Mew version 6.8 on Emacs 28.0.50 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ctinetworks-Information: Please contact the ISP for more information X-ctinetworks-MailScanner-ID: A419A84045.A7496 X-ctinetworks-VirusCheck: Found to be clean X-ctinetworks-SpamCheck: X-ctinetworks-Watermark: 1627627869.20615@x31hdF1zqxA217wM9VqYpQ X-Spam-Score: 0.0 (/) 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 (-) * Lars Ingebrigtsen <87lf62l37y.fsf@gnus.org> Wrote on Mon, 19 Jul 2021 17:42:41 +0200 > So I applied the patch to Emacs 28. Thanks. (I'm afraid I haven't found the time to bisect it, and running native-comp is a disincentive to change HEAD (with debug it takes 100s of GB) but maybe i can still try to bisect after I update -- for curiosity's sake) From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Andrea Corallo Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 20 Jul 2021 14:09:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Madhu Cc: larsi@gnus.org, 49570@debbugs.gnu.org Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.16267900919616 (code B ref 49570); Tue, 20 Jul 2021 14:09:01 +0000 Received: (at 49570) by debbugs.gnu.org; 20 Jul 2021 14:08:11 +0000 Received: from localhost ([127.0.0.1]:34982 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5qPr-0002V2-J3 for submit@debbugs.gnu.org; Tue, 20 Jul 2021 10:08:11 -0400 Received: from mx.sdf.org ([205.166.94.24]:52265) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5qPp-0002Up-Bg for 49570@debbugs.gnu.org; Tue, 20 Jul 2021 10:08:09 -0400 Received: from mab (ma.sdf.org [205.166.94.33]) by mx.sdf.org (8.15.2/8.14.5) with ESMTPS id 16KE87Od000346 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256 bits) verified NO); Tue, 20 Jul 2021 14:08:08 GMT From: Andrea Corallo References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> Date: Tue, 20 Jul 2021 14:08:07 +0000 In-Reply-To: <20210720.122050.833709498766828032.enometh@meer.net> (Madhu's message of "Tue, 20 Jul 2021 12:20:50 +0530 (IST)") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) 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 (-) Madhu writes: > * Lars Ingebrigtsen <87lf62l37y.fsf@gnus.org> > Wrote on Mon, 19 Jul 2021 17:42:41 +0200 > >> So I applied the patch to Emacs 28. > > Thanks. (I'm afraid I haven't found the time to bisect it, and > running native-comp is a disincentive to change HEAD (with debug it > takes 100s of GB) but maybe i can still try to bisect after I update > -- for curiosity's sake) native-comp is merged into master since a while. Actually I thought I removed feature/native-comp, is it still in place? Regards Andrea From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 20 Jul 2021 14:21:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Andrea Corallo Cc: Madhu , 49570@debbugs.gnu.org Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.162679082410880 (code B ref 49570); Tue, 20 Jul 2021 14:21:02 +0000 Received: (at 49570) by debbugs.gnu.org; 20 Jul 2021 14:20:24 +0000 Received: from localhost ([127.0.0.1]:35002 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5qbg-0002pQ-5F for submit@debbugs.gnu.org; Tue, 20 Jul 2021 10:20:24 -0400 Received: from quimby.gnus.org ([95.216.78.240]:58116) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5qbe-0002pE-L1 for 49570@debbugs.gnu.org; Tue, 20 Jul 2021 10:20:23 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=vQoyUqPUYCGmGDDZ2zoGJbOLfWszx0FvO0CVR4O1tw0=; b=o0xSkcjs9bm0a3vLUmDKBCkI9h z8LMjUN0nTH8oSRetZa6Tcb9ZSF5h8OTfqTUx3a8KeowxFWl0erNcrrWEAw/eEdLTvkX6H1dmwhNh N8M13gaPttkjizzoGtvjGGJxBU8wNkq3Pn0y3Ajm4Z4YhcqBE0MPYIAmui57yP67YE2g=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1m5qbT-00045H-4A; Tue, 20 Jul 2021 16:20:13 +0200 From: Lars Ingebrigtsen References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAG1BMVEWFEReKKiilnJGS WVRyDxNgIx4qJR56hHn///9MMD0NAAAAAWJLR0QIht6VegAAAAd0SU1FB+UHFA0qIlXVItYAAAGU SURBVDjLddHBUuMwDAZgZUju0TbhAWCmPZelu1czyD3HOM6dqWMegAOvj2S7JS6pD53WX35JUQHK g/HAn0eADe6vAeDuAeDpgT9qle4rh9hCgs1ffgKGDCjQJoiPnBO4kUoR0skAhqH6DVWLsdbvBBpc LyUAqVS+cTxyrVTjuQUuYVJ0DN40I0O7hKPSIcxDbzoZaglDwwD3JvYWIEXyrfF1CD5thCOvDEQS qgOXer+fGZAXlyBGjkHOUGFbldDI/dzKFutLKTonnJKN1KBygpsogdm2e1nJpRQXUxPDZJ1ssf0B UDxsOAX3abCrgH4SsVI4/ft8R6j59wVojtN+nSwiFTDGxO602SO9LEAPU4zMThKwAr0xRPUCKN4H ezCu6DHlwMejNgWMCUL4r/sS8v3But4V4NPavdVuDbbe9lc9xnOiH8s3dwIf28EeSnCjTn+t7Yi6 AtIbDq/PVCR0BnLPssMF+Ay64/WUCenuBa5LcWSWwUuIGMZ1oBDnW4G8g1XQ+gbQRLdKZdjdgLft Ouin8A0rqO3Ehwu7/gAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMS0wNy0yMFQxMzo0MjozNCswMDow MGufFEkAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjEtMDctMjBUMTM6NDI6MzQrMDA6MDAawqz1AAAA AElFTkSuQmCC X-Now-Playing: 214's _Fabric 94: Steffi_: "Sound Moments" Date: Tue, 20 Jul 2021 16:20:10 +0200 In-Reply-To: (Andrea Corallo's message of "Tue, 20 Jul 2021 14:08:07 +0000") Message-ID: <87y2a1cbj9.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Andrea Corallo writes: > Actually I thought I removed feature/native-comp, is it still in place? I think it's gone from Savannah, but if I remember correctly, that doesn't make the branch go away in other repos? And indeed: Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 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 (---) Andrea Corallo writes: > Actually I thought I removed feature/native-comp, is it still in place? I think it's gone from Savannah, but if I remember correctly, that doesn't make the branch go away in other repos? And indeed: larsi@elva:~/src/emacs/trunk$ git branch -a | grep native remotes/origin/feature/native-comp remotes/origin/feature/native-comp-macos-fixes remotes/origin/scratch/native-comp-cl remotes/origin/scratch/native-comp-eln-caches remotes/origin/scratch/native-comp-gcc-driver-options remotes/origin/scratch/native-comp-macos-43532 -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Andrea Corallo Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 20 Jul 2021 15:14:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Lars Ingebrigtsen Cc: Madhu , 49570@debbugs.gnu.org Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.16267939851184 (code B ref 49570); Tue, 20 Jul 2021 15:14:01 +0000 Received: (at 49570) by debbugs.gnu.org; 20 Jul 2021 15:13:05 +0000 Received: from localhost ([127.0.0.1]:35098 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5rQf-0000J2-7F for submit@debbugs.gnu.org; Tue, 20 Jul 2021 11:13:05 -0400 Received: from mx.sdf.org ([205.166.94.24]:61430) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5rQd-0000Ir-Cl for 49570@debbugs.gnu.org; Tue, 20 Jul 2021 11:13:03 -0400 Received: from mab (ma.sdf.org [205.166.94.33]) by mx.sdf.org (8.15.2/8.14.5) with ESMTPS id 16KFD134020166 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256 bits) verified NO); Tue, 20 Jul 2021 15:13:02 GMT From: Andrea Corallo References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> <87y2a1cbj9.fsf@gnus.org> Date: Tue, 20 Jul 2021 15:13:01 +0000 In-Reply-To: <87y2a1cbj9.fsf@gnus.org> (Lars Ingebrigtsen's message of "Tue, 20 Jul 2021 16:20:10 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) 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 (-) Lars Ingebrigtsen writes: > Andrea Corallo writes: > >> Actually I thought I removed feature/native-comp, is it still in place? > > I think it's gone from Savannah, but if I remember correctly, that > doesn't make the branch go away in other repos? And indeed: > > larsi@elva:~/src/emacs/trunk$ git branch -a | grep native > remotes/origin/feature/native-comp > remotes/origin/feature/native-comp-macos-fixes > remotes/origin/scratch/native-comp-cl > remotes/origin/scratch/native-comp-eln-caches > remotes/origin/scratch/native-comp-gcc-driver-options > remotes/origin/scratch/native-comp-macos-43532 I see, that's annoying but I guess we have no workaround for that :/ Thanks for checking. Andrea From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 20 Jul 2021 15:25:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Andrea Corallo Cc: Madhu , 49570@debbugs.gnu.org Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.16267946582634 (code B ref 49570); Tue, 20 Jul 2021 15:25:01 +0000 Received: (at 49570) by debbugs.gnu.org; 20 Jul 2021 15:24:18 +0000 Received: from localhost ([127.0.0.1]:35110 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5rbW-0000gP-G7 for submit@debbugs.gnu.org; Tue, 20 Jul 2021 11:24:18 -0400 Received: from quimby.gnus.org ([95.216.78.240]:58688) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5rbT-0000g1-To for 49570@debbugs.gnu.org; Tue, 20 Jul 2021 11:24:16 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=KKQ0ubQRe8zck+tJjwmalo/jGwrhn71sjSZMRSyF5zA=; b=Q8enf+ASdokY8yIdPRnM7KRprV nymAdSAZt2HWpnphXUcUt0PaF2loOkKaj5RpTI3tGbG/BVFx0vxhwa5KVnj1+r5XvKWbAnZMNdhl6 gdZhW6At+IVDaxpNIyHHMGmcdCF6WbYIwOWRuoDXcX59tXe81VipY9vNx4R8MvaPIilc=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1m5rbJ-0004bo-Pe; Tue, 20 Jul 2021 17:24:08 +0200 From: Lars Ingebrigtsen References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> <87y2a1cbj9.fsf@gnus.org> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAIVBMVEUHBgQhHRcmIhtj WU9vZFlYT0YzLSZLQjqGe3JEPDP///+xykQdAAAAAWJLR0QKaND0VgAAAAlwSFlzAAAK8AAACvAB Qqw0mAAAAAd0SU1FB+UHFA8WLbUdktYAAAEMSURBVDjLvZOxasNADIalgA3dJKeQNb6hWU1osocS 6FgoGbo1Ga5kDvET5AW6FPq2uTub+KTzDR0aDeas75d0kmWA/zACHvezqZlSP7MhwDrxIzs1EnKi r7osVaLvpUga3GJzQFbB4Z4yF2cAxiBuMgaiOudAdKkE4O2lzgBVnP4OgIa0MYAAGg2gBxvdbD9R fNMAunMZAMqZ+GfhwUR8jwigEREhVdEs3Kb4NVJW7F4vNOzFYNPnl/NGgi74fXVcPn4KEGqU29P6 CUn24UWTj4Pdz8UQu5GWrVOzWsUAvl3T+kZeVx54706KOOVDy3XSmxfOWkMpcPb1kwPWjLkBf+18 FIC14379l93BrgCCGkwpEGsWAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIxLTA3LTIwVDE1OjIyOjQ1 KzAwOjAwj30DegAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMS0wNy0yMFQxNToyMjo0NSswMDowMP4g u8YAAAAASUVORK5CYII= X-Now-Playing: Mr. Jones's _Sounds For The Mute_: "The Truth About Robots" Date: Tue, 20 Jul 2021 17:24:05 +0200 In-Reply-To: (Andrea Corallo's message of "Tue, 20 Jul 2021 15:13:01 +0000") Message-ID: <877dhlc8kq.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Andrea Corallo writes: > I see, that's annoying but I guess we have no workaround for that :/ Let's see... The magical git command seems to be: Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 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 (---) Andrea Corallo writes: > I see, that's annoying but I guess we have no workaround for that :/ Let's see... The magical git command seems to be: git fetch origin --prune And that did make the native-comp branch disappear locally. But it's something each user has to do. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 20 Jul 2021 15:43:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Andrea Corallo Cc: larsi@gnus.org, 49570@debbugs.gnu.org, enometh@meer.net Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.16267957574570 (code B ref 49570); Tue, 20 Jul 2021 15:43:01 +0000 Received: (at 49570) by debbugs.gnu.org; 20 Jul 2021 15:42:37 +0000 Received: from localhost ([127.0.0.1]:35135 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5rtF-0001Be-2N for submit@debbugs.gnu.org; Tue, 20 Jul 2021 11:42:37 -0400 Received: from eggs.gnu.org ([209.51.188.92]:59226) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5rtC-0001BP-NW for 49570@debbugs.gnu.org; Tue, 20 Jul 2021 11:42:35 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:48552) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m5rt6-00059x-Rg; Tue, 20 Jul 2021 11:42:28 -0400 Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:2251 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m5rt4-0007yn-NB; Tue, 20 Jul 2021 11:42:28 -0400 Date: Tue, 20 Jul 2021 18:42:21 +0300 Message-Id: <83h7gp56w2.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: (bug-gnu-emacs@gnu.org) References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> <87y2a1cbj9.fsf@gnus.org> 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 (---) > Cc: Madhu , 49570@debbugs.gnu.org > Date: Tue, 20 Jul 2021 15:13:01 +0000 > From: Andrea Corallo via "Bug reports for GNU Emacs, > the Swiss army knife of text editors" > > Lars Ingebrigtsen writes: > > > Andrea Corallo writes: > > > >> Actually I thought I removed feature/native-comp, is it still in place? > > > > I think it's gone from Savannah, but if I remember correctly, that > > doesn't make the branch go away in other repos? And indeed: > > > > larsi@elva:~/src/emacs/trunk$ git branch -a | grep native > > remotes/origin/feature/native-comp > > remotes/origin/feature/native-comp-macos-fixes > > remotes/origin/scratch/native-comp-cl > > remotes/origin/scratch/native-comp-eln-caches > > remotes/origin/scratch/native-comp-gcc-driver-options > > remotes/origin/scratch/native-comp-macos-43532 > > I see, that's annoying but I guess we have no workaround for that :/ The workaround is to tell people to say git remote prune origin from time to time. From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Gregory Heytings Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 20 Jul 2021 16:23:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: larsi@gnus.org, 49570@debbugs.gnu.org, enometh@meer.net, Andrea Corallo Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.16267981418425 (code B ref 49570); Tue, 20 Jul 2021 16:23:02 +0000 Received: (at 49570) by debbugs.gnu.org; 20 Jul 2021 16:22:21 +0000 Received: from localhost ([127.0.0.1]:35190 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5sVh-0002Bo-Ca for submit@debbugs.gnu.org; Tue, 20 Jul 2021 12:22:21 -0400 Received: from heytings.org ([95.142.160.155]:45634) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5sVf-0002Bg-0z for 49570@debbugs.gnu.org; Tue, 20 Jul 2021 12:22:19 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heytings.org; s=20210101; t=1626798137; bh=USBRSU4EOLeix6H8FJ9o/0y9uSNZagIhEcOuuyTlDNI=; h=Date:From:To:cc:Subject:In-Reply-To:Message-ID:References:From; b=Jqeh80tKegebitdmVVaPXWHdzji/JkFf6C0OFmpgRiqD5Gns87x56w5HgjQ9QAeh1 0+Lec4ILna/NKlKJz6OCDdsxRzeShDWVh0NUpEmWJFVG3nZ1m7qmz16aVHsny4vV0u meVvM8OWLVWU/wJapp8sRR8SIQc1pjLVxC0rLOZwgUsjn59WHDUprP5eKugB7Zi+dP 65EoprRu267wc7GvZ7TqlRy09FUPqC8pDBPBSIILo3tqNe7rsmIkNL08lf3qVPbPia Ln52Eo7TBC4ZDQcPvzhGX9DKUNXKkWWDhTzamSH+ktkWldxatmwf2TpAku8ZOXQyJ9 ShtbNi6ne713g== Date: Tue, 20 Jul 2021 16:22:17 +0000 From: Gregory Heytings In-Reply-To: <83h7gp56w2.fsf@gnu.org> Message-ID: References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> <87y2a1cbj9.fsf@gnus.org> <83h7gp56w2.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed X-Spam-Score: -0.0 (/) 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 (-) >>>> Actually I thought I removed feature/native-comp, is it still in >>>> place? >>> >>> I think it's gone from Savannah, but if I remember correctly, that >>> doesn't make the branch go away in other repos? >> >> I see, that's annoying but I guess we have no workaround for that :/ > > The workaround is to tell people to say > > git remote prune origin > > from time to time. > No, the workaround is to tell people to set git config remote.origin.prune true From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Gregory Heytings Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 21 Jul 2021 11:02:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: larsi@gnus.org, 49570@debbugs.gnu.org, enometh@meer.net, Andrea Corallo Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.162686527313282 (code B ref 49570); Wed, 21 Jul 2021 11:02:01 +0000 Received: (at 49570) by debbugs.gnu.org; 21 Jul 2021 11:01:13 +0000 Received: from localhost ([127.0.0.1]:36192 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m69yT-0003Rn-Aj for submit@debbugs.gnu.org; Wed, 21 Jul 2021 07:01:13 -0400 Received: from heytings.org ([95.142.160.155]:46640) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m69yR-0003PI-8c for 49570@debbugs.gnu.org; Wed, 21 Jul 2021 07:01:11 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heytings.org; s=20210101; t=1626865270; bh=F2gwKyudh7fch7BehMVGub+PYGMqfpKd6jnbSNqL1Dw=; h=Date:From:To:cc:Subject:In-Reply-To:Message-ID:References:From; b=NjOeXrzNqn6cQXqhwjVnKY/xvzFiKJ2vdGbNs0h9s2aMwwq9793eK7qh+MTiIDSSE BJJLJOZfhK86op9Q7hthjLivD/F7lQSky7KTEQR7k1xrd0QTc92a/c+5hMuW2nnWIP NXg5pXmvhax1yakr8AFUJHkVeT7zfA+XgJLRG+g/0sePk2WmxfeJCqpzEZHXxISKg7 R3p/wSM3COI94yFCmFnKvm3u8O+spSlDR3w/jWiMPs+HtuyKvAiPL93zGXLVO069Mn M/LtUn+TQ9lllRYjIf0inE+DY56NzXOqYaMCywjczoMWSI2WbLmctbSWXWKc5AtdJH efwR7n25TAfFA== Date: Wed, 21 Jul 2021 11:01:09 +0000 From: Gregory Heytings In-Reply-To: Message-ID: <94de128df1551a7f9154@heytings.org> References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> <87y2a1cbj9.fsf@gnus.org> <83h7gp56w2.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed X-Spam-Score: -0.0 (/) 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 (-) >>>>> Actually I thought I removed feature/native-comp, is it still in >>>>> place? >>>> >>>> I think it's gone from Savannah, but if I remember correctly, that >>>> doesn't make the branch go away in other repos? >>> >>> I see, that's annoying but I guess we have no workaround for that :/ >> >> The workaround is to tell people to say >> >> git remote prune origin >> >> from time to time. > > No, the workaround is to tell people to set > > git config remote.origin.prune true > (Or, of course, to add a "git_config remote.origin.prune true" in autogen.sh.) From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: "Basil L. Contovounesios" Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 21 Jul 2021 12:48:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Gregory Heytings Cc: Eli Zaretskii , Andrea Corallo , 49570@debbugs.gnu.org, larsi@gnus.org, enometh@meer.net Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.162687162430183 (code B ref 49570); Wed, 21 Jul 2021 12:48:01 +0000 Received: (at 49570) by debbugs.gnu.org; 21 Jul 2021 12:47:04 +0000 Received: from localhost ([127.0.0.1]:36420 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6Bct-0007qk-M1 for submit@debbugs.gnu.org; Wed, 21 Jul 2021 08:47:03 -0400 Received: from mail-wm1-f49.google.com ([209.85.128.49]:53790) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6Bcd-0007pW-7y for 49570@debbugs.gnu.org; Wed, 21 Jul 2021 08:47:02 -0400 Received: by mail-wm1-f49.google.com with SMTP id w13so1253528wmc.3 for <49570@debbugs.gnu.org>; Wed, 21 Jul 2021 05:46:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tcd.ie; s=google21; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=QKxW2b4uBbwB9AsLU1ciefEShHa7Yi3ph1u5dGK3SOA=; b=dur1N1RPtWbi5XQDRjTzX7nN3M01iPP3ukwfMERQ36xYYVYvoKZQppwMDkzoY/35AD vtn32Uvnp9ZO7tmPYvMVGqXmeAQwzOzXwerN4N18c6k9mvBFgK/8IdoPWKDPeQLrE+DU MyxVAdu9/McynwKl6Lk7azkeRTqQWvfjf4HxXmB2jbh5mnQsmQCWAcGVjwbQ4UCtC86F BVecynk2a/dEMAC/Kiw3IuszzpU3QbmIeDyPNyjZ5L1rIXjARvF8zcsl4zMooLOTxZGD FuVJ8DO5ssWAMwKoXk+Jgbl9DozfrildRfwTmBqzfffQFojcmKCSx83On07PPIq/d8Yq iWmg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=QKxW2b4uBbwB9AsLU1ciefEShHa7Yi3ph1u5dGK3SOA=; b=cYmoVwFoMsKXO948CwhbIIRflNboNzD33R4hDU6s3bGYyTugNIUiHFJKZf24T5QIWF HJ3+wt9xpkr61Hiyz/IwSDIR/kAG0sy+cMpXQpKRe4u+bnTfk9cVZvYZnn2hdJVEikQX W4rJhSq4tTI+qgqF/jOcgEcpePcfqGNE2jaDx7gYxX0tB4jUt2ALbqcyezDJKrEB85ST uLXaJCL3I+zpQsXZB2pMtXUoKbXkPyXgOgNZLjdyuV9Tvx87eLdU574lUgcDXXvD/zFn ftTdeaHXbqFIkiJdLIN6e/Zgj29SSijIQYE/JsMGT0JU6apqk/X5qoPED+UYR3jnDsal 1Rhg== X-Gm-Message-State: AOAM532xNyxAu98JzQ2Mu65VqXIP2SaoRzJA4U8PyiR5ccdv/+1uBaUH XOvhdIRBhOQ9unkg1Ab2q3O15A== X-Google-Smtp-Source: ABdhPJz/9q9tibzMCyddoGzUW2MwB9sLMDrjFVl+Yjs5336R3KkyiR5N8yu9MrASnGFR3rfsfRoL1Q== X-Received: by 2002:a7b:c955:: with SMTP id i21mr3851370wml.147.1626871601335; Wed, 21 Jul 2021 05:46:41 -0700 (PDT) Received: from localhost ([2a02:8084:20e2:c380:d15:339e:aa10:60f1]) by smtp.gmail.com with ESMTPSA id l15sm27564761wrv.87.2021.07.21.05.46.40 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 21 Jul 2021 05:46:40 -0700 (PDT) From: "Basil L. Contovounesios" References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> <87y2a1cbj9.fsf@gnus.org> <83h7gp56w2.fsf@gnu.org> <94de128df1551a7f9154@heytings.org> Date: Wed, 21 Jul 2021 13:46:39 +0100 In-Reply-To: <94de128df1551a7f9154@heytings.org> (Gregory Heytings's message of "Wed, 21 Jul 2021 11:01:09 +0000") Message-ID: <87v953q1g0.fsf@tcd.ie> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) 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 (-) Gregory Heytings writes: >>>>>> Actually I thought I removed feature/native-comp, is it still in place? >>>>> I think it's gone from Savannah, but if I remember correctly, that doesn't >>>>> make the branch go away in other repos? >>>> I see, that's annoying but I guess we have no workaround for that :/ >>> The workaround is to tell people to say >>> >>> git remote prune origin >>> from time to time. >> >> No, the workaround is to tell people to set >> >> git config remote.origin.prune true > > (Or, of course, to add a "git_config remote.origin.prune true" in autogen.sh.) If pruning loses data it shouldn't be enabled by default in all checkouts, e.g. if a branch is accidentally deleted by someone else then simply fetching shouldn't propagate that deletion for others. So IMO the developer should decide when and how to enable this. (Unless I've misunderstood something.) -- Basil From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 21 Jul 2021 13:08:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: "Basil L. Contovounesios" Cc: gregory@heytings.org, akrl@sdf.org, 49570@debbugs.gnu.org, larsi@gnus.org, enometh@meer.net Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.162687284132417 (code B ref 49570); Wed, 21 Jul 2021 13:08:01 +0000 Received: (at 49570) by debbugs.gnu.org; 21 Jul 2021 13:07:21 +0000 Received: from localhost ([127.0.0.1]:36472 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6BwR-0008Qi-Om for submit@debbugs.gnu.org; Wed, 21 Jul 2021 09:07:21 -0400 Received: from eggs.gnu.org ([209.51.188.92]:58696) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6BwN-0008QU-B3 for 49570@debbugs.gnu.org; Wed, 21 Jul 2021 09:07:14 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:47000) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m6BwG-0003zy-Ap; Wed, 21 Jul 2021 09:07:04 -0400 Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:1188 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m6BwB-00009j-EL; Wed, 21 Jul 2021 09:07:04 -0400 Date: Wed, 21 Jul 2021 16:06:59 +0300 Message-Id: <83sg074xzg.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: <87v953q1g0.fsf@tcd.ie> (contovob@tcd.ie) References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> <87y2a1cbj9.fsf@gnus.org> <83h7gp56w2.fsf@gnu.org> <94de128df1551a7f9154@heytings.org> <87v953q1g0.fsf@tcd.ie> 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 (---) > From: "Basil L. Contovounesios" > Cc: Eli Zaretskii , larsi@gnus.org, 49570@debbugs.gnu.org, > enometh@meer.net, Andrea Corallo > Date: Wed, 21 Jul 2021 13:46:39 +0100 > > Gregory Heytings writes: > > >> No, the workaround is to tell people to set > >> > >> git config remote.origin.prune true > > > > (Or, of course, to add a "git_config remote.origin.prune true" in autogen.sh.) > > If pruning loses data it shouldn't be enabled by default in all > checkouts, e.g. if a branch is accidentally deleted by someone else then > simply fetching shouldn't propagate that deletion for others. Of course. Don't worry, we won't do that. From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Gregory Heytings Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 21 Jul 2021 13:12:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: "Basil L. Contovounesios" Cc: Eli Zaretskii , Andrea Corallo , 49570@debbugs.gnu.org, larsi@gnus.org, enometh@meer.net Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.1626873082305 (code B ref 49570); Wed, 21 Jul 2021 13:12:01 +0000 Received: (at 49570) by debbugs.gnu.org; 21 Jul 2021 13:11:22 +0000 Received: from localhost ([127.0.0.1]:36476 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6C0Q-00004q-DK for submit@debbugs.gnu.org; Wed, 21 Jul 2021 09:11:22 -0400 Received: from heytings.org ([95.142.160.155]:46840) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6C0N-0008WO-Rj for 49570@debbugs.gnu.org; Wed, 21 Jul 2021 09:11:21 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heytings.org; s=20210101; t=1626873079; bh=O0IoO+B3tgg2JLx0bEUaiVQofADUmA/hGOMsWK4QygM=; h=Date:From:To:cc:Subject:In-Reply-To:Message-ID:References:From; b=ZZgUUG8E63wbx4XDdJBp1iPaH/fRLXXaicNBOVpwkpKRtZPkYxwAaxlRT3bbyzFX/ GH/JvgcT9YSBK1lvx1Jg79+fqSZABDMgyKMZvYp7AtMMN3FfCG0tZWcrmsXbqrvnPw IeQTUqBloZMoUn0mWAZmUCp7kokLTkrvryY4y7e/CnQ8l6qy0A0dtvDFIronukBwB2 Try+tJr/4EAp5l2QQURzG2Cf2LjU2WVEhfvW4wpGaJxyN7feG59a4Ze9tIHvoZL9cS oukGYySRE4Nm/oVfIynz1rqPmFMs7maFJ9Xg7S8fXcUAnLtXiuv60YRg49uoJs32Pg KasE3E294P9zA== Date: Wed, 21 Jul 2021 13:11:18 +0000 From: Gregory Heytings In-Reply-To: <87v953q1g0.fsf@tcd.ie> Message-ID: <94de128df18768e1346c@heytings.org> References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> <87y2a1cbj9.fsf@gnus.org> <83h7gp56w2.fsf@gnu.org> <94de128df1551a7f9154@heytings.org> <87v953q1g0.fsf@tcd.ie> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed X-Spam-Score: -0.0 (/) 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 (-) > > If pruning loses data it shouldn't be enabled by default in all > checkouts, e.g. if a branch is accidentally deleted by someone else then > simply fetching shouldn't propagate that deletion for others. So IMO > the developer should decide when and how to enable this. (Unless I've > misunderstood something.) > Pruning a branch does not lose data AFAIK, it only removes the pointer to the last commit of that branch. From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Gregory Heytings Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 22 Jul 2021 07:31:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: "Basil L. Contovounesios" , enometh@meer.net, 49570@debbugs.gnu.org, larsi@gnus.org, akrl@sdf.org Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.162693903429968 (code B ref 49570); Thu, 22 Jul 2021 07:31:01 +0000 Received: (at 49570) by debbugs.gnu.org; 22 Jul 2021 07:30:34 +0000 Received: from localhost ([127.0.0.1]:39297 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6TA9-0007nH-VT for submit@debbugs.gnu.org; Thu, 22 Jul 2021 03:30:34 -0400 Received: from heytings.org ([95.142.160.155]:47900) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6TA8-0007n7-7T for 49570@debbugs.gnu.org; Thu, 22 Jul 2021 03:30:32 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heytings.org; s=20210101; t=1626939031; bh=ySpbnfzBDBkuHzKRhlrN5POfeMbybMQEMuPXURWI4V0=; h=Date:From:To:cc:Subject:In-Reply-To:Message-ID:References:From; b=CJdekWF59Zg4+SIFuK+/Adh6dQQWEhFW69A8+55TTpgy0T0afKaye26N0QZQnIe32 Sj5cjg36VXxrT9KK2yiVR8C9nkwimAMU56we72nuVnLghjB6hOasj02IkaRHR+GTtz 22J5yP6Bl3vGYGWW7/4O6RME9g9yETTZu9Bd+C6G8MArNXa+ZGBrBsHn1+kC5p1gKe gaLnYH7e2LiyosCG/s2wzLmk5JFWgqBJJQDTiRXWCjG5hhnq7Y6Kvhui4J+zewVbS/ 52+wQgDA9r6ysuKI3QyrN79LgEyxyPzWwmYmRBJqORyGBZ7Ms1cYCHyiof16QnJv4M /fseGn7rbjHRQ== Date: Thu, 22 Jul 2021 07:30:30 +0000 From: Gregory Heytings In-Reply-To: <83sg074xzg.fsf@gnu.org> Message-ID: References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> <87y2a1cbj9.fsf@gnus.org> <83h7gp56w2.fsf@gnu.org> <94de128df1551a7f9154@heytings.org> <87v953q1g0.fsf@tcd.ie> <83sg074xzg.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset=us-ascii X-Spam-Score: -0.0 (/) 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 (-) >> If pruning loses data it shouldn't be enabled by default in all >> checkouts, e.g. if a branch is accidentally deleted by someone else >> then simply fetching shouldn't propagate that deletion for others. > > Of course. Don't worry, we won't do that. > Why on earth won't you do that? Deleting a branch (or removing a tag) does *not* lose any data / commit, it only removes a pointer / label to a particular commit. For example anyone can still access the commits of the feature/native-comp branch with git checkout fa65c044f2. Should someone accidentally delete a branch, it is easy to create it again. Setting this config variable is much better than telling people to say "git remote prune origin" from time to time as you suggested, it does the same, except that it happens automatically. From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 22 Jul 2021 08:54:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Gregory Heytings Cc: contovob@tcd.ie, enometh@meer.net, 49570@debbugs.gnu.org, larsi@gnus.org, akrl@sdf.org Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.16269439825403 (code B ref 49570); Thu, 22 Jul 2021 08:54:01 +0000 Received: (at 49570) by debbugs.gnu.org; 22 Jul 2021 08:53:02 +0000 Received: from localhost ([127.0.0.1]:39347 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6URt-0001Oj-Cg for submit@debbugs.gnu.org; Thu, 22 Jul 2021 04:53:02 -0400 Received: from eggs.gnu.org ([209.51.188.92]:37952) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6URq-0001OR-6D for 49570@debbugs.gnu.org; Thu, 22 Jul 2021 04:52:55 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:45808) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m6URh-0008AV-5x; Thu, 22 Jul 2021 04:52:45 -0400 Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:2252 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m6URg-0006PQ-QN; Thu, 22 Jul 2021 04:52:45 -0400 Date: Thu, 22 Jul 2021 11:52:25 +0300 Message-Id: <83zgue3f3q.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: (message from Gregory Heytings on Thu, 22 Jul 2021 07:30:30 +0000) References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> <87y2a1cbj9.fsf@gnus.org> <83h7gp56w2.fsf@gnu.org> <94de128df1551a7f9154@heytings.org> <87v953q1g0.fsf@tcd.ie> <83sg074xzg.fsf@gnu.org> 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 (---) > Date: Thu, 22 Jul 2021 07:30:30 +0000 > From: Gregory Heytings > cc: "Basil L. Contovounesios" , enometh@meer.net, > 49570@debbugs.gnu.org, larsi@gnus.org, akrl@sdf.org > > > >> If pruning loses data it shouldn't be enabled by default in all > >> checkouts, e.g. if a branch is accidentally deleted by someone else > >> then simply fetching shouldn't propagate that deletion for others. > > > > Of course. Don't worry, we won't do that. > > Why on earth won't you do that? Because it isn't our place to second-guess when the user wants to purge his/her local Git repository. From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Gregory Heytings Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 22 Jul 2021 09:11:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: contovob@tcd.ie, enometh@meer.net, 49570@debbugs.gnu.org, larsi@gnus.org, akrl@sdf.org Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.16269450457332 (code B ref 49570); Thu, 22 Jul 2021 09:11:01 +0000 Received: (at 49570) by debbugs.gnu.org; 22 Jul 2021 09:10:45 +0000 Received: from localhost ([127.0.0.1]:39380 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6Uj7-0001uC-0S for submit@debbugs.gnu.org; Thu, 22 Jul 2021 05:10:45 -0400 Received: from heytings.org ([95.142.160.155]:48012) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6Uj4-0001u2-Q3 for 49570@debbugs.gnu.org; Thu, 22 Jul 2021 05:10:43 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heytings.org; s=20210101; t=1626945041; bh=43xlwWe/bA7MlY6QFZmtlmrqjO/tNWt+tKLEf50BuL8=; h=Date:From:To:cc:Subject:In-Reply-To:Message-ID:References:From; b=poVlOhgMsIwpVGCb5owbiHnUgvVEUtN88hMJUE91YUcByA20UHD9jXOqAhO5A5iil MJHpyvCSnmAs6w/bbfyGluLRilKkA0+7b42joObQ0VMOg83Nx0fumQirvMtRW/h4fD W46bhw7gwiJHMd33Zga24nhFtLOSOSXJBJVkqrhhpGFh0lWUeJHKOLu7QT/WIPNUum JHzZ21B5AC/I4KbofU2bbeOaUNF68lrjqen/ZGm9+3FLJ6yqR9zWcFCHTadznpv/Rf kO5uEJ9TYsalyUZ19alE/0SC7PDR3xZbH1e+galirRhvQD1QyFPPkaEb/AR2QtMYbU fUQOWtsBrZv5A== Date: Thu, 22 Jul 2021 09:10:41 +0000 From: Gregory Heytings In-Reply-To: <83zgue3f3q.fsf@gnu.org> Message-ID: References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> <87y2a1cbj9.fsf@gnus.org> <83h7gp56w2.fsf@gnu.org> <94de128df1551a7f9154@heytings.org> <87v953q1g0.fsf@tcd.ie> <83sg074xzg.fsf@gnu.org> <83zgue3f3q.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset=us-ascii X-Spam-Score: -0.0 (/) 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 (-) >> Why on earth won't you do that? > > Because it isn't our place to second-guess when the user wants to purge > his/her local Git repository. > The word "prune" or "purge" are perhaps a bit unfortunate, they seem to imply that something serious is happening (as Basil thought). Once again no actual data is removed, the only thing that is removed is a pointer to a particular commit. Two people (Lars and Andrea) regretted upthread that removing a branch does not remove them in local repositories, and I remember at least one recent incident in which someone was using the native-comp branch after it had been removed. Which is why I suggested to set that configuration variable... but I preach in the wilderness. From unknown Wed Aug 20 01:19:59 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49570: 28.0.50; url-http proxy connection-wait Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 22 Jul 2021 09:42:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49570 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Gregory Heytings Cc: contovob@tcd.ie, enometh@meer.net, 49570@debbugs.gnu.org, larsi@gnus.org, akrl@sdf.org Received: via spool by 49570-submit@debbugs.gnu.org id=B49570.162694688311604 (code B ref 49570); Thu, 22 Jul 2021 09:42:01 +0000 Received: (at 49570) by debbugs.gnu.org; 22 Jul 2021 09:41:23 +0000 Received: from localhost ([127.0.0.1]:39407 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6VCf-00030z-RI for submit@debbugs.gnu.org; Thu, 22 Jul 2021 05:41:23 -0400 Received: from eggs.gnu.org ([209.51.188.92]:47898) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6VCd-00030g-I2 for 49570@debbugs.gnu.org; Thu, 22 Jul 2021 05:41:16 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:46646) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m6VCW-00084P-G3; Thu, 22 Jul 2021 05:41:08 -0400 Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:1340 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m6VCW-00022B-3g; Thu, 22 Jul 2021 05:41:08 -0400 Date: Thu, 22 Jul 2021 12:40:47 +0300 Message-Id: <83v9523cv4.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: (message from Gregory Heytings on Thu, 22 Jul 2021 09:10:41 +0000) References: <87r1fzk50m.fsf@gnus.org> <87lf62l37y.fsf@gnus.org> <20210720.122050.833709498766828032.enometh@meer.net> <87y2a1cbj9.fsf@gnus.org> <83h7gp56w2.fsf@gnu.org> <94de128df1551a7f9154@heytings.org> <87v953q1g0.fsf@tcd.ie> <83sg074xzg.fsf@gnu.org> <83zgue3f3q.fsf@gnu.org> 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 (---) > Date: Thu, 22 Jul 2021 09:10:41 +0000 > From: Gregory Heytings > cc: contovob@tcd.ie, enometh@meer.net, 49570@debbugs.gnu.org, larsi@gnus.org, > akrl@sdf.org > > >> Why on earth won't you do that? > > > > Because it isn't our place to second-guess when the user wants to purge > > his/her local Git repository. > > > > The word "prune" or "purge" are perhaps a bit unfortunate, they seem to > imply that something serious is happening (as Basil thought). We are miscommunicating. Regardless of whether the loss of data is or isn't significant, it is impolite, to say the least, for the project to force users to do anything in their local clone that is not absolutely necessary. In particular, whether a branch should or shouldn't be deleted in the local clone is for the user to decide, not for us. So we should not do that. > Two people (Lars and Andrea) regretted upthread that removing a > branch does not remove them in local repositories, and I remember at > least one recent incident in which someone was using the native-comp > branch after it had been removed. Which is why I suggested to set > that configuration variable... but I preach in the wilderness. People who want this automatic pruning can configure that in their personal ~/.gitconfig. So the information about doing that automatically is not lost; thank you for posting it.