unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Alex <agrambot@gmail.com>
To: npostavs@users.sourceforge.net
Cc: Sebastian Wiesner <lunaryorn@gmail.com>,
	Stefan Monnier <monnier@iro.umontreal.ca>,
	14967@debbugs.gnu.org
Subject: bug#14967: 24.3.50; package-delete deletes by trashing?
Date: Sun, 11 Jun 2017 21:26:20 -0600	[thread overview]
Message-ID: <87o9tt51k3.fsf@gmail.com> (raw)
In-Reply-To: <87efuqulfb.fsf@users.sourceforge.net> (npostavs@users.sourceforge.net's message of "Sun, 11 Jun 2017 19:58:00 -0400")

[-- Attachment #1: Type: text/plain, Size: 746 bytes --]

npostavs@users.sourceforge.net writes:

> severity 14967 wishlist
> quit
>
> Alex <agrambot@gmail.com> writes:
>
>> Stefan Monnier <monnier@iro.umontreal.ca> writes:
>>
>>>> Well, obviously I consider this behavior a bug.  Trash is no place for
>>>> deleted packages.  I mean, does apt-get remove use the Trash?!
>>>
>>> I think the reasoning goes as follows:
>>> Emacs uses "trash" when deleting a file upon the user's request (as
>>> opposed to things like temp files used internally).
>>
>> Could there perhaps be a separate configuration option for deleting
>> packages versus trashing them? I usually like Emacs using the trash, but
>> I don't see a reason why packages should go there myself.
>
> Seems reasonable.

Here's a patch for it.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: patch --]
[-- Type: text/x-diff, Size: 2022 bytes --]

From cf3039f10846155fde224a1f6c249799ab7cf41d Mon Sep 17 00:00:00 2001
From: Alexander Gramiak <agrambot@gmail.com>
Date: Sun, 11 Jun 2017 21:12:24 -0600
Subject: [PATCH] Make package-delete conditionally not use the trash

Some users would like to trash other files, but not old package
files (Bug#14967).

* lisp/emacs-lisp/package.el: Add `package-trash-old-packages'.
* etc/NEWS: Document it.
---
 etc/NEWS                   | 3 +++
 lisp/emacs-lisp/package.el | 7 ++++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/etc/NEWS b/etc/NEWS
index 7972511f7a..fa1e5c1312 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -743,6 +743,9 @@ header's value.
 where the GnuPG home directory (used for signature verification) is
 located and whether GnuPG's option "--homedir" is used or not.
 
+*** The new variable 'package-trash-old-packages' has been added to
+control whether or not 'package-delete' trashes old packages files.
+
 ** Tramp
 
 +++
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index bebfd18d7a..5173a32e33 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -2071,6 +2071,11 @@ package--newest-p
   (equal (cadr (assq (package-desc-name pkg) package-alist))
          pkg))
 
+(defvar package-trash-old-packages t
+  "If non-nil, `package-delete' may trash packages.
+`delete-by-moving-to-trash' must be non-nil for this variable to
+have an effect.")
+
 (defun package-delete (pkg-desc &optional force nosave)
   "Delete package PKG-DESC.
 
@@ -2127,7 +2132,7 @@ package-delete
                   (package-desc-name pkg-used-elsewhere-by)))
           (t
            (add-hook 'post-command-hook #'package-menu--post-refresh)
-           (delete-directory dir t t)
+           (delete-directory dir t package-trash-old-packages)
            ;; Remove NAME-VERSION.signed and NAME-readme.txt files.
            (dolist (suffix '(".signed" "readme.txt"))
              (let* ((version (package-version-join (package-desc-version pkg-desc)))
-- 
2.11.0


  reply	other threads:[~2017-06-12  3:26 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-27 10:30 bug#14967: 24.3.50; package-delete deletes by trashing? Sebastian Wiesner
2013-07-29 22:02 ` Glenn Morris
2013-07-30 10:51   ` Sebastian Wiesner
2013-07-30 14:21     ` Stefan Monnier
2013-07-30 14:40       ` Sebastian Wiesner
2013-07-30 15:14         ` Stefan Monnier
2016-08-05 23:40           ` npostavs
2016-09-03  4:06       ` Alex
2017-06-11 23:58         ` npostavs
2017-06-12  3:26           ` Alex [this message]
2017-06-12 14:27             ` Eli Zaretskii
2017-06-12 16:03               ` Glenn Morris
2017-06-12 16:33                 ` Eli Zaretskii
2017-06-12 16:56                   ` Glenn Morris
2017-06-12 17:02                     ` Stefan Monnier
2017-06-14  2:54                       ` Richard Stallman
2017-06-12 17:04                     ` Eli Zaretskii
2017-06-12 17:17                       ` Stefan Monnier
2017-06-12 19:45                         ` Alex
2017-06-12 20:32                           ` Glenn Morris
2017-06-13  3:50                             ` Alex
2017-06-19 18:47                             ` Glenn Morris
2017-06-12 19:37               ` Alex

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87o9tt51k3.fsf@gmail.com \
    --to=agrambot@gmail.com \
    --cc=14967@debbugs.gnu.org \
    --cc=lunaryorn@gmail.com \
    --cc=monnier@iro.umontreal.ca \
    --cc=npostavs@users.sourceforge.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).