summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2009-06-10 11:48:43 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2009-06-10 11:48:43 +0000
commit13e2e06575ebb10ccff0985a9a9efd47b7590f03 (patch)
tree0077c5b682bfb5572055ac10d1ee02a7a0dfb7d0 /dev-util
parentVersion bump (it fails 2 tests, but this is a question to the upstream) (diff)
downloadgentoo-2-13e2e06575ebb10ccff0985a9a9efd47b7590f03.tar.gz
gentoo-2-13e2e06575ebb10ccff0985a9a9efd47b7590f03.tar.bz2
gentoo-2-13e2e06575ebb10ccff0985a9a9efd47b7590f03.zip
Adjust ctags-5.7 python patch to actualy work. Per bug #208466.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/ctags/ChangeLog8
-rw-r--r--dev-util/ctags/files/ctags-5.7-python-vars-starting-with-def.patch2
2 files changed, 7 insertions, 3 deletions
diff --git a/dev-util/ctags/ChangeLog b/dev-util/ctags/ChangeLog
index 7b31fffd8e30..ff915f70e5c1 100644
--- a/dev-util/ctags/ChangeLog
+++ b/dev-util/ctags/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/ctags
-# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.70 2009/01/01 20:39:15 armin76 Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.71 2009/06/10 11:48:43 scarabeus Exp $
+
+ 10 Jun 2009; Tomas Chvatal <scarabeus@gentoo.org>
+ files/ctags-5.7-python-vars-starting-with-def.patch:
+ Adjust ctags-5.7 python patch to actualy work. Per bug #208466.
01 Jan 2009; Raúl Porcel <armin76@gentoo.org> ctags-5.7-r1.ebuild:
Re-add ~s390
diff --git a/dev-util/ctags/files/ctags-5.7-python-vars-starting-with-def.patch b/dev-util/ctags/files/ctags-5.7-python-vars-starting-with-def.patch
index 05389df41c70..a20007a73dc8 100644
--- a/dev-util/ctags/files/ctags-5.7-python-vars-starting-with-def.patch
+++ b/dev-util/ctags/files/ctags-5.7-python-vars-starting-with-def.patch
@@ -5,7 +5,7 @@
{
cp = skipEverything (cp);
- if (!strncmp(cp, "def", 3) || !strncmp(cp, "class", 5))
-+ if (!strncmp(cp, "def", 4) || !strncmp(cp, "class", 6))
++ if (!strncmp(cp, "def ", 4) || !strncmp(cp, "class ", 6))
{
return cp;
}