diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-04-18 20:01:56 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-04-18 21:31:43 +0200 |
commit | cc5a86b0445438a16ec29727d95ae1390f5d6252 (patch) | |
tree | 550784cd8007131e12656270bcc87c527e75649f /app-emacs | |
parent | app-admin/xkcdpass: remove unused patch(es) (diff) | |
download | gentoo-cc5a86b0445438a16ec29727d95ae1390f5d6252.tar.gz gentoo-cc5a86b0445438a16ec29727d95ae1390f5d6252.tar.bz2 gentoo-cc5a86b0445438a16ec29727d95ae1390f5d6252.zip |
app-emacs/package-lint: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/package-lint/files/package-lint-symbol-info-data-directory.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/app-emacs/package-lint/files/package-lint-symbol-info-data-directory.patch b/app-emacs/package-lint/files/package-lint-symbol-info-data-directory.patch deleted file mode 100644 index 1b8644976721..000000000000 --- a/app-emacs/package-lint/files/package-lint-symbol-info-data-directory.patch +++ /dev/null @@ -1,26 +0,0 @@ -index 2ecaef5..8178375 100644 ---- a/package-lint.el -+++ b/package-lint.el -@@ -106,13 +106,15 @@ a backport library shipping the feature and VERSION is an - optional minimum version containing the feature.") - - (defconst package-lint-symbol-info -- (let* ((stdlib-changes (with-temp-buffer -- (insert-file-contents -- (expand-file-name "data/stdlib-changes" -- (if load-file-name -- (file-name-directory load-file-name) -- default-directory))) -- (read (current-buffer)))) -+ (let* ((stdlib-changes -+ (with-temp-buffer -+ (insert-file-contents -+ (let ((siteetc-stdlib-changes -+ (expand-file-name "data/stdlib-changes" "@SITEETC@"))) -+ (if (file-exists-p siteetc-stdlib-changes) -+ siteetc-stdlib-changes -+ (expand-file-name "data/stdlib-changes" default-directory)))) -+ (read (current-buffer)))) - (info (make-hash-table))) - (pcase-dolist (`(,version . ,data) stdlib-changes) - (pcase-dolist (`(,syms . ,action) |