summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2010-10-31 23:19:08 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2010-10-31 23:19:08 +0000
commitb6ca114b8149a9bfa9f99f83337d6e94c4f68ecd (patch)
tree12af2685f449c4935deee1b73ac5358b05b8ed0d /x11-misc/rednotebook
parentStable on amd64 wrt bug #343471 (diff)
downloadgentoo-2-b6ca114b8149a9bfa9f99f83337d6e94c4f68ecd.tar.gz
gentoo-2-b6ca114b8149a9bfa9f99f83337d6e94c4f68ecd.tar.bz2
gentoo-2-b6ca114b8149a9bfa9f99f83337d6e94c4f68ecd.zip
Remove old ebuilds and files
(Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/rednotebook')
-rw-r--r--x11-misc/rednotebook/ChangeLog8
-rw-r--r--x11-misc/rednotebook/files/rednotebook-0.8.9_disable_spell.patch33
-rw-r--r--x11-misc/rednotebook/files/rednotebook-0.9.3-disable-webkit.patch17
-rw-r--r--x11-misc/rednotebook/files/rednotebook-1.1.0-disable-webkit.patch17
-rw-r--r--x11-misc/rednotebook/rednotebook-0.9.5.ebuild32
-rw-r--r--x11-misc/rednotebook/rednotebook-1.1.0.ebuild32
6 files changed, 7 insertions, 132 deletions
diff --git a/x11-misc/rednotebook/ChangeLog b/x11-misc/rednotebook/ChangeLog
index f15de5b1e55e..0c9aad6a98fa 100644
--- a/x11-misc/rednotebook/ChangeLog
+++ b/x11-misc/rednotebook/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-misc/rednotebook
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/rednotebook/ChangeLog,v 1.41 2010/10/03 20:13:52 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/rednotebook/ChangeLog,v 1.42 2010/10/31 23:19:07 hwoarang Exp $
+
+ 31 Oct 2010; Markos Chandras <hwoarang@gentoo.org>
+ -files/rednotebook-0.8.9_disable_spell.patch,
+ -files/rednotebook-0.9.3-disable-webkit.patch, -rednotebook-0.9.5.ebuild,
+ -rednotebook-1.1.0.ebuild, -files/rednotebook-1.1.0-disable-webkit.patch:
+ Remove old ebuilds and files
03 Oct 2010; Markos Chandras <hwoarang@gentoo.org>
-files/disable_webkit.patch:
diff --git a/x11-misc/rednotebook/files/rednotebook-0.8.9_disable_spell.patch b/x11-misc/rednotebook/files/rednotebook-0.8.9_disable_spell.patch
deleted file mode 100644
index dd60a4b9424e..000000000000
--- a/x11-misc/rednotebook/files/rednotebook-0.8.9_disable_spell.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-Index: rednotebook-0.8.9/rednotebook/gui/keepnote/gui/richtext/__init__.py
-===================================================================
---- rednotebook-0.8.9.orig/rednotebook/gui/keepnote/gui/richtext/__init__.py
-+++ rednotebook-0.8.9/rednotebook/gui/keepnote/gui/richtext/__init__.py
-@@ -18,10 +18,7 @@ import gtk, gobject, pango
- from gtk import gdk
-
- # try to import spell check
--try:
-- import gtkspell
--except ImportError:
-- gtkspell = None
-+gtkspell = None
-
-
- # textbuffer_tools imports
-Index: rednotebook-0.8.9/rednotebook/gui/mainWindow.py
-===================================================================
---- rednotebook-0.8.9.orig/rednotebook/gui/mainWindow.py
-+++ rednotebook-0.8.9/rednotebook/gui/mainWindow.py
-@@ -31,11 +31,7 @@ import gtk
- import gobject
- import pango
-
--# try to import gtkspell
--try:
-- import gtkspell
--except ImportError:
-- gtkspell = None
-+gtkspell = None
-
-
- # Initialize the gtk thread engine
diff --git a/x11-misc/rednotebook/files/rednotebook-0.9.3-disable-webkit.patch b/x11-misc/rednotebook/files/rednotebook-0.9.3-disable-webkit.patch
deleted file mode 100644
index ccc3ed9b44eb..000000000000
--- a/x11-misc/rednotebook/files/rednotebook-0.9.3-disable-webkit.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Index: rednotebook-0.9.3/rednotebook/gui/browser.py
-===================================================================
---- rednotebook-0.9.3.orig/rednotebook/gui/browser.py
-+++ rednotebook-0.9.3/rednotebook/gui/browser.py
-@@ -36,11 +36,7 @@ if __name__ == '__main__':
- gobject.threads_init() # also initializes the gdk threads
-
-
--try:
-- import webkit
--except ImportError:
-- logging.info('webkit not found. For a nicer preview install python-webkit or pywebkitgtk')
-- webkit = None
-+webkit = None
-
- from rednotebook.util import filesystem
-
diff --git a/x11-misc/rednotebook/files/rednotebook-1.1.0-disable-webkit.patch b/x11-misc/rednotebook/files/rednotebook-1.1.0-disable-webkit.patch
deleted file mode 100644
index f5758ad105d4..000000000000
--- a/x11-misc/rednotebook/files/rednotebook-1.1.0-disable-webkit.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Index: rednotebook-1.1.0/rednotebook/gui/browser.py
-===================================================================
---- rednotebook-1.1.0.orig/rednotebook/gui/browser.py
-+++ rednotebook-1.1.0/rednotebook/gui/browser.py
-@@ -67,12 +67,6 @@ def windows_webkit_import():
-
- if sys.platform == 'win32':
- windows_webkit_import()
--else:
-- try:
-- import webkit
-- except ImportError:
-- logging.info('webkit not found. For a nicer preview install python-webkit or pywebkitgtk')
--
-
-
- def can_print_pdf():
diff --git a/x11-misc/rednotebook/rednotebook-0.9.5.ebuild b/x11-misc/rednotebook/rednotebook-0.9.5.ebuild
deleted file mode 100644
index 7880ec979ee3..000000000000
--- a/x11-misc/rednotebook/rednotebook-0.9.5.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/rednotebook/rednotebook-0.9.5.ebuild,v 1.3 2010/07/15 20:46:34 maekke Exp $
-
-EAPI="2"
-
-PYTHON_DEPEND="2"
-inherit python eutils distutils
-
-DESCRIPTION="A graphical journal with calendar, templates, tags, keyword searching, and export functionality"
-HOMEPAGE="http://rednotebook.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="libyaml spell webkit"
-
-RDEPEND="dev-python/pyyaml[libyaml?]
- >=dev-python/pygtk-2.13
- spell? ( dev-python/gtkspell-python )
- webkit? ( dev-python/pywebkitgtk )"
-
-pkg_setup() {
- python_set_active_version 2
-}
-
-src_prepare() {
- ! use webkit && epatch "${FILESDIR}/${PN}-0.9.3-disable-webkit.patch"
- ! use spell && epatch "${FILESDIR}/${PN}-0.8.9_disable_spell.patch"
- distutils_src_prepare
-}
diff --git a/x11-misc/rednotebook/rednotebook-1.1.0.ebuild b/x11-misc/rednotebook/rednotebook-1.1.0.ebuild
deleted file mode 100644
index 3d1add30abc2..000000000000
--- a/x11-misc/rednotebook/rednotebook-1.1.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/rednotebook/rednotebook-1.1.0.ebuild,v 1.2 2010/08/05 21:04:15 hwoarang Exp $
-
-EAPI="2"
-
-PYTHON_DEPEND="2"
-inherit python eutils distutils
-
-DESCRIPTION="A graphical journal with calendar, templates, tags, keyword searching, and export functionality"
-HOMEPAGE="http://rednotebook.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="libyaml spell webkit"
-
-RDEPEND="dev-python/pyyaml[libyaml?]
- >=dev-python/pygtk-2.13
- spell? ( dev-python/gtkspell-python )
- webkit? ( dev-python/pywebkitgtk )"
-
-pkg_setup() {
- python_set_active_version 2
-}
-
-src_prepare() {
- ! use webkit && epatch "${FILESDIR}/${P}-disable-webkit.patch"
- ! use spell && epatch "${FILESDIR}/${P}-disable-spell.patch"
- distutils_src_prepare
-}