app-emacs/vterm: drop old 0.0.2_p20230217

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2024-02-16 18:12:17 +01:00
parent 7d45b674a9
commit 2914d466b9
2 changed files with 0 additions and 78 deletions

View File

@@ -1,2 +1 @@
DIST vterm-0.0.2_p20230217.tar.gz 61049 BLAKE2B d974e8873b2f3074c23f797eb862734ed6af2caca2213c0cb972b92180567ea87e25a2d435d592dd7a2f236380fce0180b161490e506cffef24f11d25b38fbc6 SHA512 c13b79054d305e2ee73725d323a1409c8d0f9529b13c659a3e7d273dbaa79f09cde5d4e3097ed2b40b106b4fad0c5f465381e1a8337e9ffc21be0515e376c42a
DIST vterm-0.0.2_p20240102.tar.gz 61754 BLAKE2B 283730dbd1d826590111495c798bfdf78a1921c73ac6aba7f062590c775c2d99265f70cf915f486316837a28e97f0e6a0e3fca72aed74295fbfc807acd8c1a99 SHA512 74a6a789ffc2863eea7be6775761c65537812cb0a6c571334ae3958129ddd3e7bbe764812e4dfe2782194a3e92af6cc6d04e400ca94a2e73dfa38fa0b476eabc

View File

@@ -1,77 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN=emacs-libvterm
NEED_EMACS=26
inherit cmake elisp
DESCRIPTION="Fully-featured terminal emulator based on libvterm"
HOMEPAGE="https://github.com/akermu/emacs-libvterm/"
if [[ ${PV} == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/akermu/${MY_PN}.git"
else
if [[ ${PV} = *_p20230217 ]] ; then
COMMIT=3e5a9b754b8e61850bb7d1b63b090b9fbf6687f3
SRC_URI="https://github.com/akermu/${MY_PN}/archive/${COMMIT}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}"/${MY_PN}-${COMMIT}
else
SRC_URI="https://github.com/akermu/${MY_PN}/archive/${PV}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}"/${MY_PN}-${PV}
fi
KEYWORDS="amd64 ~arm64 ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
DEPEND=">=dev-libs/libvterm-0.2:="
RDEPEND="
${DEPEND}
>=app-editors/emacs-26:*[dynamic-loading]
"
PATCHES=( "${FILESDIR}"/${PN}-0.0.1_pre20210618-dont-compile.patch )
DOCS=( README.md )
SITEFILE="50${PN}-gentoo.el"
src_prepare() {
if [[ -e ${ESYSROOT}/usr/include/emacs-module.h ]] ; then
# Use system header file instead of bundled one.
rm emacs-module.h || die
else
ewarn "${ESYSROOT}/usr/include/emacs-module.h does not exist"
ewarn "Falling back to bundled header file"
fi
cmake_src_prepare
}
src_configure() {
local -a mycmakeargs=(
-DUSE_SYSTEM_LIBVTERM=ON
)
cmake_src_configure
}
src_compile() {
cmake_src_compile
elisp_src_compile
}
src_install() {
elisp_src_install
elisp-modules-install ${PN} vterm-module.so
# Install shell-side vterm support scripts.
insinto "${SITEETC}"/${PN}
doins -r etc
}