app-emacs/embark: bump to 1.2

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2026-04-11 23:29:08 +02:00
parent bb252f949f
commit ae1c40cfd8
2 changed files with 55 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST embark-1.1.tar.gz 115762 BLAKE2B 69fc4005b901dcfd85ad124dc449048a13223277683eba7c5c873cd8050883ab53b4c3716670894e146da9c40c1789eafff3df4d00eb0ee46a8dab4c165f01ab SHA512 29c87eaf3275428cfbd442de3a09d7a126094bc90bb1b1c34f476caf11cd3da21ce9368ef7d1855732250a85b269b01effcd514da10e1e491ecb3bdc61efd750
DIST embark-1.2.gh.tar.gz 118145 BLAKE2B a65574587bf227078f975c576fefabc4c3ecf94287bd15b8b67abca78e8a6019e8179b68ede9c2c36f030be74e548ecc5fee80e424810cd02473dd0a1da3c0e5 SHA512 4f7000a5abe2ab624abd6e183ee5a5ff73f5d88d84a36ef79ad2b226124906d51393a1f62a9359870e1205ba048db77292b5adab42f207ea0a2a3437bda85cfb

View File

@@ -0,0 +1,54 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
NEED_EMACS="27.1"
inherit elisp optfeature
DESCRIPTION="Conveniently act on minibuffer completions inside GNU Emacs"
HOMEPAGE="https://github.com/oantolin/embark/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/oantolin/${PN}"
else
SRC_URI="https://github.com/oantolin/${PN}/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
RDEPEND="
>=app-emacs/compat-29.1.4.0
"
BDEPEND="
${RDEPEND}
"
ELISP_REMOVE="avy-embark-collect.el embark-consult.el"
DOCS=( README.org )
SITEFILE="50${PN}-gentoo.el"
src_compile() {
elisp_src_compile
elisp-make-autoload-file
}
src_install() {
elisp_src_install
doinfo ${PN}.texi
}
pkg_postinst() {
elisp_pkg_postinst
optfeature "Avy integration for Embark" app-emacs/avy-embark-collect
optfeature "Consult integration for Embark" app-emacs/embark-consult
}