Gentoo Archives: gentoo-commits

From: "Yixun Lan (dlan)" <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/cangjie/files: cangjie-1.2-cython-022.patch
Date: Mon, 02 Mar 2015 06:51:26
Message-Id: 20150302065118.0EF6212DC2@oystercatcher.gentoo.org
1 dlan 15/03/02 06:51:18
2
3 Added: cangjie-1.2-cython-022.patch
4 Log:
5 version bump, bug 541390, fix cython-0.22 err, thanks Brendan Horan
6
7 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
8
9 Revision Changes Path
10 1.1 dev-python/cangjie/files/cangjie-1.2-cython-022.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cangjie/files/cangjie-1.2-cython-022.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cangjie/files/cangjie-1.2-cython-022.patch?rev=1.1&content-type=text/plain
14
15 Index: cangjie-1.2-cython-022.patch
16 ===================================================================
17 diff --git a/Makefile.am b/Makefile.am
18 index 6762b97..c0cc699 100644
19 --- a/Makefile.am
20 +++ b/Makefile.am
21 @@ -47,19 +47,19 @@ pkgpyexecdir = $(pyexecdir)/cangjie
22
23 src/cangjie/_core.c: src/cangjie/_core.pyx src/cangjie/_core.pxd
24 $(MKDIR_P) src/cangjie
25 - $(CYTHON) -3 --verbose -o $@ $(srcdir)/src/cangjie/_core.pyx
26 + $(CYTHON) -3 --verbose -o $@ -I $(srcdir)/src/cangjie $(srcdir)/src/cangjie/_core.pyx
27
28 src/cangjie/errors.c: src/cangjie/errors.pyx src/cangjie/_core.pxd
29 $(MKDIR_P) src/cangjie
30 - $(CYTHON) -3 --verbose -o $@ $(srcdir)/src/cangjie/errors.pyx
31 + $(CYTHON) -3 --verbose -o $@ -I $(srcdir)/src/cangjie $(srcdir)/src/cangjie/errors.pyx
32
33 src/cangjie/filters.c: src/cangjie/filters.pyx src/cangjie/_core.pxd
34 $(MKDIR_P) src/cangjie
35 - $(CYTHON) -3 --verbose -o $@ $(srcdir)/src/cangjie/filters.pyx
36 + $(CYTHON) -3 --verbose -o $@ -I $(srcdir)/src/cangjie $(srcdir)/src/cangjie/filters.pyx
37
38 src/cangjie/versions.c: src/cangjie/versions.pyx src/cangjie/_core.pxd
39 $(MKDIR_P) src/cangjie
40 - $(CYTHON) -3 --verbose -o $@ $(srcdir)/src/cangjie/versions.pyx
41 + $(CYTHON) -3 --verbose -o $@ -I $(srcdir)/src/cangjie $(srcdir)/src/cangjie/versions.pyx