From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 23 16:24:43 2021 Received: (at submit) by debbugs.gnu.org; 23 Jan 2021 21:24:43 +0000 Received: from localhost ([127.0.0.1]:35394 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3QOg-0001f9-Rx for submit@debbugs.gnu.org; Sat, 23 Jan 2021 16:24:43 -0500 Received: from lists.gnu.org ([209.51.188.17]:48474) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3NQK-0003P2-Fy for submit@debbugs.gnu.org; Sat, 23 Jan 2021 13:14:12 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:42810) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l3NQJ-0000Zw-Ju for bug-gnu-emacs@gnu.org; Sat, 23 Jan 2021 13:14:12 -0500 Received: from aibo.runbox.com ([91.220.196.211]:37896) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1l3NQF-0008LM-EQ for bug-gnu-emacs@gnu.org; Sat, 23 Jan 2021 13:14:10 -0500 Received: from [10.9.9.72] (helo=submission01.runbox) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1l3NQA-0006se-94 for bug-gnu-emacs@gnu.org; Sat, 23 Jan 2021 19:14:02 +0100 Received: by submission01.runbox with esmtpsa [Authenticated alias (9149)] (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) id 1l3NPs-0007Tq-LS for bug-gnu-emacs@gnu.org; Sat, 23 Jan 2021 19:13:44 +0100 From: Gunnar Horrigmo To: bug-gnu-emacs@gnu.org Subject: hardcoded ~/.emacs.d in elpa package excorporate Date: Sat, 23 Jan 2021 19:13:44 +0100 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=91.220.196.211; envelope-from=gnunar@stoffe-pro.net; helo=aibo.runbox.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sat, 23 Jan 2021 16:24:41 -0500 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 (--) The `excorporate' package hardcodes its diary files to ~/.emacs.d/excorporate, instead of honoring user-emacs-directory. I've included a small fix: === begin diff === diff --git a/excorporate-diary.el b/excorporate-diary.el index 833df3017c..b147bed42d 100644 --- a/excorporate-diary.el +++ b/excorporate-diary.el @@ -76,13 +76,17 @@ respectively." #'exco-diary-icalendar--add-diary-entry-around)) (defvar excorporate-diary-today-file - "~/.emacs.d/excorporate/diary-excorporate-today" + (concat + (file-name-as-directory user-emacs-directory) + "excorporate/diary-excorporate-today") "The diary file where Excorporate should save today's meetings. This file will be #include'd in `diary-file' by `excorporate-diary-enable'.") (defvar excorporate-diary-transient-file - "~/.emacs.d/excorporate/diary-excorporate-transient" + (concat + (file-name-as-directory user-emacs-directory) + "excorporate/diary-excorporate-transient") "The diary file where Excorporate should save retrieved meetings. This file will be #include'd in `diary-file' by `excorporate-diary-enable'.") [gunnar@titanium excorporate]$ git diff -u diff --git a/excorporate-diary.el b/excorporate-diary.el index 833df3017c..b147bed42d 100644 --- a/excorporate-diary.el +++ b/excorporate-diary.el @@ -76,13 +76,17 @@ respectively." #'exco-diary-icalendar--add-diary-entry-around)) (defvar excorporate-diary-today-file - "~/.emacs.d/excorporate/diary-excorporate-today" + (concat + (file-name-as-directory user-emacs-directory) + "excorporate/diary-excorporate-today") "The diary file where Excorporate should save today's meetings. This file will be #include'd in `diary-file' by `excorporate-diary-enable'.") (defvar excorporate-diary-transient-file - "~/.emacs.d/excorporate/diary-excorporate-transient" + (concat + (file-name-as-directory user-emacs-directory) + "excorporate/diary-excorporate-transient") "The diary file where Excorporate should save retrieved meetings. This file will be #include'd in `diary-file' by `excorporate-diary-enable'.") === end diff === Am I submitting this the right way? -- Gunnar From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 23 17:31:25 2021 Received: (at 46056) by debbugs.gnu.org; 23 Jan 2021 22:31:25 +0000 Received: from localhost ([127.0.0.1]:35549 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3RRE-0007bq-Ox for submit@debbugs.gnu.org; Sat, 23 Jan 2021 17:31:24 -0500 Received: from mail-wm1-f46.google.com ([209.85.128.46]:55061) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3RRB-0007bb-P7 for 46056@debbugs.gnu.org; Sat, 23 Jan 2021 17:31:22 -0500 Received: by mail-wm1-f46.google.com with SMTP id u14so708615wml.4 for <46056@debbugs.gnu.org>; Sat, 23 Jan 2021 14:31:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tcd-ie.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=LnMUvOpKJ1RoV167HTDWM0feeIfL9Fo3ymjOmW4f2d0=; b=hTRzwdPLZ2frhXTXYZw8OLhLt4Pa9OtNJAVufN20kMpT1B+C+/W8KaFIr997Q8RiUn dvH4P4ptYnfo+tKiLEYhBZcIwmjvo7yfd6JOF18h7ekgsI/i/jZmYifRFQDbhcls+LTb mwJWyX0qMsT/vLG0LH3HpvmDELzRLTAhMlr9atjV9se8JiBt28zYwVpjP83AQBY2T5Fi Fonz91rxDn5rPkQlHkd1d9kgdAPru8m+BPpWyWtZ3yucCiYdsdGFkhNSIkPElbca0nn1 6Yp1Zx0+oGe3fJqxJi6kfaTBQXyXw5XL29UKDVgjVDezxQelQSfcqlA+UMYPWP2y7A99 wkZA== 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=LnMUvOpKJ1RoV167HTDWM0feeIfL9Fo3ymjOmW4f2d0=; b=PFPdqJJPjYN401rYmjLu0BLvobGdRCUBQJzIa2tOb5JrXLX0YjVuqXYU12HTfnk3pt c2iuR3D6a3kXGIHfskv9svTuyM+cHFN+TpwB/Kxg40FLl5vCdIvLzQtYWx5oBrrWguFB /vSEGRvM48SLlxBPHUA3q3ry+qwFeDR7BAEFZxIWYf8LRuLMt67tO8hiURSldBoPjXVc uwUuE5422rjkFm299d3s0FMtKgpfq5qN3ceCqPbc3M5qsaYtGcnDSPTX4FHk0vla+u/Q f4RiDIzXEoELCUkIClDiSlPpTfrkfwvZJZUVWewtRs20Ud5ad8220utyzhRhtOqm8Ylw yjsg== X-Gm-Message-State: AOAM530Rg1p5rfC25dyAa8+kRzUibFAULysvJalGJkupLn4NX8+c3P4C kmRM6R+FRPHCICZz2zlwiLZe8A== X-Google-Smtp-Source: ABdhPJxdFB2ZUEsLbSJC4AoxX5Rt5lxvuPbLoB3jkILSCqLfuVMJqiVYOYfXda8mxFjmbf81yyyMrA== X-Received: by 2002:a1c:a957:: with SMTP id s84mr75471wme.166.1611441075778; Sat, 23 Jan 2021 14:31:15 -0800 (PST) Received: from localhost ([2a02:8084:20e2:c380:d15:339e:aa10:60f1]) by smtp.gmail.com with ESMTPSA id m11sm8985960wmc.15.2021.01.23.14.31.14 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 23 Jan 2021 14:31:14 -0800 (PST) From: "Basil L. Contovounesios" To: Gunnar Horrigmo Subject: Re: bug#46056: hardcoded ~/.emacs.d in elpa package excorporate References: Date: Sat, 23 Jan 2021 22:31:13 +0000 In-Reply-To: (Gunnar Horrigmo's message of "Sat, 23 Jan 2021 19:13:44 +0100") Message-ID: <878s8jz3ny.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-Debbugs-Envelope-To: 46056 Cc: Thomas Fitzsimmons , 46056@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 (-) Gunnar Horrigmo writes: > The `excorporate' package hardcodes its diary files to > ~/.emacs.d/excorporate, instead of honoring user-emacs-directory. Right. CCing Thomas, the package's maintainer. > I've included a small fix: > > === begin diff === > > diff --git a/excorporate-diary.el b/excorporate-diary.el > index 833df3017c..b147bed42d 100644 > --- a/excorporate-diary.el > +++ b/excorporate-diary.el > @@ -76,13 +76,17 @@ respectively." > #'exco-diary-icalendar--add-diary-entry-around)) > > (defvar excorporate-diary-today-file > - "~/.emacs.d/excorporate/diary-excorporate-today" > + (concat > + (file-name-as-directory user-emacs-directory) > + "excorporate/diary-excorporate-today") Rather than concatenating file names as strings, better to use locate-user-emacs-file in this case (or expand-file-name in general). See (info "(elisp) Standard File Names"). [...] > Am I submitting this the right way? Ideally the patch would include a ChangeLog-style commit message referencing this bug number; see the guidelines in the CONTRIBUTE file[1] at the top of the Emacs source tree. Otherwise looks fine :). [1]: https://git.savannah.gnu.org/cgit/emacs.git/tree/CONTRIBUTE Thanks, -- Basil From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 23 17:32:05 2021 Received: (at control) by debbugs.gnu.org; 23 Jan 2021 22:32:05 +0000 Received: from localhost ([127.0.0.1]:35553 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3RRt-0007dl-1Z for submit@debbugs.gnu.org; Sat, 23 Jan 2021 17:32:05 -0500 Received: from mail-wm1-f54.google.com ([209.85.128.54]:37315) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3RRr-0007cs-2b for control@debbugs.gnu.org; Sat, 23 Jan 2021 17:32:03 -0500 Received: by mail-wm1-f54.google.com with SMTP id c128so7478544wme.2 for ; Sat, 23 Jan 2021 14:32:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tcd-ie.20150623.gappssmtp.com; s=20150623; h=message-id:date:to:from:subject; bh=WQqc7WI+l3cR32LboUYS5YE0yPAg0Ns3NjoiIEbXhG0=; b=SDHMcYZe413WqA8FxuUOTFmz8AgsTjV5IXAv7hrl3jvvdQEBZc37I4N9GB56/Gry1V 2zQGoF87PqAQj2yER8QgKVe199cXm9CaQc1iUXuXlhkY7kVKH4hRNG8qq2ITyo+DJJRg QYnFYv0CBqHKrVyVM5jl9iOhKkYTO3Y67ovI8ChJVCEm77LqtMAcOF2AVWT7zyBeaQPo rf5oxM0HAvaP7mtNQxkQw5fpbtN16i9HegJaxyqUl7PCnyb865GQ/1x82B4tz+r07VEb 8SnkcB0oKZBLT1S/s+rMQmSKI5FBPklpnylAMJ/VIWh9BMYpCOohU81R8f+Ppnlz30K6 ytkQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:message-id:date:to:from:subject; bh=WQqc7WI+l3cR32LboUYS5YE0yPAg0Ns3NjoiIEbXhG0=; b=lCtFGGsvMSOKJekwFvtyfnf2S7V0LONGza0GyOu2Nhkb5dsdeinfq1B+rrBIX1+khH 3SNa7KbjUR38bvu6gyHr6fdZd2i8DbQeihnAtlBSyxeZ90e0otB2nGL8PBIDzDngZQum Q/hqQYFQYx3Sr+zDRSmS8XKd+Ok4jYAkndfPZ+qX8NRr4ENSd2/jk24x8/NEc3jNduqR D+MUVv/Rr6ykvV+3sPpJp9sgW7Jg0NBlimfx6Iidf2HlETCGIoDzr+Hhr/j6Vk0VuYga 2UKmHvwghdtAvE5s0VrVjGb5DrR+I/G/Qz2KXERDOgw6wjbPUpgKMTNvxbf4qn2bjUZb xWdA== X-Gm-Message-State: AOAM5338iOG17wtGvnZC4zVCGg8uSN43I69RWx14+wgnrFRDHUPFpufw 3ooI9yZuw/RXrY9X9qIKMMXxTQ8Xx1M6XBPR X-Google-Smtp-Source: ABdhPJzAybbrqhU2zdFVYK5ODeyCqyd34Cd76RM89uWCE94TEEIjRReCgnBFLLSFmW0XtPzMAXKrJA== X-Received: by 2002:a7b:c942:: with SMTP id i2mr9643609wml.51.1611441117184; Sat, 23 Jan 2021 14:31:57 -0800 (PST) Received: from localhost ([2a02:8084:20e2:c380:d15:339e:aa10:60f1]) by smtp.gmail.com with ESMTPSA id y6sm16497871wrp.6.2021.01.23.14.31.56 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 23 Jan 2021 14:31:56 -0800 (PST) Message-ID: <600ca3dc.1c69fb81.e3285.300d@mx.google.com> Date: Sat, 23 Jan 2021 22:31:56 +0000 To: control@debbugs.gnu.org From: "Basil L. Contovounesios" Subject: control message for bug #46056 X-Spam-Score: 0.0 (/) 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.0 (-) tags 46056 + patch quit From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 23 21:45:34 2021 Received: (at 46056) by debbugs.gnu.org; 24 Jan 2021 02:45:34 +0000 Received: from localhost ([127.0.0.1]:35701 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3VPC-000588-0h for submit@debbugs.gnu.org; Sat, 23 Jan 2021 21:45:34 -0500 Received: from aibo.runbox.com ([91.220.196.211]:38808) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3VP9-00057z-Pi for 46056@debbugs.gnu.org; Sat, 23 Jan 2021 21:45:33 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=runbox.no; s=selector2; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From; bh=EuhaYKowuI5fa1psWJFXZ7V15r2X8j2T8pPYW8GRnWE=; b=TAF6+X4AvWk7SCjeaM/XCbbKnm pJaO+wgJbwlVM0bV7v84m9UMojfuUYt4LAaKlmNQK+5jvFmwrszHckZXfXtOrR6g2f8JkqB+W8eqY zOetWQyvh5j3Iob1Qw6VoDGjqdLVG1/Pv7gACvYBkQFdxG7ykeYOgsd3UgQBHtdotF00Q5M4lq0Mr Nq2jCS81O60xR8ygx6yeXgneH9/ad6R6zdeEyl/pZId5fiU+2qigEYUlbByGrHib/8i0TtawVUEUk koNf757kK66Ya0gO3UN2yBLG8HMVi9SpYnOG8OYxvnf/3Cy5/Xt3QZRIkfy72+xne7UI0X0mqf/g9 G7+ipZYw==; Received: from [10.9.9.73] (helo=submission02.runbox) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1l3VP7-0007uf-Lt; Sun, 24 Jan 2021 03:45:29 +0100 Received: by submission02.runbox with esmtpsa [Authenticated alias (9149)] (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) id 1l3VOv-00012y-Ur; Sun, 24 Jan 2021 03:45:17 +0100 From: Gunnar Horrigmo To: "Basil L. Contovounesios" Subject: Re: bug#46056: hardcoded ~/.emacs.d in elpa package excorporate References: <878s8jz3ny.fsf@tcd.ie> Date: Sun, 24 Jan 2021 03:45:17 +0100 In-Reply-To: <878s8jz3ny.fsf@tcd.ie> (Basil L. Contovounesios's message of "Sat, 23 Jan 2021 22:31:13 +0000") 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.7 (/) X-Debbugs-Envelope-To: 46056 Cc: Thomas Fitzsimmons , 46056@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 (-) "Basil L. Contovounesios" writes: > Right. CCing Thomas, the package's maintainer. Thank you. > Rather than concatenating file names as strings, better to use > locate-user-emacs-file in this case (or expand-file-name in general). > See (info "(elisp) Standard File Names"). Good advice! > Ideally the patch would include a ChangeLog-style commit message > referencing this bug number; see the guidelines in the CONTRIBUTE > file[1] at the top of the Emacs source tree. Otherwise looks fine :). > > [1]: https://git.savannah.gnu.org/cgit/emacs.git/tree/CONTRIBUTE Not that Thomas needs my help, but just for my own excercise, is this what you prefer? Subject: [PATCH] Use `locate-user-emacs-file' instead of hardcoded paths to diary files --- excorporate-diary.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/excorporate-diary.el b/excorporate-diary.el index 833df3017c..d936f6494c 100644 --- a/excorporate-diary.el +++ b/excorporate-diary.el @@ -76,13 +76,13 @@ respectively." #'exco-diary-icalendar--add-diary-entry-around)) (defvar excorporate-diary-today-file - "~/.emacs.d/excorporate/diary-excorporate-today" + (locate-user-emacs-file "excorporate/diary-excorporate-today") "The diary file where Excorporate should save today's meetings. This file will be #include'd in `diary-file' by `excorporate-diary-enable'.") (defvar excorporate-diary-transient-file - "~/.emacs.d/excorporate/diary-excorporate-transient" + (locate-user-emacs-file "excorporate/diary-excorporate-transient") "The diary file where Excorporate should save retrieved meetings. This file will be #include'd in `diary-file' by `excorporate-diary-enable'.") -- 2.30.0 -- Gunnar From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 23 22:16:31 2021 Received: (at 46056-done) by debbugs.gnu.org; 24 Jan 2021 03:16:31 +0000 Received: from localhost ([127.0.0.1]:35722 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3Vt9-0005sU-5C for submit@debbugs.gnu.org; Sat, 23 Jan 2021 22:16:31 -0500 Received: from mail-qv1-f48.google.com ([209.85.219.48]:36279) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3Vt7-0005sF-56 for 46056-done@debbugs.gnu.org; Sat, 23 Jan 2021 22:16:29 -0500 Received: by mail-qv1-f48.google.com with SMTP id es14so869910qvb.3 for <46056-done@debbugs.gnu.org>; Sat, 23 Jan 2021 19:16:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fitzsim-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=g17CJfivoema522oFsEP4toa269bH963fjFJTJpDhpk=; b=X01TN+mjASU6FPyCf9oFx7J4F5l4DIqTM7xGgaW2/Yj/ZFv5Rs4gpwVAW4bk+aL8NS nOtum6VlEHPccdd8X+opEcZu+1xZNQZxUJ4HfAqF0ytwsRG39oLm9DaFD0MryXgyFHbl fJK3fKKLos/7jDXObeA+uCk7TBhar/EIkEbFJfUme49q03V5iFmP0GkcoLH9CU8sJlym 3FLMJ2SIdjEjhyWyiLgQzX8OX0kT3lmw+jTqyUo7mFx8IR3qN6+8n+7ygfk7H7RdOlKq eLILpwSkCal2Ia4aSacfF/dhTEfXDERs22ghhgzRiMMqUzuYyUKmIAoq9EDxZ8N7ydhB MROw== 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=g17CJfivoema522oFsEP4toa269bH963fjFJTJpDhpk=; b=N1B2nUf0Cfr4mWg8XHQiBipvJ6LCzkZRfzXhIGBN/MlWn/OXlwVRLStWtgKGqJwa+E ccSO7lEo25lgyjOwr0GxukEaH920XIK7rRq/RT7QXR492ODdj7nrz34GkvZfcEkIiISb CsrojX9lMmaHpFh/wmPqXUXWdkHvIE22K460tsDa03Gt2AHkH/+sFj8dNphdeMCXJ4Zj Trc2LkivMgVMSg17UeEAz+caJGRZiXhxSpd0eSWKLBeTtIUydHwOcX/vK/VPm/7Rrwbq Tc3ZM+h3CXBqN3y4r3Z+H2y/q1GNb7UXshi1YNs8swAotEjCprRvahh3qxUDKOtknr6a 6+GQ== X-Gm-Message-State: AOAM530IbFWFW2/Bv4Y9qb4fUHQ2TPyjRQGRHH22BJBt970lGFJul979 V10jLNMvbGO8jHOu5y09upDf6/1mcIDNoA== X-Google-Smtp-Source: ABdhPJwYSjdl6zTNYw3O6nHL61IaUgcp8BXumRK41qjf3rqdmAkgCCzOVv6xLbRW7sZBqbqAQk1OHw== X-Received: by 2002:a0c:c489:: with SMTP id u9mr467328qvi.31.1611458183142; Sat, 23 Jan 2021 19:16:23 -0800 (PST) Received: from localhost.localdomain (69-165-165-189.dsl.teksavvy.com. [69.165.165.189]) by smtp.gmail.com with ESMTPSA id z16sm8209273qtb.73.2021.01.23.19.16.21 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Sat, 23 Jan 2021 19:16:21 -0800 (PST) From: Thomas Fitzsimmons To: Gunnar Horrigmo Subject: Re: bug#46056: hardcoded ~/.emacs.d in elpa package excorporate References: <878s8jz3ny.fsf@tcd.ie> Date: Sat, 23 Jan 2021 22:16:20 -0500 In-Reply-To: (Gunnar Horrigmo's message of "Sun, 24 Jan 2021 03:45:17 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1.90 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 46056-done Cc: "Basil L. Contovounesios" , 46056-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 (-) --=-=-= Content-Type: text/plain Hi Gunnar, Gunnar Horrigmo writes: > "Basil L. Contovounesios" writes: > >> Right. CCing Thomas, the package's maintainer. Thanks Basil, I might not have seen this otherwise (see postscript). > Thank you. > >> Rather than concatenating file names as strings, better to use >> locate-user-emacs-file in this case (or expand-file-name in general). >> See (info "(elisp) Standard File Names"). > > Good advice! > >> Ideally the patch would include a ChangeLog-style commit message >> referencing this bug number; see the guidelines in the CONTRIBUTE >> file[1] at the top of the Emacs source tree. Otherwise looks fine :). >> >> [1]: https://git.savannah.gnu.org/cgit/emacs.git/tree/CONTRIBUTE > > Not that Thomas needs my help, but just for my own excercise, is this > what you prefer? Thanks for the fix. I wrote up the ChangeLog and pushed the change, see attached. It will be released when Excorporate 0.9.2 hits GNU ELPA tomorrow or the day after. Thomas P.S. The results of the following steps don't include this bug report; I wonder why: M-x debbugs-gnu-search RET Enter search phrase: excorporate RET Enter attribute: RET --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-Do-not-hard-code-diary-directory.patch >From 58d808a71893ec2a953151eb80f1ef88f25ef80f Mon Sep 17 00:00:00 2001 From: Gunnar Horrigmo Date: Sat, 23 Jan 2021 21:57:57 -0500 Subject: [PATCH] Do not hard code diary directory * excorporate-diary.el (excorporate-diary-today-file): Use `locate-user-emacs-file' instead of hardcoded paths to diary files. (excorporate-diary-transient-file): Likewise. (Bug#45623) --- excorporate-diary.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/excorporate-diary.el b/excorporate-diary.el index 833df3017c..d936f6494c 100644 --- a/excorporate-diary.el +++ b/excorporate-diary.el @@ -76,13 +76,13 @@ (unless (string-match "omit-trailing-space" (documentation 'diary-make-entry)) #'exco-diary-icalendar--add-diary-entry-around)) (defvar excorporate-diary-today-file - "~/.emacs.d/excorporate/diary-excorporate-today" + (locate-user-emacs-file "excorporate/diary-excorporate-today") "The diary file where Excorporate should save today's meetings. This file will be #include'd in `diary-file' by `excorporate-diary-enable'.") (defvar excorporate-diary-transient-file - "~/.emacs.d/excorporate/diary-excorporate-transient" + (locate-user-emacs-file "excorporate/diary-excorporate-transient") "The diary file where Excorporate should save retrieved meetings. This file will be #include'd in `diary-file' by `excorporate-diary-enable'.") -- 2.30.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 24 04:21:21 2021 Received: (at 46056) by debbugs.gnu.org; 24 Jan 2021 09:21:21 +0000 Received: from localhost ([127.0.0.1]:35827 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3baD-0006Sl-DB for submit@debbugs.gnu.org; Sun, 24 Jan 2021 04:21:21 -0500 Received: from mout.gmx.net ([212.227.15.19]:41111) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3baB-0006SW-AZ for 46056@debbugs.gnu.org; Sun, 24 Jan 2021 04:21:20 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gmx.net; s=badeba3b8450; t=1611480071; bh=QUQmXYS0q6w6Lagm/NiBIPl0cgOBNXT0lh3PtFTwlOY=; h=X-UI-Sender-Class:From:To:Cc:Subject:References:Date:In-Reply-To; b=L+G3Mb0FUCj4A3c6DGXzhTwPNs19lUHPcE4YDUVcAWp5myWQLEEGvmvqBXjveShUS DQn9Wicf6y53ZG2LivEi9QV/Mu4tkMsn+MqSfyWSw/S+Fvug5T76PWYSNwYzfSpJ3D aKzoTqIRbnbFHo9JlAOCLQIBIVjtCNFIx16ToLnk= X-UI-Sender-Class: 01bb95c1-4bf8-414a-932a-4f6e2808ef9c Received: from gandalf.gmx.de ([212.86.58.112]) by mail.gmx.net (mrgmx004 [212.227.17.190]) with ESMTPSA (Nemesis) id 1Mlw7V-1llz5Y0BEJ-00izFj; Sun, 24 Jan 2021 10:21:11 +0100 From: Michael Albinus To: 46056@debbugs.gnu.org Subject: Re: bug#46056: hardcoded ~/.emacs.d in elpa package excorporate References: <878s8jz3ny.fsf@tcd.ie> Date: Sun, 24 Jan 2021 10:21:09 +0100 In-Reply-To: (Thomas Fitzsimmons's message of "Sat, 23 Jan 2021 22:16:20 -0500") Message-ID: <87h7n6vgfu.fsf@gmx.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Provags-ID: V03:K1:m7QbzM0t+n15HGJc7KWMJX13bPZfhUkQRqvXi+o41peAsP6LlNx TFpDPC50OzqLxtXZfQ8umSRpHYATEFfBzutBtzZmXTSkrC8g6ii2KLI0KKtZotoFFs1Shas ip1UHVqOyqtx8LgbGOBDmPpneplzeHVAphl6He3laf5MJSoBRUwwrZpRSsea6W3spWkYn6d NE2vgbJ90cJsx1NQ0AZzQ== X-Spam-Flag: NO X-UI-Out-Filterresults: notjunk:1;V03:K0:00Sr+T12GBk=:qj2QVoFVMXQV8r1nDAQdSW miskanG+yvnqiaROz0wIUk33JWPImPDggA+lFOxFx0ifjr6NY5k9ZOcTEdAFGKSW/dnySFFna t1uD23keLBbsIAAU+w0Axtuk2jXcbimw7jBR74C3FhLhDdxbJw2YwNj/vtRK9IQlhbt3t1gXG Qw/Y1mWCTGd0GvtXjJraTJVVAH93wBv1ZlAFUsUxy0wo3ant5OKUZrX3Mydx18MUPz+y4N2aF pqvfD6HtUvq20EHVprGde99OLMMsM8NObzTEQygB6MMYXKHelWezt6Q3n+XWKiYzkS5+WPLpX QOXmo3ZzHI7rrq3jbvIpoBAR8BrB9doNcSKIvt/8SxhuKiix/3/5+qGLi9oP8R2Pb092Z7/as zjqVpaa7QGPKgakDY9bdcdbLN4NTZ1SbiHCxBrzqQy6YrrWZvXWsmSqxohDnbWLbcEpkMDtPl jowa5McfsfNbbz2ORD0ZtbDBOva0motZbsggShuPjkQ/n+obVxyO1dvMXaCI2xh5z5yd9U6TQ ZEtGkMnFfnxXDK3uSz7iBjseXS8b36SQQpOuj52jOgyAAf/lwSM1ilJmYM4QmbNb0wPyyQ24Z wSS8wwvHUcrDocu7JjHAm88KB8uFoXV/bl/n8ef4+/JnMolJj/+yrJ2MdKZSu/VHQ4XzPv2BN 5K93gBN7dJVM+d/uHojiYe+1KpZGIYerIZU0E4MuNg9z0iIT6QviFAPB9OaRcIM4EW8IIbHn3 O2aQgQra49MZrg4MdzcRwtgMLveqFhZ0T98fnZcna3XucFiU/NsbdC5iFCS+UxTTpUYpiqSRn a5Q8czwyOEm9Wjk7hAsGjSdXTic1erlxUsY2yoiWhFf2BU6b/AbR+nNf+6GC3Q2Zc82baIEcj RgkrHWWKi1vfwVLBafpg== X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 46056 Cc: fitzsim@fitzsim.org, gnunar@stoffe-pro.net 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 (-) Thomas Fitzsimmons writes: > Hi Gunnar, Hi Thomas, > P.S. The results of the following steps don't include this bug report; I > wonder why: > > M-x debbugs-gnu-search RET > Enter search phrase: excorporate RET > Enter attribute: RET I suppose it takes time to add this bug to the hyperestraier index. See (info "(debbugs-ug) Searching Bugs") --8<---------------cut here---------------start------------->8--- The search engine uses an index over the bug database. This index is refreshed daily; search hits may not include recent changes made the same day. --8<---------------cut here---------------end--------------->8--- > Thomas Best regards, Michael. From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 24 06:58:36 2021 Received: (at 46056) by debbugs.gnu.org; 24 Jan 2021 11:58:36 +0000 Received: from localhost ([127.0.0.1]:35945 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3e2O-0001oj-G6 for submit@debbugs.gnu.org; Sun, 24 Jan 2021 06:58:36 -0500 Received: from mail-wr1-f53.google.com ([209.85.221.53]:33683) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3e2M-0001oV-Cj for 46056@debbugs.gnu.org; Sun, 24 Jan 2021 06:58:35 -0500 Received: by mail-wr1-f53.google.com with SMTP id 7so9460531wrz.0 for <46056@debbugs.gnu.org>; Sun, 24 Jan 2021 03:58:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tcd-ie.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=F5PzxcVB3E/W/j1orHujMvWh7MSdMiz6k9Ydp17BW+E=; b=HGclqS+Q29fyNvNUtgmuhs1dMjMlmNEpSbGC15WiZAh2aeXOiqmT7km432hfA0TbF7 DYvI6Hkb8mCRs8RjEihp/cYni4WU770YWzSu5ymAV3fk89pZKtRoVBASKb4HpuHVzGez 13NeT8ZAnCN+JghhTe9vSTPic7ZROsyI9GeVTjkkLpzLHrlDUVzB0N+mFDb9evDUS3W8 PloXNxfeJY46nvu1IdSPQXU9SALuZq9GgpCmhrzqoHHNhpUb6H/Zv9VKUAzYBKo/6kHo +pQ3Bl3IpErYeWuR1uZqoCxsWyZ0mnMufsTTiHHfblcJq9GIQsglSm941oBEGwvsID1B t+/Q== 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=F5PzxcVB3E/W/j1orHujMvWh7MSdMiz6k9Ydp17BW+E=; b=S4GFc12Ab4RjQunCcovS1RVEH/SxYpQitjxdq6Q52cr/V5agOfJb1mODvtWqcg0al3 6v7NPnuN7csaXI0eYkuJsYs1MCrbcd/hYwYfnOl0VUAuBVnEOFAW5XslIIXdjTxlWsff WSqeHg8lABIKLK6Xg07sPGPq0+CPYfX013zRDEOkXX4WcUK5TeYWyxvCT/JYnib4vYro BZ6cd3zb0+13CUs+zmQ6LHTgI4d8zzsQTmgGKGwROmiRFRIJVOHbHoRwd76uSWSZ7vrX PCHH7NRFuV6uGalt3uMNUWvjs3p+oKaJLo504Kt3zW/iNiMxJsOOqYBSZnH8w+jkKL9h 6TpQ== X-Gm-Message-State: AOAM533SVQMxTdSILU5xAbIHXGnBf8lz50K54QWuP+UyuzBbuHW+CL3J c00H/4N19sDSLIhRkuL9jxuJUA== X-Google-Smtp-Source: ABdhPJyWU3ieNPycqfK7vJfKcYiV8sHYdD9oJ3b7IfqfjFuFFXgvmu0A33sO6o6prSQSTgmcLQmM/Q== X-Received: by 2002:a5d:65cd:: with SMTP id e13mr3816629wrw.120.1611489508470; Sun, 24 Jan 2021 03:58:28 -0800 (PST) Received: from localhost ([2a02:8084:20e2:c380:6146:9c0d:a0ea:26d0]) by smtp.gmail.com with ESMTPSA id j4sm9261933wru.20.2021.01.24.03.58.27 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 24 Jan 2021 03:58:27 -0800 (PST) From: "Basil L. Contovounesios" To: Gunnar Horrigmo Subject: Re: bug#46056: hardcoded ~/.emacs.d in elpa package excorporate References: <878s8jz3ny.fsf@tcd.ie> Date: Sun, 24 Jan 2021 11:58:25 +0000 In-Reply-To: (Gunnar Horrigmo's message of "Sun, 24 Jan 2021 03:45:17 +0100") Message-ID: <87tur6h7ha.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-Debbugs-Envelope-To: 46056 Cc: Thomas Fitzsimmons , 46056@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 (-) Gunnar Horrigmo writes: > "Basil L. Contovounesios" writes: > >> Ideally the patch would include a ChangeLog-style commit message >> referencing this bug number; see the guidelines in the CONTRIBUTE >> file[1] at the top of the Emacs source tree. Otherwise looks fine :). >> >> [1]: https://git.savannah.gnu.org/cgit/emacs.git/tree/CONTRIBUTE > > Not that Thomas needs my help, but just for my own excercise, is this > what you prefer? Yes, see also Thomas' final version. Thanks, -- Basil From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 24 07:04:24 2021 Received: (at 46056) by debbugs.gnu.org; 24 Jan 2021 12:04:24 +0000 Received: from localhost ([127.0.0.1]:35968 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3e7z-0001yx-SZ for submit@debbugs.gnu.org; Sun, 24 Jan 2021 07:04:24 -0500 Received: from mail-wm1-f42.google.com ([209.85.128.42]:38235) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3e7x-0001yk-Ep for 46056@debbugs.gnu.org; Sun, 24 Jan 2021 07:04:21 -0500 Received: by mail-wm1-f42.google.com with SMTP id y187so8312507wmd.3 for <46056@debbugs.gnu.org>; Sun, 24 Jan 2021 04:04:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tcd-ie.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=7BUh1peCKwBIuymcaZAJT10jmXDDUZPWr5BCbmTehnY=; b=bVebtdmCBQW5oEafJW4OY3ScZGna1+Uxfo/dsaYV7eMYdVzgvK1ftbMUEAy0u7eP/T NY8MKNgz599T0XCjy9LnJuEaKxUzt1H1n4w5QboyFYhraliNXnO/oQCtPpMxIpQY+3sW ZJHhLjAXgoPeR0+7MtlnZj2otjJarvbNa02K2ynSTRxu4VHGMsTTHUUMuIr4pU3ncyn4 JU3UyBREKmG+wT1gO48vEMKlsGn8AbkP2icNsZvmFUclzG0bzCdGQanB27ZMV/rXNQYi nIx8hJQ6ISLsPcpHmtfiJJC1KuHPgATIEjIXix0vJILcD4XTKNbZ9p7kjeOAd7qMNwhg pbZg== 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=7BUh1peCKwBIuymcaZAJT10jmXDDUZPWr5BCbmTehnY=; b=N5WY05TQAMSBdi8QcDwMstPUQaJcWP1ZHcNHh4qMjXsWJ2nQuIXbPArrQpnYALPjWf V/9LO/PolfKCwpNEqKayyZQ4XGu/EQJhQcYE5nirj1vORI2iHG66DCo9pNQNem8i39MF t5NB0MoiWBDE6a8Tycl4bIZqP2G1habHpY0sC4LGAvJ3rUo7bnpemv+MC5Lm0VrgkaDc 0SCb93bde97DMFolqRPMLCNd4iKD24bzO2g8Y2CYJtfmwnkF5jkXeN8LukCp3uRhPHls RGb+Lc1Lbe/9rrwdBZEdBb96GK5zjcY0bHvOXQ5Lb4iF4VW/EyDZy0V8VwZq/2BPBsDH H+Gw== X-Gm-Message-State: AOAM530FAftmsvIN9DW66Y7PQ/Bza4tMvScDEPXR2/PlwOPJdC+xzD3a T3DonC5VFH7uC1uUaA7iKMW1PQ== X-Google-Smtp-Source: ABdhPJxvSpQVYQCjPKgkQheVl+yTBM7yNSMiuhg8tNr/lczGsDc9nvVwSBnfaKJFtcAGpawtn6GeXQ== X-Received: by 2002:a1c:e2d7:: with SMTP id z206mr11944736wmg.168.1611489855604; Sun, 24 Jan 2021 04:04:15 -0800 (PST) Received: from localhost ([2a02:8084:20e2:c380:6146:9c0d:a0ea:26d0]) by smtp.gmail.com with ESMTPSA id u5sm19159920wmg.9.2021.01.24.04.04.14 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 24 Jan 2021 04:04:15 -0800 (PST) From: "Basil L. Contovounesios" To: Thomas Fitzsimmons Subject: Re: bug#46056: hardcoded ~/.emacs.d in elpa package excorporate References: <878s8jz3ny.fsf@tcd.ie> Date: Sun, 24 Jan 2021 12:04:13 +0000 In-Reply-To: (Thomas Fitzsimmons's message of "Sat, 23 Jan 2021 22:16:20 -0500") Message-ID: <87czxuh77m.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-Debbugs-Envelope-To: 46056 Cc: Gunnar Horrigmo , 46056@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 (-) Thomas Fitzsimmons writes: > From 58d808a71893ec2a953151eb80f1ef88f25ef80f Mon Sep 17 00:00:00 2001 > From: Gunnar Horrigmo > Date: Sat, 23 Jan 2021 21:57:57 -0500 > Subject: [PATCH] Do not hard code diary directory > > * excorporate-diary.el (excorporate-diary-today-file): Use > `locate-user-emacs-file' instead of hardcoded paths to diary files. > (excorporate-diary-transient-file): Likewise. (Bug#45623) FWIW, instead of likewise/ditto you can also write in the form * A (B, C): D. * E (F, G) (H, I): J. * K (L): * M (N): O. if you prefer. Thanks, -- Basil From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 24 07:48:35 2021 Received: (at 46056-done) by debbugs.gnu.org; 24 Jan 2021 12:48:35 +0000 Received: from localhost ([127.0.0.1]:36026 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3eol-00057X-5L for submit@debbugs.gnu.org; Sun, 24 Jan 2021 07:48:35 -0500 Received: from aibo.runbox.com ([91.220.196.211]:34002) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3eoh-00057N-Qd for 46056-done@debbugs.gnu.org; Sun, 24 Jan 2021 07:48:33 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=runbox.no; s=selector2; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From; bh=guVFo32cGSAZP6DbrcojINUo+nPNXCwR911oq3JyWH4=; b=Kcn+wWDeXoUqX5pwVymud4fVmG pdKgx8RBSYAOKUfC47JXD+UlXqxPHGX1cJrMqVw1ldrgMmXQN0WHMXWIJqdbQvWJpHCeDSzm0wO/W bbB4g+/Q+dCpG/FRowwhoJGSkgNmvgKtRbva/oUxzpYcTOlGAoGzu7YH/LSPMD8dp5ed+qUjGLl37 YBQqR23y5A7SqaqAGYWqnGJKwAWfVxNvcFhSpi8gm7FDt1BNVcSIH3uGPY4tRDvu+2gZ0RxqkJ6n7 ABfKx6/zRY/ZJLcGk6Es/jtbNblkYfCtYaS9Yh2Aj1OkDFYA1McvPl4onF7+n8+goH1zcMPIs8hWw pekVMwgQ==; Received: from [10.9.9.74] (helo=submission03.runbox) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1l3eof-00018S-OE; Sun, 24 Jan 2021 13:48:29 +0100 Received: by submission03.runbox with esmtpsa [Authenticated alias (9149)] (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) id 1l3eoN-00045h-Jm; Sun, 24 Jan 2021 13:48:11 +0100 From: Gunnar Horrigmo To: Thomas Fitzsimmons Subject: Re: bug#46056: hardcoded ~/.emacs.d in elpa package excorporate References: <878s8jz3ny.fsf@tcd.ie> Date: Sun, 24 Jan 2021 13:48:11 +0100 In-Reply-To: (Thomas Fitzsimmons's message of "Sat, 23 Jan 2021 22:16:20 -0500") 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.7 (/) X-Debbugs-Envelope-To: 46056-done Cc: "Basil L. Contovounesios" , 46056-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 (-) Thomas Fitzsimmons writes: > Thanks for the fix. I wrote up the ChangeLog and pushed the change, see > attached. It will be released when Excorporate 0.9.2 hits GNU ELPA > tomorrow or the day after. Thank you. :) -- Gunnar From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 24 12:34:37 2021 Received: (at 46056) by debbugs.gnu.org; 24 Jan 2021 17:34:37 +0000 Received: from localhost ([127.0.0.1]:37104 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3jHY-000659-OJ for submit@debbugs.gnu.org; Sun, 24 Jan 2021 12:34:36 -0500 Received: from mail-qk1-f169.google.com ([209.85.222.169]:45942) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3jHW-00064v-7I for 46056@debbugs.gnu.org; Sun, 24 Jan 2021 12:34:35 -0500 Received: by mail-qk1-f169.google.com with SMTP id r77so10198647qka.12 for <46056@debbugs.gnu.org>; Sun, 24 Jan 2021 09:34:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fitzsim-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=BK9FPfQjOIVofe7uILKxd8Zi2x+ULG3CNDD9ZCWjne8=; b=DbKZqUpj4zf93kfrGZgxMb8Uoc0/6uKnu885pGtNweHfbtZ+BI8NCldAWDZ94A8Kql GgxvcROfag+phWGptApY/xfO8RLgZOSmw2LWVDLsgVdxo8cSEw55kBD4Irw+QJY6qulV G7KucUwsG0rywDxwwL4NPhm2JYOvTCdo6ERJrRpWpy94vp8DAKFY72+z4aypDLuhxx4m F7a6lEu4nqg15wZEn8cKDfbPYSLh+oyMDl9TU23tNC7GVObupzZfWpUdHEP3X8U+qsaS 0T8SpmfS5TQSxeY0Uda44GiSXf1UvZsWbVmVi0hQ+oOXUpsa84Y068V3yCrIOI57w8X1 2IMA== 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=BK9FPfQjOIVofe7uILKxd8Zi2x+ULG3CNDD9ZCWjne8=; b=WE2iFwg5vYPV1LQSH/7Xf/+iQiu/u0+bWERBXDujZaU/2T6xaUVkBtE9+qbPfUoS4l hi6ZXqay585uqpM5AeAGlEM/7px66QmFa4Sb5OT9SwuMK5GydbqtfxtK5iiTuLm0zR91 TQfBDGyPNFH7iqYi48D6YodTT8gQfzN0Q7+B28JBQ6slEHjdwCkCNtSeNr5fKwhrhJd5 SRYUnXBd0tPdTc0SKciwnnmDzzf2m+w5bG7f2u/5zyFllq1liMpHWdfdN2vOxYUmyDyr gYDrZL61zg4Ad3tw45s7IOd+JvDMGuqSeXb3cF9tPPvy4xfgPDvhoCfw2MI7fXp6fWWU MJvw== X-Gm-Message-State: AOAM5307UgNKryg7xLX70urrKE5aczosrTcF31gk5KhZitcL9sinfVdS HUkJhXzxfW9lknHWLwGe5cwNyQ== X-Google-Smtp-Source: ABdhPJx7F8xAFpqPl4O9DCzfyiwewJohl2oZupCW0BrUHk7sD5o/332ujY2SGStYiH454HTfeMN3AA== X-Received: by 2002:a37:4c06:: with SMTP id z6mr1687268qka.117.1611509668462; Sun, 24 Jan 2021 09:34:28 -0800 (PST) Received: from localhost.localdomain (69-165-165-189.dsl.teksavvy.com. [69.165.165.189]) by smtp.gmail.com with ESMTPSA id a188sm2473785qkg.33.2021.01.24.09.34.27 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Sun, 24 Jan 2021 09:34:27 -0800 (PST) From: Thomas Fitzsimmons To: Michael Albinus Subject: Re: bug#46056: hardcoded ~/.emacs.d in elpa package excorporate References: <878s8jz3ny.fsf@tcd.ie> <87h7n6vgfu.fsf@gmx.de> Date: Sun, 24 Jan 2021 12:34:26 -0500 In-Reply-To: <87h7n6vgfu.fsf@gmx.de> (Michael Albinus's message of "Sun, 24 Jan 2021 10:21:09 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1.90 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 46056 Cc: gnunar@stoffe-pro.net, 46056@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 (-) Michael Albinus writes: > Thomas Fitzsimmons writes: > >> Hi Gunnar, > > Hi Thomas, > >> P.S. The results of the following steps don't include this bug report; I >> wonder why: >> >> M-x debbugs-gnu-search RET >> Enter search phrase: excorporate RET >> Enter attribute: RET > > I suppose it takes time to add this bug to the hyperestraier index. See > (info "(debbugs-ug) Searching Bugs") > > The search engine uses an index over the bug database. This index > is refreshed daily; search hits may not include recent changes made > the same day. OK, thanks for the explanation. I do see this bug report in the results now. I didn't have the Debbugs UG manual installed until just now when I upgraded to 0.27. Looks nice! Is this daily refresh already using incremental registration [1]? Is performing incremental registration of each bug report as it is filed infeasible? Thomas 1. https://dbmx.net/hyperestraier/intro-en.html#deployment From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 24 12:40:32 2021 Received: (at 46056) by debbugs.gnu.org; 24 Jan 2021 17:40:32 +0000 Received: from localhost ([127.0.0.1]:37135 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3jNI-0006FT-Hv for submit@debbugs.gnu.org; Sun, 24 Jan 2021 12:40:32 -0500 Received: from mout.gmx.net ([212.227.17.22]:53849) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l3jNG-0006FE-57 for 46056@debbugs.gnu.org; Sun, 24 Jan 2021 12:40:31 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gmx.net; s=badeba3b8450; t=1611510020; bh=pvfuK6q8/89368d1U0QVXLX7D0uEU+fME/yxwDc0UQc=; h=X-UI-Sender-Class:From:To:Cc:Subject:References:Date:In-Reply-To; b=cM8uITYd+y8vFtL9hvy4eBpDY7HDoPY6BCu1F230sy+Ot/ZDNDIYpr/SLg+cFlaeR IvCsR7b5RG7fS5bgN6qKqit/YtqUNKQpBlVJ54Tc7svnlWkSzQvXYNKV55pnvo3Djg 52k2Q98H3rW5Rz5hjX5Y71dMcSYTaqgBaur1RWXA= X-UI-Sender-Class: 01bb95c1-4bf8-414a-932a-4f6e2808ef9c Received: from gandalf.gmx.de ([212.86.58.112]) by mail.gmx.net (mrgmx105 [212.227.17.168]) with ESMTPSA (Nemesis) id 1Mz9Ux-1lz7O33AFX-00wIHg; Sun, 24 Jan 2021 18:40:20 +0100 From: Michael Albinus To: Thomas Fitzsimmons Subject: Re: bug#46056: hardcoded ~/.emacs.d in elpa package excorporate References: <878s8jz3ny.fsf@tcd.ie> <87h7n6vgfu.fsf@gmx.de> Date: Sun, 24 Jan 2021 18:40:19 +0100 In-Reply-To: (Thomas Fitzsimmons's message of "Sun, 24 Jan 2021 12:34:26 -0500") Message-ID: <871reap724.fsf@gmx.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Provags-ID: V03:K1:y6xoiKgIwmd6Haw7LXWy8zsZ6a8FGShpuHGTU0U6HJJ+OMXLGsG zYbGLbDIcQegODUFZzCriWAngb4HOSRJDqTM7IPcy43D/v0TgKgpCqQK04cwqMY+s3aUyeq pnaWt7yrRGBW294yxCOLG/NzWqGdcBUnh3tkdBAa490FKz1wpviwwIJgxhvb31salDuGDb+ cNBA4+D12n7Jlp9oxsbcw== X-Spam-Flag: NO X-UI-Out-Filterresults: notjunk:1;V03:K0:Mvlh7lqfZB0=:38Yzvwb3qYomhNeI+98q56 Udxa0RyqxH8owuT36u/NGEhApcDmWTqPgCnlnDw89Zk9kJBo6rLhEygl2cWmpgmdAaJb4huwC e3aMMil85M5LvjZoawxQUXfnMMMfLexRcH3VTLaH4awKa0MhRIEksvBxnKVfaJBWFHzC8nPw2 nP9F3C8Y79nFewFnD25WgwypZP0/ukTuiYauK9xnhvZ1nuq2ziHwMUNbuAV5TUlzvAglK0G0v 1BTvaxv7qm9w0nZPxqQo7Q0W8dyP8HU0DCW6iu2XGwvgWgG7tkppqY7vZ01xB1iXeBXnsTY/B pwpMdy2sT7x2hIx4nRg5x/LgsfvQVUM6dZWQMXq6CDr0O18iwlpzr4puzOFAGvxasQmMO2YnA Uhlkkk3CIfkwmwh9C+eEIBZMM4oDZxGtROu8bPWkPsxBkwLfJDcG2V21ov0zDZnA14kLAu4gR oXVkTBkNafLx+AjX2G6g1tYWGRCkK6cf68x0ps7Lk3snvU1ImS2h00dbCzkWDh2eT9bcq1g3R eUlYXBFRLfaGxHU5yRVZqkronX8LYl0ldF6s0xDzCwyI9FU9pHy1kB5ln1d1BHue/IhXl81p0 94vrTS2R00lSJd86vYmUXe4Vpmwavr5FDX3me81LgqvG5HbCSKI1mRsxFjffxKp1rpiBBbxx3 IsYG6TuNoXDwFpzqdEWWoP/u8hyeLCZIGNkRlKJGaCfGYQpK9ivk4IG3b1na7P7QVm91hR+yJ cVynr9MskvhynUuCE6OdNWdV6NevXANEVHQ+QOlr8oismnP/6wdTOt4PkvvsGueyVrVm5MgcK am/U/t8WbFsTaQpan2Wb8JHHicLAhJGYHoMPuY3ImOR4LWVkjc7EI6LOOr4F6i2bnDM4QDjiP M2tbdijX4cGINaXBfmMw== X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 46056 Cc: gnunar@stoffe-pro.net, 46056@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 (-) Thomas Fitzsimmons writes: Hi Thomas, > Is this daily refresh already using incremental registration [1]? Is > performing incremental registration of each bug report as it is filed > infeasible? Don't know. This is rather a question to the debbugs people from the Debian project. > Thomas Best regards, Michael. From unknown Sun Jun 15 09:00:06 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 22 Feb 2021 12: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