summaryrefslogtreecommitdiff
path: root/app-emacs/wgrep
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/wgrep
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'app-emacs/wgrep')
-rw-r--r--app-emacs/wgrep/Manifest1
-rw-r--r--app-emacs/wgrep/metadata.xml17
-rw-r--r--app-emacs/wgrep/wgrep-3.0.0-r1.ebuild54
3 files changed, 0 insertions, 72 deletions
diff --git a/app-emacs/wgrep/Manifest b/app-emacs/wgrep/Manifest
deleted file mode 100644
index 1db21b5c70ed..000000000000
--- a/app-emacs/wgrep/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST wgrep-3.0.0.tar.gz 29569 BLAKE2B 0113c790e9903840e8dd421def45bc73b914b61d9beb7b178275efb623d735cdadcc3d96c361a88a293f437d906528d84c3876be5aee46caad22f0743ed40549 SHA512 8e93e824bafe8b9018e82d5fb57104c2324df62798214d848ff98bb86865d4a8e56df1e4efede49966555cb9af5059699c2d178722d8462ddc5977a5abd3d799
diff --git a/app-emacs/wgrep/metadata.xml b/app-emacs/wgrep/metadata.xml
deleted file mode 100644
index 6c86ecd36fd8..000000000000
--- a/app-emacs/wgrep/metadata.xml
+++ /dev/null
@@ -1,17 +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>
- <longdescription>
- wgrep allows you to edit a grep buffer and apply those changes to
- the file buffer like sed interactively.
-</longdescription>
- <stabilize-allarches />
- <upstream>
- <bugs-to>https://github.com/mhayashi1120/Emacs-wgrep/issues/</bugs-to>
- </upstream>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/app-emacs/wgrep/wgrep-3.0.0-r1.ebuild b/app-emacs/wgrep/wgrep-3.0.0-r1.ebuild
deleted file mode 100644
index faa1f678441e..000000000000
--- a/app-emacs/wgrep/wgrep-3.0.0-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp readme.gentoo-r1
-
-DESCRIPTION="Writable grep buffer and apply the changes to files"
-HOMEPAGE="https://github.com/mhayashi1120/Emacs-wgrep/"
-SRC_URI="https://github.com/mhayashi1120/Emacs-${PN}/archive/${PV}.tar.gz
- -> ${P}.tar.gz"
-S="${WORKDIR}"/Emacs-${P}
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- test? (
- app-emacs/s
- app-emacs/dash
- )
-"
-
-ELISP_REMOVE="${PN}-subtest.el"
-
-DOCS=( README.md )
-DOC_CONTENTS="See commentary in ${SITELISP}/${PN}/wgrep.el for documentation.
- \n\nTo activate wgrep, add the following line to your ~/.emacs file:
- \n\t(require 'wgrep)"
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
- if ! use test ; then
- rm ${PN}-test.el || die
- fi
-
- elisp_src_prepare
-}
-
-src_test() {
- ${EMACS} ${EMACSFLAGS} -L . -l ${PN}.el -l ${PN}-test.el \
- -f ert-run-tests-batch-and-exit || die "tests failed"
-}
-
-src_install() {
- if use test ; then
- rm ${PN}-test.el{,c} || die
- fi
-
- elisp_src_install
-}