Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/pymacs/
Date: Thu, 28 May 2020 17:13:32
Message-Id: 1590685992.d3731aab29de7dee98b1df80fbee31e1376cc0a3.ulm@gentoo
1 commit: d3731aab29de7dee98b1df80fbee31e1376cc0a3
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 28 17:13:12 2020 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu May 28 17:13:12 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3731aab
7
8 app-emacs/pymacs: Remove old.
9
10 Package-Manager: Portage-2.3.100, Repoman-2.3.22
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 app-emacs/pymacs/pymacs-0.26.ebuild | 55 -------------------------------------
14 1 file changed, 55 deletions(-)
15
16 diff --git a/app-emacs/pymacs/pymacs-0.26.ebuild b/app-emacs/pymacs/pymacs-0.26.ebuild
17 deleted file mode 100644
18 index 729dc0e0a76..00000000000
19 --- a/app-emacs/pymacs/pymacs-0.26.ebuild
20 +++ /dev/null
21 @@ -1,55 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -PYTHON_COMPAT=( python3_6 )
27 -
28 -inherit elisp distutils-r1
29 -
30 -DESCRIPTION="A tool that allows both-side communication beetween Python and Emacs Lisp"
31 -HOMEPAGE="https://www.emacswiki.org/emacs/PyMacs"
32 -SRC_URI="https://github.com/dgentry/${PN^}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
33 -
34 -LICENSE="GPL-2+"
35 -SLOT="0"
36 -KEYWORDS="amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
37 -#IUSE="doc"
38 -
39 -#BDEPEND="doc? (
40 -# >=dev-python/docutils-0.7
41 -# virtual/latex-base
42 -# )"
43 -
44 -S="${WORKDIR}/${P^}"
45 -DISTUTILS_IN_SOURCE_BUILD=1
46 -SITEFILE="50${PN}-gentoo.el"
47 -
48 -python_prepare_all() {
49 - sed \
50 - -e '/pymacs-python-command/s/@PYTHON@/python/' \
51 - -i pymacs.el.in || die
52 - distutils-r1_python_prepare_all
53 -}
54 -
55 -# called by distutils-r1 for every python implementation
56 -python_configure() {
57 - # pre-process the files but don't run distutils
58 - emake PYSETUP=: PYTHON=${EPYTHON}
59 -}
60 -
61 -# called once
62 -python_compile_all() {
63 - elisp_src_compile
64 - # "pdflatex pymacs.tex" fails with "undefined control sequence"
65 - #if use doc; then
66 - # VARTEXFONTS="${T}"/fonts emake RST2LATEX=rst2latex.py pymacs.pdf
67 - #fi
68 -}
69 -
70 -python_install_all() {
71 - elisp_src_install
72 -
73 - distutils-r1_python_install_all
74 - dodoc pymacs.rst
75 - #use doc && dodoc pymacs.pdf
76 -}