From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 16 04:34:21 2025 Received: (at submit) by debbugs.gnu.org; 16 Feb 2025 09:34:21 +0000 Received: from localhost ([127.0.0.1]:60176 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tjb2b-0003R5-94 for submit@debbugs.gnu.org; Sun, 16 Feb 2025 04:34:21 -0500 Received: from lists.gnu.org ([2001:470:142::17]:50218) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tjb2Y-0003Qn-Lj for submit@debbugs.gnu.org; Sun, 16 Feb 2025 04:34:19 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tjb2R-0007o5-VN for guix-patches@gnu.org; Sun, 16 Feb 2025 04:34:11 -0500 Received: from confino.investici.org ([2a11:7980:1::2:0]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tjb2P-0001va-3F for guix-patches@gnu.org; Sun, 16 Feb 2025 04:34:11 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1739698445; bh=bDuyo0MqwZpwRtGYO5EN1hmy095latlPbCMI2GVOUQM=; h=From:To:Cc:Subject:Date:From; b=TZAu3IwYiTNfNKD35FJmIoAQZJzxrSEJAp/bnSKOhxcHyEbDPL/FWR0YOqt3q/Lta Vu2mTxZQ/1QP382O7aRhTydi3CxpWvl+4s/Ts72UCMNaBUfTv2g7jyRyNUqmoJVPK3 W6TuDrNPemTYr6DgJ46xmM6/FJJKoSTMAKYcsA8o= Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4YwgbK60HTz11Gc; Sun, 16 Feb 2025 09:34:05 +0000 (UTC) Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4YwgbK3BXcz11Gb; Sun, 16 Feb 2025 09:34:05 +0000 (UTC) From: Cayetano Santos To: guix-patches@gnu.org Subject: [PATCH] gnu: emacs-cape: Update to 1.9. Date: Sun, 16 Feb 2025 10:33:52 +0100 Message-ID: <540f04509832aec708628dd02c486cd1374a5004.1739698432.git.csantosb@inventati.org> X-Mailer: git-send-email 2.48.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2a11:7980:1::2:0; envelope-from=csantosb@inventati.org; helo=confino.investici.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 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, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: Cayetano Santos 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: -0.1 (/) * gnu/packages/emacs-xyz.scm (emacs-cape): Update to 1.9. Change-Id: Ic12f24d2d51b07a3e5ba688e85e169a17e7ee97e --- gnu/packages/emacs-xyz.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index fd1e2a5887..633dc0d27f 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5456,7 +5456,7 @@ (define-public emacs-corfu-candidate-overlay (define-public emacs-cape (package (name "emacs-cape") - (version "1.8") + (version "1.9") (source (origin (method git-fetch) @@ -5465,7 +5465,7 @@ (define-public emacs-cape (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0ij4skr231bh3qs7s49h4ni8zkagg8k6b3jr611c0wax5gas1jzl")))) + (base32 "0pcgxv011z0gl0g38yh2dr09sx17pwpbvydz2dzvm730k9lbyikh")))) (build-system emacs-build-system) (arguments (list @@ -5481,8 +5481,7 @@ (define-public emacs-cape (install-file "cape.info" (string-append #$output "/share/info"))))))) (native-inputs (list texinfo)) - (propagated-inputs - (list emacs-compat)) + (propagated-inputs (list emacs-compat)) (home-page "https://github.com/minad/cape") (synopsis "Completion at point extensions for Emacs") (description base-commit: dd7a377c38c2a3e0cb80b0e45b32dfbe4577a739 -- 2.48.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 17 12:49:26 2025 Received: (at 76331) by debbugs.gnu.org; 17 Feb 2025 17:49:26 +0000 Received: from localhost ([127.0.0.1]:48541 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tk5FG-0008SY-2e for submit@debbugs.gnu.org; Mon, 17 Feb 2025 12:49:26 -0500 Received: from fout-a7-smtp.messagingengine.com ([103.168.172.150]:40351) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tk5FD-0008Ry-EL for 76331@debbugs.gnu.org; Mon, 17 Feb 2025 12:49:23 -0500 Received: from phl-compute-04.internal (phl-compute-04.phl.internal [10.202.2.44]) by mailfout.phl.internal (Postfix) with ESMTP id 4B34C13800E9; Mon, 17 Feb 2025 12:49:18 -0500 (EST) Received: from phl-mailfrontend-01 ([10.202.2.162]) by phl-compute-04.internal (MEProxy); Mon, 17 Feb 2025 12:49:18 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=retrospec.tv; h= cc:cc:content-type:content-type:date:date:from:from:in-reply-to :message-id:mime-version:reply-to:subject:subject:to:to; s=fm2; t=1739814558; x=1739900958; bh=sKU8+gQOA/0iRTYfDDQuDgFmTi4Qe0Un F0DvQZL4lLw=; b=pPxWSpx7jRcqrFM0qvL7etyWpO72XjUazLnZONMDpo/JQLda CfC42/4RPxwPAf3Acq14RkdmK009+p8iVCDA+JU2JwoTGUYFSAGcP2a/h1bY4puv QuF/itPvp8R5vnszXusAhokjRqN9cQh1Ncq/8CHhdVpGDi/JvdojBIV4z8d3ncK7 CIGgjF3AAGCVdUHtkFFa62hVv1geEF2uYyWpe7s94cCJLs/WYCpxd6izOJk2EP78 ysPJbzYeHbRTpaIEu+dadYFUulJBT5XdlMf4dswA6AxkteeoQr5Qi0G73Y4aJy9t 1srLocWzKYcjY6vDLpQ2vCLNzWpBG953cac5Xw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-type:content-type:date:date :feedback-id:feedback-id:from:from:in-reply-to:message-id :mime-version:reply-to:subject:subject:to:to:x-me-proxy :x-me-sender:x-me-sender:x-sasl-enc; s=fm3; t=1739814558; x= 1739900958; bh=sKU8+gQOA/0iRTYfDDQuDgFmTi4Qe0UnF0DvQZL4lLw=; b=x xEodPM5dNNuHYGXyU0YEYW6P+Oh6NJVJb1FArdGCHJBASFN8gJyIgtZlB3k40V5A /kemiXCRIB2aUgMFlWERX5RMBh0p4Zn1hlUUwuFgAZwpwV5c/9H3JPOd74LbTwX1 9dl5VRiciro9bB4nX3pVecm1tz8YtRLKOQZPJu0z9w4NGGdUKam17xaTTYwtGQcM 4eVTW6cI9ukvXp6WgJ0pcacAs1ZdkyPJ69viTkobTqa1p9xUdmmDID2N+MzZhg4D nvS6BTyEsOVp5ucCV7kzlywmcjHlVW2tFXpPEEALuRRnaF2mdmXnVYqf2+dXTJ+S jovwr7mcDE8+xSQMeo98A== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeefvddrtddtgdehledthecutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpggftfghnshhusghstghrihgsvgdp uffrtefokffrpgfnqfghnecuuegrihhlohhuthemuceftddtnecunecujfgurhephffvve fufgffkfggtgesthdtredttdertdenucfhrhhomhepkfgrnhcugfhurhgvuceoihgrnhes rhgvthhrohhsphgvtgdrthhvqeenucggtffrrghtthgvrhhnpeefgeegtddvudejvddvfe eljeehleejffevheevffeugffhffefleekhffhtefhteenucevlhhushhtvghrufhiiigv pedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpehirghnsehrvghtrhhoshhpvggtrdhtvh dpnhgspghrtghpthhtohepvddpmhhouggvpehsmhhtphhouhhtpdhrtghpthhtohepjeei feefudesuggvsggsuhhgshdrghhnuhdrohhrghdprhgtphhtthhopegtshgrnhhtohhssg esihhnvhgvnhhtrghtihdrohhrgh X-ME-Proxy: Feedback-ID: id9014242:Fastmail Received: by mail.messagingengine.com (Postfix) with ESMTPA; Mon, 17 Feb 2025 12:49:17 -0500 (EST) From: Ian Eure To: Cayetano Santos Subject: Re: [bug#76331] [PATCH] gnu: emacs-cape: Update to 1.9. User-Agent: mu4e 1.12.8; emacs 29.4 Date: Mon, 17 Feb 2025 09:49:16 -0800 Message-ID: <87zfikjwbn.fsf@retrospec.tv> MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 76331 Cc: 76331@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 (-) Pushed as 3ea90083c7. Thanks, -- Ian From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 17 12:49:31 2025 Received: (at control) by debbugs.gnu.org; 17 Feb 2025 17:49:31 +0000 Received: from localhost ([127.0.0.1]:48546 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tk5FL-0008Sz-DB for submit@debbugs.gnu.org; Mon, 17 Feb 2025 12:49:31 -0500 Received: from fhigh-a3-smtp.messagingengine.com ([103.168.172.154]:55659) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tk5FG-0008SI-M4 for control@debbugs.gnu.org; Mon, 17 Feb 2025 12:49:26 -0500 Received: from phl-compute-02.internal (phl-compute-02.phl.internal [10.202.2.42]) by mailfhigh.phl.internal (Postfix) with ESMTP id 8379711401D9 for ; Mon, 17 Feb 2025 12:49:21 -0500 (EST) Received: from phl-mailfrontend-01 ([10.202.2.162]) by phl-compute-02.internal (MEProxy); Mon, 17 Feb 2025 12:49:21 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=retrospec.tv; h= cc:content-type:date:date:from:from:in-reply-to:message-id :reply-to:subject:subject:to:to; s=fm2; t=1739814561; x= 1739900961; bh=ZQPviIQxMm+ehRj7FIOfJNpSqcoi0muo4csXMdEQuso=; b=z hltD94Gh+9qI7Ukk8zmlfsaYP56m3uy3BXuipProTBiWXqK2lZ4BjleKi7nVg/1x DWLo4M5PsFJt2KspvayJaRAEIW3+orZ3jlRKwIpH637n4JL8gSjmYgi6EyjAn4UP sBK8qU3p8dc4PV0N9o48B3B9PRQhswS4qtyYP81rcYB3DKSw/XDtTmF3Z964GQP2 7wTj9fY4xFUdGidqbok104mlR/njTaiFmX2fqZDJx+rYz1Oi9M8on00pqC1oqkDJ CTnb4rpz6FzXoOoeoFSwysi5KX+kVGYFbZ1568/jq6tf62AbhMo9CYgK2XtLz2nj QR5r8KHXMC9q6UKl8zxyA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:date:feedback-id :feedback-id:from:from:in-reply-to:message-id:reply-to:subject :subject:to:to:x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s= fm3; t=1739814561; x=1739900961; bh=ZQPviIQxMm+ehRj7FIOfJNpSqcoi 0muo4csXMdEQuso=; b=ed6wOyXSmTpu5zYL3XyKEea+ySg7R6Lnm6JA1+ENta6F XO2eIaUX4MRmYXY1Y2TrJ3XwlMfmJhZ/UBOzI89wYWSKAriGLIMUNc3OZdZl7OqG t+SkxCI/L1m0KY/NhjpoAhsz/VD964i1x9HWTa/gZarvSXOCB9Pjt/i2aNYyyGcX OTjpZwQiiYc01w1N4AlBK8vtdjlTrTOLMSS+8/BZBUH2ssgCYfMAxnRVvStiXS+1 3IIHrF6PXSovNrpY3AYcW8hTrpktjtBTR64noWiP0FJIf4LZfG0XiHnP4FJ1iIno /CMFTqu06NzrPxXBfBFi5oeS74Vr5Ev9tz7U7/lb3Q== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeefvddrtddtgdehledthecutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpggftfghnshhusghstghrihgsvgdp uffrtefokffrpgfnqfghnecuuegrihhlohhuthemuceftddtnecunecujfgurhepfffkvf fhufestddtredttddttdenucfhrhhomhepkfgrnhcugfhurhgvuceoihgrnhesrhgvthhr ohhsphgvtgdrthhvqeenucggtffrrghtthgvrhhnpeetkeejhfefhfetieegkeehheevvd efgffggeevffdtvddufeehiefgteeiueehkeenucevlhhushhtvghrufhiiigvpedtnecu rfgrrhgrmhepmhgrihhlfhhrohhmpehirghnsehrvghtrhhoshhpvggtrdhtvhdpnhgspg hrtghpthhtohepuddpmhhouggvpehsmhhtphhouhhtpdhrtghpthhtoheptghonhhtrhho lhesuggvsggsuhhgshdrghhnuhdrohhrgh X-ME-Proxy: Feedback-ID: id9014242:Fastmail Received: by mail.messagingengine.com (Postfix) with ESMTPA for ; Mon, 17 Feb 2025 12:49:20 -0500 (EST) Date: Mon, 17 Feb 2025 09:49:20 -0800 Message-Id: <87y0y4jwbj.fsf@retrospec.tv> To: control@debbugs.gnu.org From: Ian Eure Subject: control message for bug #76331 X-Spam-Score: -0.7 (/) 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: -1.7 (-) close 76331 quit From unknown Fri Jun 20 07:11:17 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 18 Mar 2025 11:24:24 +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