summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2013-11-02 09:30:08 +0000
committerUlrich Müller <ulm@gentoo.org>2013-11-02 09:30:08 +0000
commitac59821512a3637515e159bb52f8a6e510126f1c (patch)
tree19e3edcb8730f3e74bf5822be59326fa7925ef78 /app-emacs/pymacs
parentUpdate to tarball-released version. (diff)
downloadgentoo-2-ac59821512a3637515e159bb52f8a6e510126f1c.tar.gz
gentoo-2-ac59821512a3637515e159bb52f8a6e510126f1c.tar.bz2
gentoo-2-ac59821512a3637515e159bb52f8a6e510126f1c.zip
Remove intermediate version.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'app-emacs/pymacs')
-rw-r--r--app-emacs/pymacs/ChangeLog5
-rw-r--r--app-emacs/pymacs/pymacs-0.24_beta2.ebuild47
2 files changed, 4 insertions, 48 deletions
diff --git a/app-emacs/pymacs/ChangeLog b/app-emacs/pymacs/ChangeLog
index b9bb5e151fc1..66541efb1a45 100644
--- a/app-emacs/pymacs/ChangeLog
+++ b/app-emacs/pymacs/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-emacs/pymacs
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/pymacs/ChangeLog,v 1.58 2013/09/05 19:44:55 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/pymacs/ChangeLog,v 1.59 2013/11/02 09:30:08 ulm Exp $
+
+ 02 Nov 2013; Ulrich Müller <ulm@gentoo.org> -pymacs-0.24_beta2.ebuild:
+ Remove intermediate version.
05 Sep 2013; Michał Górny <mgorny@gentoo.org> pymacs-0.25-r1.ebuild:
Clean up PYTHON_COMPAT from old implementations.
diff --git a/app-emacs/pymacs/pymacs-0.24_beta2.ebuild b/app-emacs/pymacs/pymacs-0.24_beta2.ebuild
deleted file mode 100644
index e17af67f2adc..000000000000
--- a/app-emacs/pymacs/pymacs-0.24_beta2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/pymacs/pymacs-0.24_beta2.ebuild,v 1.1 2011/10/07 20:58:00 ulm Exp $
-
-EAPI=3
-SUPPORT_PYTHON_ABIS=1
-
-inherit distutils elisp
-
-DESCRIPTION="A tool that allows both-side communication beetween Python and Emacs Lisp"
-HOMEPAGE="http://pymacs.progiciels-bpi.ca/"
-# taken from https://github.com/pinard/Pymacs/tarball/v0.24-beta2
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="doc"
-
-DEPEND="doc? ( >=dev-python/docutils-0.7
- virtual/latex-base )"
-RDEPEND=""
-
-SITEFILE="50${PN}-gentoo.el"
-
-src_unpack() {
- unpack ${A}
- mv pinard-Pymacs-* "${S}" || die
-}
-
-src_compile() {
- emake || die
- elisp-compile pymacs.el || die
- if use doc; then
- VARTEXFONTS="${T}"/fonts \
- emake RST2LATEX=rst2latex.py pymacs.pdf || die
- fi
-}
-
-src_install() {
- elisp_src_install
- distutils_src_install
- dodoc THANKS pymacs.rst || die
- if use doc; then
- dodoc pymacs.pdf || die
- fi
-}