summaryrefslogtreecommitdiff
path: root/app-emacs/with-simulated-input
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /app-emacs/with-simulated-input
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'app-emacs/with-simulated-input')
-rw-r--r--app-emacs/with-simulated-input/Manifest1
-rw-r--r--app-emacs/with-simulated-input/metadata.xml21
-rw-r--r--app-emacs/with-simulated-input/with-simulated-input-3.0.ebuild27
3 files changed, 0 insertions, 49 deletions
diff --git a/app-emacs/with-simulated-input/Manifest b/app-emacs/with-simulated-input/Manifest
deleted file mode 100644
index 7b7d7dde3c4f..000000000000
--- a/app-emacs/with-simulated-input/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST with-simulated-input-3.0.tar.gz 26203 BLAKE2B 2629f28449a71828f67209b84123ee11b9eb838884560836129830f1c6e0dc12e95ba56e806de5eae8b29cbe1b3f199f9a9e292a2f048483b61a64aa138d2848 SHA512 ddb916e51e8f1da76a19a440f0a629ece6e27969be38b70d8b5156ab7c41084ef9a099970e2c74a680e0cdf75463698e60336fcd168f82d62acd1e0994d6897a
diff --git a/app-emacs/with-simulated-input/metadata.xml b/app-emacs/with-simulated-input/metadata.xml
deleted file mode 100644
index 81e8e76653a0..000000000000
--- a/app-emacs/with-simulated-input/metadata.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>gnu-emacs@gentoo.org</email>
- <name>Gentoo GNU Emacs project</name>
- </maintainer>
- <upstream>
- <bugs-to>https://github.com/DarwinAwardWinner/with-simulated-input/issues/</bugs-to>
- </upstream>
- <longdescription>
- This package provides an Emacs Lisp macro, with-simulated-input, which
- evaluates one or more forms while simulating a sequence of input events for
- those forms to read. The result is the same as if you had evaluated the
- forms and then manually typed in the same input. This macro is useful for
- non-interactive testing of normally interactive commands and functions,
- such as completing-read.
- </longdescription>
- <stabilize-allarches />
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/app-emacs/with-simulated-input/with-simulated-input-3.0.ebuild b/app-emacs/with-simulated-input/with-simulated-input-3.0.ebuild
deleted file mode 100644
index 325ce2045ec9..000000000000
--- a/app-emacs/with-simulated-input/with-simulated-input-3.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp
-
-DESCRIPTION="Emacs Lisp macro to simulate user input non-interactively"
-HOMEPAGE="https://github.com/DarwinAwardWinner/with-simulated-input/"
-SRC_URI="https://github.com/DarwinAwardWinner/${PN}/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-KEYWORDS="amd64 ~x86"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="test? ( app-emacs/buttercup )"
-
-DOCS=( README.md )
-ELISP_REMOVE="tests/test-${PN}.el" # Remove failing tests; 11/49 specs
-SITEFILE="50${PN}-gentoo.el"
-
-src_test() {
- buttercup -L . -L tests --traceback full tests || die
-}