Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/pymacs/
Date: Sat, 30 Sep 2017 03:14:51
Message-Id: 1506741277.67544df2ff115da1423aa7fb52c38e471a9fbbe4.kensington@gentoo
1 commit: 67544df2ff115da1423aa7fb52c38e471a9fbbe4
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 30 03:14:24 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 30 03:14:37 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67544df2
7
8 app-emacs/pymacs: remove 0.25-r1
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 app-emacs/pymacs/pymacs-0.25-r1.ebuild | 44 ----------------------------------
13 1 file changed, 44 deletions(-)
14
15 diff --git a/app-emacs/pymacs/pymacs-0.25-r1.ebuild b/app-emacs/pymacs/pymacs-0.25-r1.ebuild
16 deleted file mode 100644
17 index f95fc39af8c..00000000000
18 --- a/app-emacs/pymacs/pymacs-0.25-r1.ebuild
19 +++ /dev/null
20 @@ -1,44 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -PYTHON_COMPAT=( python{2_7,3_4} )
26 -
27 -inherit elisp distutils-r1 vcs-snapshot
28 -
29 -DESCRIPTION="A tool that allows both-side communication beetween Python and Emacs Lisp"
30 -HOMEPAGE="http://www.emacswiki.org/emacs/PyMacs"
31 -SRC_URI="https://github.com/pinard/Pymacs/tarball/v${PV} -> ${P}.tar.gz"
32 -
33 -LICENSE="GPL-2+"
34 -SLOT="0"
35 -KEYWORDS="amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
36 -IUSE="doc"
37 -
38 -DEPEND="doc? ( >=dev-python/docutils-0.7
39 - virtual/latex-base )"
40 -RDEPEND=""
41 -
42 -DISTUTILS_IN_SOURCE_BUILD=1
43 -SITEFILE="50${PN}-gentoo.el"
44 -
45 -# called by distutils-r1 for every python implementation
46 -python_configure() {
47 - # pre-process the files but don't run distutils
48 - emake PYSETUP=: PYTHON=${EPYTHON}
49 -}
50 -
51 -# called once
52 -python_compile_all() {
53 - elisp_src_compile
54 - if use doc; then
55 - VARTEXFONTS="${T}"/fonts emake RST2LATEX=rst2latex.py pymacs.pdf
56 - fi
57 -}
58 -
59 -python_install_all() {
60 - elisp_src_install
61 - distutils-r1_python_install_all
62 - dodoc pymacs.rst
63 - use doc && dodoc pymacs.pdf
64 -}