diff options
author | Ulrich Müller <ulm@gentoo.org> | 2023-11-29 18:07:21 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-11-29 18:08:11 +0100 |
commit | 0c28677d9827c9c3092ec64fcc5e08c176e90032 (patch) | |
tree | 9779e782bd6d7bbb0873b8feb79094e3a68cc5da /app-emacs/pinentry | |
parent | app-emacs/pinentry: add 0.1_p20231126 (diff) | |
download | gentoo-0c28677d9827c9c3092ec64fcc5e08c176e90032.tar.gz gentoo-0c28677d9827c9c3092ec64fcc5e08c176e90032.tar.bz2 gentoo-0c28677d9827c9c3092ec64fcc5e08c176e90032.zip |
app-emacs/pinentry: drop 0.1_p20170913
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-emacs/pinentry')
-rw-r--r-- | app-emacs/pinentry/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/pinentry/files/pinentry-emacs-29.patch | 32 | ||||
-rw-r--r-- | app-emacs/pinentry/pinentry-0.1_p20170913.ebuild | 20 |
3 files changed, 0 insertions, 53 deletions
diff --git a/app-emacs/pinentry/Manifest b/app-emacs/pinentry/Manifest index 3bcb4e58bdc1..79e620bb4672 100644 --- a/app-emacs/pinentry/Manifest +++ b/app-emacs/pinentry/Manifest @@ -1,2 +1 @@ -DIST pinentry-0.1_p20170913.el.xz 4792 BLAKE2B b2c301720a42f43ad5d1986c427e972cfb197d98bd5bd878106a591e1d54800843f3e607c8d6933bd50b695ae8447d8d2aed772615846a5ce5acf6a67c009a8a SHA512 d582328e64abcc8ef964b4e4b136b9814ecc92edc930a922012809313f7dfdbf407890f9592d37b784f50fda44cf8acf5500881cf33966a1160c8496c201ac33 DIST pinentry-0.1_p20231126.tar.gz 5247 BLAKE2B cfc47b8444b211053148476dbfceb9c151323a5dec23f783f18aed85c7e248ac551a63f723dc69ee2929a76fed19a7cfe2cc721eb64a7115674d46f0d0c03f00 SHA512 bdb3ab192800ef817fd07cab77f7fccfd699165224e6df5b7d7099e712a1beca99c5d20388ff6b16edd1217c35da9a0f8ef2be4e1f8e72bbd8fd9b360c68e584 diff --git a/app-emacs/pinentry/files/pinentry-emacs-29.patch b/app-emacs/pinentry/files/pinentry-emacs-29.patch deleted file mode 100644 index e737a81538aa..000000000000 --- a/app-emacs/pinentry/files/pinentry-emacs-29.patch +++ /dev/null @@ -1,32 +0,0 @@ -Fix byte-compile warnings in Emacs 29. -Drop cl-lib which was needed only for cl-letf. - ---- a/pinentry.el -+++ b/pinentry.el -@@ -49,8 +49,6 @@ - - ;;; Code: - --(eval-when-compile (require 'cl-lib)) -- - (defgroup pinentry nil - "The Pinentry server" - :version "25.1" -@@ -92,7 +90,7 @@ - - ;; These error codes are defined in libgpg-error/src/err-codes.h.in. - (defmacro pinentry--error-code (code) -- (logior (lsh 5 24) code)) -+ (logior (ash 5 24) code)) - (defconst pinentry--error-not-implemented - (cons (pinentry--error-code 69) "not implemented")) - (defconst pinentry--error-cancelled -@@ -174,7 +172,7 @@ - (ignore-errors - (let (delete-by-moving-to-trash) - (delete-file server-file))) -- (cl-letf (((default-file-modes) ?\700)) -+ (with-file-modes ?\700 - (setq pinentry--server-process - (make-network-process - :name "pinentry" diff --git a/app-emacs/pinentry/pinentry-0.1_p20170913.ebuild b/app-emacs/pinentry/pinentry-0.1_p20170913.ebuild deleted file mode 100644 index d54a5aa04a34..000000000000 --- a/app-emacs/pinentry/pinentry-0.1_p20170913.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit elisp readme.gentoo-r1 - -DESCRIPTION="GnuPG Pinentry server implementation for Emacs" -HOMEPAGE="https://www.emacswiki.org/emacs/EasyPG" -# taken from lisp/net/pinentry.el in GNU Emacs repo (commit bc511a64f6da) -SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.el.xz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" - -RDEPEND="app-crypt/pinentry[emacs]" - -PATCHES=( "${FILESDIR}"/${PN}-emacs-29.patch ) -SITEFILE="50${PN}-gentoo.el" |