diff options
author | Rob Cakebread <pythonhead@gentoo.org> | 2008-07-22 04:31:36 +0000 |
---|---|---|
committer | Rob Cakebread <pythonhead@gentoo.org> | 2008-07-22 04:31:36 +0000 |
commit | 010095b820ad1e1a70052d9aa511701ec83ceed7 (patch) | |
tree | ab30a0e36489beb5a6e5ac46d6e9b414403465fa /dev-python/pygments/files | |
parent | Fix typo in ChangeLog, user emailed me and requested the change (diff) | |
download | gentoo-2-010095b820ad1e1a70052d9aa511701ec83ceed7.tar.gz gentoo-2-010095b820ad1e1a70052d9aa511701ec83ceed7.tar.bz2 gentoo-2-010095b820ad1e1a70052d9aa511701ec83ceed7.zip |
Change setuptools to RDEPEND, tests were importing installed version, added eclass highlighting and test DEPEND on ttf-bitstream-vera bug #232356 and #232359, thanks Bernhard Frauendienst <gentoo@obeliks.de>, remove patches and use sed instead.
(Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r4 i686)
Diffstat (limited to 'dev-python/pygments/files')
-rw-r--r-- | dev-python/pygments/files/pygments-0.8-_mapping.py-ebuild.patch | 11 | ||||
-rw-r--r-- | dev-python/pygments/files/pygments-0.8-other.py-ebuild.patch | 11 |
2 files changed, 0 insertions, 22 deletions
diff --git a/dev-python/pygments/files/pygments-0.8-_mapping.py-ebuild.patch b/dev-python/pygments/files/pygments-0.8-_mapping.py-ebuild.patch deleted file mode 100644 index 0b4a7d5e0fc6..000000000000 --- a/dev-python/pygments/files/pygments-0.8-_mapping.py-ebuild.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- pygments/lexers/_mapping.py.orig 2007-04-14 10:37:23.000000000 -0700 -+++ pygments/lexers/_mapping.py 2007-04-14 10:38:18.000000000 -0700 -@@ -16,7 +16,7 @@ - LEXERS = { - 'ApacheConfLexer': ('pygments.lexers.text', 'ApacheConf', ('apacheconf', 'aconf', 'apache'), ('.htaccess', 'apache.conf', 'apache2.conf'), ('text/x-apacheconf',)), - 'BBCodeLexer': ('pygments.lexers.text', 'BBCode', ('bbcode',), (), ('text/x-bbcode',)), -- 'BashLexer': ('pygments.lexers.other', 'Bash', ('bash', 'sh'), ('*.sh',), ('application/x-sh', 'application/x-shellscript')), -+ 'BashLexer': ('pygments.lexers.other', 'Bash', ('bash', 'sh', 'ebuild'), ('*.sh','*.ebuild',), ('application/x-sh', 'application/x-shellscript')), - 'BatchLexer': ('pygments.lexers.other', 'Batchfile', ('bat',), ('*.bat', '*.cmd'), ('application/x-dos-batch',)), - 'BefungeLexer': ('pygments.lexers.other', 'Befunge', ('befunge',), ('*.befunge',), ('application/x-befunge',)), - 'BooLexer': ('pygments.lexers.dotnet', 'Boo', ('boo',), ('*.boo',), ('text/x-boo',)), diff --git a/dev-python/pygments/files/pygments-0.8-other.py-ebuild.patch b/dev-python/pygments/files/pygments-0.8-other.py-ebuild.patch deleted file mode 100644 index e988a11577c6..000000000000 --- a/dev-python/pygments/files/pygments-0.8-other.py-ebuild.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- pygments/lexers/other.py.orig 2007-04-14 10:37:15.000000000 -0700 -+++ pygments/lexers/other.py 2007-04-14 10:37:46.000000000 -0700 -@@ -205,7 +205,7 @@ - """ - - name = 'Bash' -- aliases = ['bash', 'sh'] -+ aliases = ['bash', 'sh', 'ebuild'] - filenames = ['*.sh'] - mimetypes = ['application/x-sh', 'application/x-shellscript'] - |