ec16256079
- app-emacs/ement Matrix client for GNU Emacs - app-emacs/ement-extras My package; among other things, tries to make it easier to use E2EE - app-emacs/defmacro-gensym My package; dependency for app-emacs/ement-extras - app-emacs/plz Dependency for app-emacs/ement - app-emacs/ts Dependency for app-emacs/ement - net-im/pantalaimon Dependency for app-emacs/ement[e2e] net-im category is used because pantalaimon is a transparent proxy - dev-python/janus-0.5 Dependency for net-im/pantalaimon
31 lines
676 B
Bash
31 lines
676 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
NEED_EMACS="24.1"
|
|
|
|
inherit elisp-common git-r3
|
|
|
|
DESCRIPTION="Convenient gensyms for defmacro (Emacs Lisp)"
|
|
HOMEPAGE="https://gitlab.com/akater/defmacro-gensym/-/blob/master/defmacro-gensym.org"
|
|
EGIT_REPO_URI="https://gitlab.com/akater/defmacro-gensym.git"
|
|
EGIT_BRANCH="master"
|
|
|
|
LICENSE="Unlicense"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
DOCS="README.org"
|
|
|
|
export ORG_IMMUTABLE_SOURCES_DIRECTORY="${SITEETC}/${PN}"
|
|
|
|
pkg_postinst() {
|
|
elisp-site-regen
|
|
if declare -f readme.gentoo_print_elog >/dev/null; then
|
|
readme.gentoo_print_elog
|
|
fi
|
|
}
|
|
|
|
pkg_postrm() {
|
|
elisp-site-regen
|
|
}
|