Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/emacs:master commit in: app-editors/pemacs/
Date: Thu, 07 Apr 2022 07:40:58
Message-Id: 1649317092.fb51635c66f0905d78607cf9c43de3602f9d8878.ulm@gentoo
1 commit: fb51635c66f0905d78607cf9c43de3602f9d8878
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 7 07:38:12 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 7 07:38:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=fb51635c
7
8 app-editors/pemacs: Drop live version
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 app-editors/pemacs/pemacs-9999.ebuild | 39 -----------------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/app-editors/pemacs/pemacs-9999.ebuild b/app-editors/pemacs/pemacs-9999.ebuild
16 deleted file mode 100644
17 index b1d3db2..0000000
18 --- a/app-editors/pemacs/pemacs-9999.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 1999-2019 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -inherit toolchain-funcs
27 -
28 -if [[ ${PV} = 9999 ]]; then
29 - EGIT_REPO_URI="https://github.com/hughbarney/pEmacs.git"
30 - EGIT_CHECKOUT_DIR="${WORKDIR}/${PN}"
31 - inherit git-r3
32 -else
33 - # snapshot from git repo
34 - SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz"
35 -fi
36 -
37 -DESCRIPTION="Perfect Emacs, a small footprint Emacs derived from Ersatz Emacs"
38 -HOMEPAGE="https://github.com/hughbarney/pEmacs"
39 -
40 -LICENSE="public-domain"
41 -SLOT="0"
42 -
43 -RDEPEND="sys-libs/ncurses:0="
44 -DEPEND="${RDEPEND}
45 - virtual/pkgconfig"
46 -
47 -S="${WORKDIR}/${PN}"
48 -
49 -src_compile() {
50 - emake CC="$(tc-getCC)" \
51 - CFLAGS="${CFLAGS} -Wall" \
52 - LFLAGS="${LDFLAGS} $("$(tc-getPKG_CONFIG)" --libs ncurses)"
53 -}
54 -
55 -src_install() {
56 - dobin pe
57 - doman pe.1
58 - dodoc README.md
59 -}