Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/gforth/
Date: Sat, 17 Jul 2021 11:22:37
Message-Id: 1626520949.a05b147b84c2f3177f6d9524d0974b51e5741970.slyfox@gentoo
1 commit: a05b147b84c2f3177f6d9524d0974b51e5741970
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 17 11:21:36 2021 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 17 11:22:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a05b147b
7
8 dev-lang/gforth: drop old
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 dev-lang/gforth/gforth-0.7.3-r1.ebuild | 65 ----------------------------------
14 1 file changed, 65 deletions(-)
15
16 diff --git a/dev-lang/gforth/gforth-0.7.3-r1.ebuild b/dev-lang/gforth/gforth-0.7.3-r1.ebuild
17 deleted file mode 100644
18 index ddf2c89a40a..00000000000
19 --- a/dev-lang/gforth/gforth-0.7.3-r1.ebuild
20 +++ /dev/null
21 @@ -1,65 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit elisp-common
28 -
29 -DESCRIPTION="GNU Forth is a fast and portable implementation of the ANSI Forth language"
30 -HOMEPAGE="https://www.gnu.org/software/gforth"
31 -SRC_URI="mirror://gnu/gforth/${P}.tar.gz"
32 -
33 -LICENSE="GPL-3"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~ppc ~x86 ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris"
36 -IUSE="+check emacs"
37 -
38 -DEPEND="dev-libs/ffcall
39 - emacs? ( >=app-editors/emacs-23.1:* )"
40 -RDEPEND="${DEPEND}"
41 -
42 -SITEFILE="50${PN}-gentoo.el"
43 -
44 -PATCHES=(
45 - "${FILESDIR}"/${PN}-0.7.0-make-elc.patch
46 - "${FILESDIR}"/${PN}-0.7.3-rdynamic.patch
47 - "${FILESDIR}"/${PN}-0.7.3-rdynamic-auto.patch
48 -)
49 -
50 -src_prepare() {
51 - default
52 -
53 - # We patches both configure and configure.ac.
54 - # Avoid reruining aclocal.
55 - touch aclocal.m4 configure || die
56 -}
57 -
58 -src_configure() {
59 - econf \
60 - $(use emacs || echo "--without-lispdir") \
61 - $(use_with check)
62 -}
63 -
64 -src_compile() {
65 - # Parallel make breaks here
66 - emake -j1
67 -}
68 -
69 -src_install() {
70 - default
71 -
72 - dodoc AUTHORS BUGS ChangeLog NEWS* README* ToDo doc/glossaries.doc doc/*.ps
73 -
74 - if use emacs; then
75 - elisp-install ${PN} gforth.el gforth.elc
76 - elisp-site-file-install "${FILESDIR}/${SITEFILE}"
77 - fi
78 -}
79 -
80 -pkg_postinst() {
81 - use emacs && elisp-site-regen
82 -}
83 -
84 -pkg_postrm() {
85 - use emacs && elisp-site-regen
86 -}