summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-01-26 13:13:01 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-01-26 13:13:01 +0000
commit8c081f8b0b935205305b3f505943a7a232adccbc (patch)
tree208a59234c9189921ce8007768e01c721fa2cdf5 /dev-python/ropemacs
parentdev-haskell/boxes: minor bump (diff)
downloadgentoo-2-8c081f8b0b935205305b3f505943a7a232adccbc.tar.gz
gentoo-2-8c081f8b0b935205305b3f505943a7a232adccbc.tar.bz2
gentoo-2-8c081f8b0b935205305b3f505943a7a232adccbc.zip
Remove old.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-python/ropemacs')
-rw-r--r--dev-python/ropemacs/ChangeLog9
-rw-r--r--dev-python/ropemacs/files/ropemacs-0.6-ropemode-dir.patch11
-rw-r--r--dev-python/ropemacs/ropemacs-0.6.ebuild47
3 files changed, 6 insertions, 61 deletions
diff --git a/dev-python/ropemacs/ChangeLog b/dev-python/ropemacs/ChangeLog
index dbdde4eeaa81..a41f58b2a18d 100644
--- a/dev-python/ropemacs/ChangeLog
+++ b/dev-python/ropemacs/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/ropemacs
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ropemacs/ChangeLog,v 1.3 2014/05/13 16:40:20 ulm Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/ropemacs/ChangeLog,v 1.4 2015/01/26 13:13:01 mrueg Exp $
+
+ 26 Jan 2015; Manuel Rüger <mrueg@gentoo.org>
+ -files/ropemacs-0.6-ropemode-dir.patch, -ropemacs-0.6.ebuild:
+ Remove old.
*ropemacs-0.7 (13 May 2014)
@@ -16,4 +20,3 @@
+files/ropemacs-0.6-ropemode-dir.patch, +metadata.xml:
Initial import. Ebuild contributed by Yang Zhang <zyangmath@gmail.com> in
bug 338553.
-
diff --git a/dev-python/ropemacs/files/ropemacs-0.6-ropemode-dir.patch b/dev-python/ropemacs/files/ropemacs-0.6-ropemode-dir.patch
deleted file mode 100644
index 496841c388ff..000000000000
--- a/dev-python/ropemacs/files/ropemacs-0.6-ropemode-dir.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- ropemacs-orig/setup.py
-+++ ropemacs/setup.py
-@@ -23,7 +23,7 @@
- version='0.6',
- description='An emacs mode for using rope python refactoring library',
- long_description=get_long_description(),
-- packages=['ropemode', 'ropemacs'],
-+ packages=['ropemacs'],
- author='Ali Gholami Rudi',
- author_email='aligrudi@users.sourceforge.net',
- url='http://rope.sf.net/ropemacs.html',
diff --git a/dev-python/ropemacs/ropemacs-0.6.ebuild b/dev-python/ropemacs/ropemacs-0.6.ebuild
deleted file mode 100644
index 07af62cd7031..000000000000
--- a/dev-python/ropemacs/ropemacs-0.6.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/ropemacs/ropemacs-0.6.ebuild,v 1.2 2010/10/08 11:28:59 hwoarang Exp $
-
-EAPI="3"
-
-PYTHON_DEPEND="2:2.5"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="2.4 3.*"
-
-inherit distutils eutils
-
-DESCRIPTION="Rope in Emacs"
-HOMEPAGE="http://rope.sourceforge.net/ropemacs.html
- http://pypi.python.org/pypi/ropemacs"
-SRC_URI="http://bitbucket.org/agr/ropemacs/get/8b277a188d00.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-python/rope
- dev-python/ropemode"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
- distutils_src_prepare
-
- # Patch for nonexistent ropemode in setup.py
- epatch "${FILESDIR}/${P}-ropemode-dir.patch"
-}
-
-src_install() {
- distutils_src_install
- dodoc docs/*.txt || die
-}
-
-pkg_postinst() {
- distutils_pkg_postinst
-
- elog "In order to enable ropemacs support in Emacs, install"
- elog "app-emacs/pymacs and add the following line to your ~/.emacs file:"
- elog " (pymacs-load \"ropemacs\" \"rope-\")"
-}