Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/vterm/, app-emacs/vterm/files/
Date: Sat, 28 Jan 2023 09:12:14
Message-Id: 1674897108.2cdc6316197dac124be6890fcb877afd1a01af5d.asturm@gentoo
1 commit: 2cdc6316197dac124be6890fcb877afd1a01af5d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 27 21:10:02 2023 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 28 09:11:48 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cdc6316
7
8 app-emacs/vterm: drop 0.0.1_pre20200713
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 app-emacs/vterm/Manifest | 1 -
13 .../vterm-0.0.1_pre20200713-dont-compile.patch | 22 -----------
14 app-emacs/vterm/vterm-0.0.1_pre20200713.ebuild | 45 ----------------------
15 3 files changed, 68 deletions(-)
16
17 diff --git a/app-emacs/vterm/Manifest b/app-emacs/vterm/Manifest
18 index 4203d99f8a41..57d351fb7272 100644
19 --- a/app-emacs/vterm/Manifest
20 +++ b/app-emacs/vterm/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST vterm-0.0.1_pre20200713.tar.gz 48160 BLAKE2B 96c45ddb139d19f3020d7a8eebc1ee31a7dc098f47c16cfffc7bf3327261a4366763744a8158d3c8a066ec94be4966a5ef78804db95c9025eee06fb8c9e4aa76 SHA512 17726ad0957daeab2a87b398bfa24dbe3c4c48dfba932138a71cd8c992bf20bd2925a7118a89247bbd674dbecd7fda8663c564a278168bb207034efb03e50cd0
23 DIST vterm-0.0.1_pre20210618.tar.gz 58389 BLAKE2B 71221d470e01d647093e3a3af0c57b416ef23e81ff4d783d032613e19f1d467752fea0d242ea0f72092e3cdabbdb88ba15a840d9e4116cf5aa95d54a020efe0d SHA512 9e23eff1c9c5d2cc8e970bb4d9910b3e0258987d09b765ece188641ff5e2696e30d59a409f45253f243162b8e71c0ea301049ff37c93ffec1e1c25206ca9c5d2
24 DIST vterm-0.0.2_p20221118.tar.gz 60288 BLAKE2B a86e2a79457eb02212402a3054bd867af38caf2c52e1d2fd21cbd7a665f2383909ef99fa6291c9e0a6d9841d65dfbda175937bf219ec7e1e8fb8bd1c5add300e SHA512 1825ef38afc2d4144611b81c49c64b5271bc58cd96f6d3bdc6869d2d9c7cc7785864621035e3e787f7c2c0634672806ba217f3c3d589dfc342d59bd5480f96a1
25
26 diff --git a/app-emacs/vterm/files/vterm-0.0.1_pre20200713-dont-compile.patch b/app-emacs/vterm/files/vterm-0.0.1_pre20200713-dont-compile.patch
27 deleted file mode 100644
28 index 6b08ae812360..000000000000
29 --- a/app-emacs/vterm/files/vterm-0.0.1_pre20200713-dont-compile.patch
30 +++ /dev/null
31 @@ -1,22 +0,0 @@
32 -Simply error out if the module is not found. Don't confuse the user
33 -with messages about compiling the module, which won't work outside of
34 -the package's source tree.
35 -
36 ---- a/vterm.el
37 -+++ b/vterm.el
38 -@@ -121,14 +121,7 @@
39 - (message "Compilation of `emacs-libvterm' module succeeded")
40 - (error "Compilation of `emacs-libvterm' module failed!")))))
41 -
42 --;; If the vterm-module is not compiled yet, compile it
43 --(unless (require 'vterm-module nil t)
44 -- (if (or vterm-always-compile-module
45 -- (y-or-n-p "Vterm needs `vterm-module' to work. Compile it now? "))
46 -- (progn
47 -- (vterm-module-compile)
48 -- (require 'vterm-module))
49 -- (error "Vterm will not work until `vterm-module' is compiled!")))
50 -+(require 'vterm-module)
51 -
52 - ;; Silence compiler warnings by informing it of what functions are defined
53 - (declare-function display-line-numbers-update-width "display-line-numbers")
54
55 diff --git a/app-emacs/vterm/vterm-0.0.1_pre20200713.ebuild b/app-emacs/vterm/vterm-0.0.1_pre20200713.ebuild
56 deleted file mode 100644
57 index b3df66ead641..000000000000
58 --- a/app-emacs/vterm/vterm-0.0.1_pre20200713.ebuild
59 +++ /dev/null
60 @@ -1,45 +0,0 @@
61 -# Copyright 1999-2021 Gentoo Authors
62 -# Distributed under the terms of the GNU General Public License v2
63 -
64 -EAPI=7
65 -NEED_EMACS=26
66 -COMMIT="f41849c2c9c1899f22d1c3d4f871ec47c82627ce"
67 -
68 -inherit cmake elisp
69 -
70 -MY_PN="emacs-libvterm"
71 -DESCRIPTION="Fully-featured terminal emulator based on libvterm"
72 -HOMEPAGE="https://github.com/akermu/emacs-libvterm"
73 -SRC_URI="https://github.com/akermu/${MY_PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
74 -
75 -LICENSE="GPL-3+"
76 -SLOT="0"
77 -KEYWORDS="~amd64 ~arm64 ~x86"
78 -
79 -DEPEND="dev-libs/libvterm"
80 -RDEPEND="${DEPEND}
81 - >=app-editors/emacs-26:*[dynamic-loading]"
82 -
83 -S="${WORKDIR}/${MY_PN}-${COMMIT}"
84 -PATCHES=( "${FILESDIR}"/${P}-dont-compile.patch )
85 -SITEFILE="50${PN}-gentoo.el"
86 -DOCS="README.md"
87 -
88 -src_prepare() {
89 - cmake_src_prepare
90 -}
91 -
92 -src_configure() {
93 - local mycmakeargs=( "-DUSE_SYSTEM_LIBVTERM=ON" )
94 - cmake_src_configure
95 -}
96 -
97 -src_compile() {
98 - cmake_src_compile
99 - elisp_src_compile
100 -}
101 -
102 -src_install() {
103 - elisp_src_install
104 - elisp-modules-install ${PN} vterm-module.so
105 -}