diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2009-09-07 10:08:37 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2009-09-07 10:08:37 +0000 |
commit | f1dabda8f23bf1a3a6a6d8901bfb538b7663d83a (patch) | |
tree | 89563f24b305a9027652eee7ed7c848b6a606257 /app-emacs/rst | |
parent | Marked stable on AMD64 as requested by Tobias Scherbaum <dertobi123@gentoo.or... (diff) | |
download | historical-f1dabda8f23bf1a3a6a6d8901bfb538b7663d83a.tar.gz historical-f1dabda8f23bf1a3a6a6d8901bfb538b7663d83a.tar.bz2 historical-f1dabda8f23bf1a3a6a6d8901bfb538b7663d83a.zip |
clean up
Package-Manager: portage-2.1.6.13/cvs/Linux i686
Diffstat (limited to 'app-emacs/rst')
-rw-r--r-- | app-emacs/rst/ChangeLog | 6 | ||||
-rw-r--r-- | app-emacs/rst/files/rst-0.4-lazy-lock-mode-fix.patch | 36 | ||||
-rw-r--r-- | app-emacs/rst/rst-0.4-r1.ebuild | 19 |
3 files changed, 5 insertions, 56 deletions
diff --git a/app-emacs/rst/ChangeLog b/app-emacs/rst/ChangeLog index 2fd44c0682fc..6bac1f924558 100644 --- a/app-emacs/rst/ChangeLog +++ b/app-emacs/rst/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emacs/rst # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/rst/ChangeLog,v 1.27 2009/09/06 08:48:06 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/rst/ChangeLog,v 1.28 2009/09/07 10:03:52 fauli Exp $ + + 07 Sep 2009; Christian Faulhammer <fauli@gentoo.org> -rst-0.4-r1.ebuild, + -files/rst-0.4-lazy-lock-mode-fix.patch: + clean up 06 Sep 2009; Markus Meier <maekke@gentoo.org> rst-0.5.ebuild: amd64 stable, bug #280830 diff --git a/app-emacs/rst/files/rst-0.4-lazy-lock-mode-fix.patch b/app-emacs/rst/files/rst-0.4-lazy-lock-mode-fix.patch deleted file mode 100644 index a6c3b906dc87..000000000000 --- a/app-emacs/rst/files/rst-0.4-lazy-lock-mode-fix.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- rst.el.orig 2005-12-27 14:12:04.000000000 +0100 -+++ rst.el 2008-01-14 18:49:33.000000000 +0100 -@@ -2199,20 +2199,30 @@ - (when (boundp 'font-lock-support-mode) - ;; rst-mode has its own mind about font-lock-support-mode - (make-local-variable 'font-lock-support-mode) -+ ;; jit-lock-mode replaced lazy-lock-mode in GNU Emacs 22 -+ (let ((jit-or-lazy-lock-mode -+ (cond -+ ((fboundp 'jit-lock-mode) 'jit-lock-mode) -+ ((fboundp 'lazy-lock-mode) 'lazy-lock-mode) -+ ;; if neither lazy-lock nor jit-lock is supported, -+ ;; tell user and disable rst-mode-lazy -+ (t (when rst-mode-lazy -+ (message "Disabled lazy fontification, because no known support mode found.") -+ (setq rst-mode-lazy nil)))))) - (cond - ((and (not rst-mode-lazy) (not font-lock-support-mode))) - ;; No support mode set and none required - leave it alone - ((or (not font-lock-support-mode) ;; No support mode set (but required) - (symbolp font-lock-support-mode)) ;; or a fixed mode for all - (setq font-lock-support-mode -- (list (cons 'rst-mode (and rst-mode-lazy 'lazy-lock-mode)) -+ (list (cons 'rst-mode (and rst-mode-lazy jit-or-lazy-lock-mode)) - (cons t font-lock-support-mode)))) - ((and (listp font-lock-support-mode) - (not (assoc 'rst-mode font-lock-support-mode))) - ;; A list of modes missing rst-mode - (setq font-lock-support-mode -- (append '((cons 'rst-mode (and rst-mode-lazy 'lazy-lock-mode))) -- font-lock-support-mode))))) -+ (cons (cons 'rst-mode (and rst-mode-lazy jit-or-lazy-lock-mode)) -+ font-lock-support-mode)))))) - - ;; Names and hooks - (setq mode-name "reST") diff --git a/app-emacs/rst/rst-0.4-r1.ebuild b/app-emacs/rst/rst-0.4-r1.ebuild deleted file mode 100644 index bb910d377cd6..000000000000 --- a/app-emacs/rst/rst-0.4-r1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/rst/rst-0.4-r1.ebuild,v 1.9 2009/03/29 21:06:11 ulm Exp $ - -inherit elisp - -DESCRIPTION="ReStructuredText support for Emacs" -HOMEPAGE="http://www.emacswiki.org/cgi-bin/wiki/reStructuredText" -SRC_URI="mirror://sourceforge/docutils/docutils-${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd" -IUSE="" - -S="${WORKDIR}/docutils-${PV}/tools/editors/emacs" -DOCS="README.txt" -ELISP_PATCHES="${P}-lazy-lock-mode-fix.patch" -SITEFILE="51${PN}-gentoo.el" |