From debbugs-submit-bounces@debbugs.gnu.org Wed Oct 23 12:13:01 2024 Received: (at submit) by debbugs.gnu.org; 23 Oct 2024 16:13:01 +0000 Received: from localhost ([127.0.0.1]:60539 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t3dyn-0003JN-An for submit@debbugs.gnu.org; Wed, 23 Oct 2024 12:13:01 -0400 Received: from lists.gnu.org ([209.51.188.17]:34986) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t3dyl-0003JC-BY for submit@debbugs.gnu.org; Wed, 23 Oct 2024 12:13:00 -0400 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 1t3dyH-0003fl-EE for guix-patches@gnu.org; Wed, 23 Oct 2024 12:12:29 -0400 Received: from relay6-d.mail.gandi.net ([2001:4b98:dc4:8::226]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t3dyE-0004aO-JQ for guix-patches@gnu.org; Wed, 23 Oct 2024 12:12:29 -0400 Received: by mail.gandi.net (Postfix) with ESMTPSA id 54CBDC0004; Wed, 23 Oct 2024 16:12:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fabionatali.com; s=gm1; t=1729699941; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=saMA9yikKBlN23YfVrZ/B9zoO2j+zPGdmlMWRwUTXgI=; b=Z+X/9GkxzwUeEfQ5pc745FjIkCTPnAD2VPkPLp6Jku751uCYY91MsNnZMrlEbwv7OYxodt LY9y5Eq2xePwwf7zpKtcFWVN+T/UathY/3Z/W6FL9zFFVaEv5Uo8Ch+YZlDZklc0KO0TIi fsp3LeyJWHzJlGu+aNeVM/r5IkK6m1pWKbNxFCoeWUI/Iugwz9WMStLpxLIFW0/ThybXLK rDRU0ckd0TSns32YWWs+0lRMGJ9EeFxCv9B3uSeaORB8oO3abJLCDRenaDa8VYkeaCdoT2 cVoyfUOvUQyzJK5xpZTiuCCbZaNuN5as6pjJGm17WqEUwySUiEddaYRbUwFllA== From: Fabio Natali To: guix-patches@gnu.org Subject: [PATCH] gnu: emacs-tempel-collection: Include 'templates' folder. Date: Wed, 23 Oct 2024 17:09:25 +0100 Message-ID: <7da411eeb29a529f3ff9fd7250e50e7a4b7430e9.1729699648.git.me@fabionatali.com> X-Mailer: git-send-email 2.46.0 MIME-Version: 1.0 X-Debbugs-Cc: Andrew Tropin , Katherine Cox-Buday , Liliana Marie Prikler Content-Transfer-Encoding: 8bit X-GND-Sasl: me@fabionatali.com Received-SPF: pass client-ip=2001:4b98:dc4:8::226; envelope-from=me@fabionatali.com; helo=relay6-d.mail.gandi.net 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_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit Cc: jgart@dismail.de, Fabio Natali 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.6 (--) * gnu/packages/emacs-xyz.scm (emacs-tempel-collection): Include the 'templates' folder. Change-Id: I3ed8fc7c19b7d0a1e7f76984144e03a0575ba066 --- Hello there, This micro patch is to add the previously untracked 'templates' folder to the 'emacs-tempel-collection' package. The folder is relevant as it contains all the TempEl templates that the package is supposed to ship. I hope this looks fine. Thanks, best, Fabio. gnu/packages/emacs-xyz.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 0be1ac83bc..0fff64c31f 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -18931,6 +18931,9 @@ (define-public emacs-tempel-collection (base32 "0ifmzn5d9mpsjwvg2ir0sy3r4czxa7d6j97l8rrp8ai7jqvydadm")))) (build-system emacs-build-system) + (arguments + (list + #:include #~(cons "^templates\\/" %default-include))) (propagated-inputs (list emacs-tempel)) (home-page "https://github.com/Crandel/tempel-collection") (synopsis "Collection of TempEl templates") base-commit: e4e1e16bc1b27684b55e6bf047f9f669e1a0c7b5 -- 2.46.0 From debbugs-submit-bounces@debbugs.gnu.org Wed Oct 23 19:45:46 2024 Received: (at 73969-done) by debbugs.gnu.org; 23 Oct 2024 23:45:46 +0000 Received: from localhost ([127.0.0.1]:32911 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t3l2v-0007Oq-N7 for submit@debbugs.gnu.org; Wed, 23 Oct 2024 19:45:45 -0400 Received: from mx1.dismail.de ([78.46.223.134]:1272) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t3l2s-0007K8-K1 for 73969-done@debbugs.gnu.org; Wed, 23 Oct 2024 19:45:43 -0400 Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id afc3231b; Thu, 24 Oct 2024 01:45:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=dismail.de; h=from:to:cc :subject:in-reply-to:date:message-id:mime-version:content-type; s=20190914; bh=UWat3SCMbOVFRyZzN3QXMfzm5WpBoRqVLbznTEVArhk=; b= gF5A1rT5nchD3uNb5emGveGKOL+KNg7UDWLeHEPynuSQ8QVGNc+8n0TJWIPF5Sgz pa6zX99brk5KydsS/MjvYZMhrKCwumB1AaFpJPBFETbY2Txsvw2a+diBWdpNpGpL YdpU+4eM1aUAS3O8XvJ/I4uqfcYqfS+9xJHqqTHrElnjkfQZcfl9bPNr3G02FwZ0 7vqK994PLZELcWPXjVcke0PopkqSxg0DwOaPXwiD4eJQhNCVyqqnqmUQh7HDbuWy evg+ajlVz7vp7vBxzelbgrP779ykGzPre1Q2yWQoOJ7IaHiYbdGNZQXZ4lFGbTvg jrJtZSSs3eoK01HaCio87Q== Received: from smtp2.dismail.de ( [10.240.26.12]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 3791468d; Thu, 24 Oct 2024 01:45:05 +0200 (CEST) Received: from smtp2.dismail.de (localhost [127.0.0.1]) by smtp2.dismail.de (OpenSMTPD) with ESMTP id 0007c14a; Thu, 24 Oct 2024 01:45:05 +0200 (CEST) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 5765cc8a (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Thu, 24 Oct 2024 01:45:04 +0200 (CEST) From: jgart To: 73969-done@debbugs.gnu.org Subject: Re: [PATCH] gnu: emacs-tempel-collection: Include 'templates' folder. In-Reply-To: <7da411eeb29a529f3ff9fd7250e50e7a4b7430e9.1729699648.git.me@fabionatali.com> Date: Wed, 23 Oct 2024 18:45:02 -0500 Message-ID: <87o73acrk1.fsf@dismail.de> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 73969-done Cc: Fabio Natali 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 (-) Hi Fabio, LGTM. I tested in a guix shell with $ ./pre-inst-env guix shell emacs-minimal emacs-tempel emacs-tempel-collection --pure Thanks for the patch and for contributing to Guix! -- all the best, jgart From unknown Fri Jun 20 07:29:07 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 Nov 2024 12:24:11 +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