summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-10-03 04:59:48 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-10-03 04:59:48 +0000
commit94993535a980841af0c7e4fff8364c6475c90c59 (patch)
treea1182df0567131d3969e61a180a0f6655a6d244a /app-text
parentMarked ppc64. (diff)
downloadgentoo-2-94993535a980841af0c7e4fff8364c6475c90c59.tar.gz
gentoo-2-94993535a980841af0c7e4fff8364c6475c90c59.tar.bz2
gentoo-2-94993535a980841af0c7e4fff8364c6475c90c59.zip
Delete older ebuilds.
Diffstat (limited to 'app-text')
-rw-r--r--app-text/silvercity/files/0.9.6-api-fix.patch50
-rw-r--r--app-text/silvercity/silvercity-0.9.5-r1.ebuild33
-rw-r--r--app-text/silvercity/silvercity-0.9.6-r1.ebuild40
3 files changed, 0 insertions, 123 deletions
diff --git a/app-text/silvercity/files/0.9.6-api-fix.patch b/app-text/silvercity/files/0.9.6-api-fix.patch
deleted file mode 100644
index 70d605874098..000000000000
--- a/app-text/silvercity/files/0.9.6-api-fix.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-=== modified file 'PySilverCity/SilverCity/CSS.py'
---- PySilverCity/SilverCity/CSS.py
-+++ PySilverCity/SilverCity/CSS.py
-@@ -11,8 +11,9 @@
- self._properties = properties
- self._lexer = find_lexer_module_by_id(SCLEX_CSS)
- self._keyword_lists = [
-- WordList(Keywords.css_keywords),
-- WordList(Keywords.css_keywords_2),
-+ WordList(Keywords.css_keywords), # keywords
-+ WordList(Keywords.css_keywords_2), # pseudoClasses
-+ WordList(), # keywords2
- ]
-
- class CSSHandler(DispatchHandler):
-
-=== modified file 'PySilverCity/SilverCity/Python.py'
---- PySilverCity/SilverCity/Python.py
-+++ PySilverCity/SilverCity/Python.py
-@@ -11,7 +11,8 @@
- self._properties = properties
- self._lexer = find_lexer_module_by_id(SCLEX_PYTHON)
- self._keyword_lists = [
-- WordList(Keywords.python_keywords)
-+ WordList(Keywords.python_keywords),
-+ WordList(),
- ]
-
- class PythonHandler(DispatchHandler):
-
-=== modified file 'PySilverCity/SilverCity/SQL.py'
---- PySilverCity/SilverCity/SQL.py
-+++ PySilverCity/SilverCity/SQL.py
-@@ -11,7 +11,14 @@
- self._properties = properties
- self._lexer = find_lexer_module_by_id(SCLEX_SQL)
- self._keyword_lists = [
-- WordList(Keywords.sql_keywords),
-+ WordList(Keywords.sql_keywords), # keywords1
-+ WordList(), # keywords2
-+ WordList(), # kw_pldoc
-+ WordList(), # kw_sqlplus
-+ WordList(), # kw_user1
-+ WordList(), # kw_user2
-+ WordList(), # kw_user3
-+ WordList(), # kw_user4
- ]
-
- class SQLHandler(DispatchHandler):
-
diff --git a/app-text/silvercity/silvercity-0.9.5-r1.ebuild b/app-text/silvercity/silvercity-0.9.5-r1.ebuild
deleted file mode 100644
index 17528479217e..000000000000
--- a/app-text/silvercity/silvercity-0.9.5-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/silvercity/silvercity-0.9.5-r1.ebuild,v 1.7 2008/01/20 15:45:24 grobian Exp $
-
-inherit distutils
-
-DESCRIPTION="A lexical analyser for many langauges."
-HOMEPAGE="http://silvercity.sourceforge.net/"
-
-MY_P=${P/silvercity/SilverCity}
-SRC_URI="mirror://sourceforge/silvercity/${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86"
-IUSE=""
-
-DEPEND=">=dev-lang/python-2.3"
-
-src_install() {
- distutils_src_install
-
- # fix permissions - sec bug 93558
- chmod -R a-w ${D}
-
- # fix CR/LF issue
- find ${D}/usr/bin -iname "*.py" -exec sed -e '1s/\r$//' -i \{\} \;
-
- # fix path
- dosed -i '1s|#!/usr/home/sweetapp/bin/python|#!/usr/bin/env python|' \
- /usr/bin/cgi-styler-form.py || die "dosed failed"
-}
diff --git a/app-text/silvercity/silvercity-0.9.6-r1.ebuild b/app-text/silvercity/silvercity-0.9.6-r1.ebuild
deleted file mode 100644
index 8600b672fe8c..000000000000
--- a/app-text/silvercity/silvercity-0.9.6-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/silvercity/silvercity-0.9.6-r1.ebuild,v 1.5 2008/01/20 15:45:24 grobian Exp $
-
-inherit distutils eutils python
-
-DESCRIPTION="A lexical analyser for many languages."
-HOMEPAGE="http://silvercity.sourceforge.net/"
-
-MY_P=${P/silvercity/SilverCity}
-SRC_URI="mirror://sourceforge/silvercity/${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=">=dev-lang/python-2.3"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${PV}-api-fix.patch
-}
-
-src_install() {
- distutils_src_install
-
- # fix permissions
- python_version
- chmod 644 ${D}/usr/$(get_libdir)/python${PYVER}/site-packages/SilverCity/default.css
-
- # fix CR/LF issue
- find ${D}/usr/bin -iname "*.py" -exec sed -e 's/\r$//' -i \{\} \;
-
- # fix path
- dosed -i 's|#!/usr/home/sweetapp/bin/python|#!/usr/bin/env python|' \
- /usr/bin/cgi-styler-form.py || die "dosed failed"
-}