From b6aab8d4f274e8b3535b2af5915eadd6371cd137 Mon Sep 17 00:00:00 2001 Message-ID: From: Rostislav Svoboda Date: Thu, 31 Oct 2024 14:11:04 +0100 Subject: [PATCH 1/2] gnu: Strip unnecessary clutter from emacs-popwin. * gnu/packages/emacs-xyz.scm (emacs-popwin): Remove redundant '#:tests? #f' and unnecessary `emacs-ert-runner` from native inputs. Change-Id: I684edc52c83221e8fe407d7c1fbc107cb4721da7 --- gnu/packages/emacs-xyz.scm | 46 ++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 24 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 488b4cb5d7..3f72c1fd18 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -15770,32 +15770,30 @@ (define-public emacs-find-file-in-project (license license:gpl3+))) (define-public emacs-popwin - (package - (name "emacs-popwin") - (version "1.0.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/emacsorphanage/popwin") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x1iimzbwb5izbia6aj6xv49jybzln2qxm5ybcrcq7xync5swiv1")))) - (build-system emacs-build-system) - (arguments - (list - #:tests? #f ; requires an attached terminal - )) - (native-inputs - (list emacs-ert-runner)) - (home-page "https://github.com/emacsorphanage/popwin") - (synopsis "Popup window manager for Emacs") - (description - "This package provides utilities for treating certain windows as @dfn{pop + (let ((commit "215d6cb509b11c63394a20666565cd9e9b2c2eab") + (revision "1")) + (package + (name "emacs-popwin") + (version (git-version "1.0.2" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacsorphanage/popwin") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1x1iimzbwb5izbia6aj6xv49jybzln2qxm5ybcrcq7xync5swiv1")))) + (build-system emacs-build-system) + ;; Testing this package requires an attached terminal and possibly + ;; emacs-ert-runner among its native inputs. + (home-page "https://github.com/emacsorphanage/popwin") + (synopsis "Popup window manager for Emacs") + (description + "This package provides utilities for treating certain windows as @dfn{pop up windows}, which close automatically when quitting a command or selecting another window.") - (license license:gpl3+))) + (license license:gpl3+)))) (define-public emacs-pyvenv (package base-commit: cd9ac7d96b3634a7e1ec8da988dd3ac2dd186018 -- 2.46.0