Your message dated Wed, 12 Mar 2025 03:24:45 +0000 with message-id <[email protected]> and subject line Bug#1099411: Removed package(s) from unstable has caused the Debian Bug report #513495, regarding crypt++el: broken crypt-encryption-type-get function to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 513495: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=513495 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: crypt++el Version: 2.94-1 Severity: normal The reason that crypt++el does not ever notice file extensions is because its file extension function is broken: (defun crypt-encryption-type-get (file) "Determine type of encryption from file extension." (let (ret regexp) (dolist (elt crypt-encryption-alist) (setq regexp (nth 3 elt)) (if (and (stringp regexp) (string-match regexp file)) (nth 0 elt))))) Do you see the problem? The (if ...) statement has no effect; even if the filename matches the regular expression, it just computes a value, then throws it out and lets the (dolist ...) loop continue to execute. To make the function actually stop with the answer about what kind of file I've just opened, the function's last line needs to be changed to: (return (nth 0 elt)))))) I've just tested this on my Debian unstable box, with emacs 22.2+2-5, and it makes crypt++.el start working just fine. Or, at least, it works fine for everything I use it for. :-)
--- End Message ---
--- Begin Message ---Version: 2.94-3.2+rm Dear submitter, as the package crypt++el has just been removed from the Debian archive unstable we hereby close the associated bug reports. We are sorry that we couldn't deal with your issue properly. For details on the removal, please see https://bugs.debian.org/1099411 The version of this package that was in Debian prior to this removal can still be found using https://snapshot.debian.org/. Please note that the changes have been done on the master archive and will not propagate to any mirrors until the next dinstall run at the earliest. This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]. Debian distribution maintenance software pp. Paul Tagliamonte (the ftpmaster behind the curtain)
--- End Message ---

