Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyfltk: pyfltk-1.3.0-r2.ebuild pyfltk-1.3.3.ebuild ChangeLog
Date: Fri, 26 Jun 2015 12:05:23
Message-Id: 20150626120517.4B2F3A4D@oystercatcher.gentoo.org
1 jlec 15/06/26 12:05:17
2
3 Modified: pyfltk-1.3.0-r2.ebuild pyfltk-1.3.3.ebuild
4 ChangeLog
5 Log:
6 Add fix for format-security, bug #553314
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
9
10 Revision Changes Path
11 1.2 dev-python/pyfltk/pyfltk-1.3.0-r2.ebuild
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfltk/pyfltk-1.3.0-r2.ebuild?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfltk/pyfltk-1.3.0-r2.ebuild?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfltk/pyfltk-1.3.0-r2.ebuild?r1=1.1&r2=1.2
16
17 Index: pyfltk-1.3.0-r2.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyfltk/pyfltk-1.3.0-r2.ebuild,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- pyfltk-1.3.0-r2.ebuild 23 Jun 2015 15:59:54 -0000 1.1
24 +++ pyfltk-1.3.0-r2.ebuild 26 Jun 2015 12:05:17 -0000 1.2
25 @@ -1,10 +1,11 @@
26 # Copyright 1999-2015 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfltk/pyfltk-1.3.0-r2.ebuild,v 1.1 2015/06/23 15:59:54 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfltk/pyfltk-1.3.0-r2.ebuild,v 1.2 2015/06/26 12:05:17 jlec Exp $
30
31 # FIXME: MakeSwig.py execution should be made work from pyfltk-1.1.5.ebuild
32
33 EAPI=5
34 +
35 PYTHON_COMPAT=( python2_7 )
36
37 inherit distutils-r1 flag-o-matic
38 @@ -25,9 +26,12 @@
39
40 S=${WORKDIR}/${MY_P}
41
42 -PATCHES=( "${FILESDIR}"/${P}-linux-3.x-detection.patch
43 - "${FILESDIR}"/ignore-func.patch
44 - "${FILESDIR}"/fltk_wrap.patch )
45 +PATCHES=(
46 + "${FILESDIR}"/${P}-linux-3.x-detection.patch
47 + "${FILESDIR}"/${P}-format-security.patch
48 + "${FILESDIR}"/ignore-func.patch
49 + "${FILESDIR}"/fltk_wrap.patch
50 + )
51
52 python_prepare_all() {
53 # Disable installation of documentation and tests.
54
55
56
57 1.2 dev-python/pyfltk/pyfltk-1.3.3.ebuild
58
59 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfltk/pyfltk-1.3.3.ebuild?rev=1.2&view=markup
60 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfltk/pyfltk-1.3.3.ebuild?rev=1.2&content-type=text/plain
61 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfltk/pyfltk-1.3.3.ebuild?r1=1.1&r2=1.2
62
63 Index: pyfltk-1.3.3.ebuild
64 ===================================================================
65 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyfltk/pyfltk-1.3.3.ebuild,v
66 retrieving revision 1.1
67 retrieving revision 1.2
68 diff -u -r1.1 -r1.2
69 --- pyfltk-1.3.3.ebuild 23 Jun 2015 15:59:54 -0000 1.1
70 +++ pyfltk-1.3.3.ebuild 26 Jun 2015 12:05:17 -0000 1.2
71 @@ -1,10 +1,11 @@
72 # Copyright 1999-2015 Gentoo Foundation
73 # Distributed under the terms of the GNU General Public License v2
74 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfltk/pyfltk-1.3.3.ebuild,v 1.1 2015/06/23 15:59:54 idella4 Exp $
75 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfltk/pyfltk-1.3.3.ebuild,v 1.2 2015/06/26 12:05:17 jlec Exp $
76
77 # FIXME: MakeSwig.py execution should be made work from pyfltk-1.1.5.ebuild
78
79 EAPI=5
80 +
81 PYTHON_COMPAT=( python{3_3,3_4} )
82
83 inherit distutils-r1 flag-o-matic
84 @@ -25,8 +26,11 @@
85 RDEPEND="${DEPEND}"
86
87 S=${WORKDIR}/${MY_PN}
88 -PATCHES=( "${FILESDIR}"/ignore-func.patch
89 - "${FILESDIR}"/fltk_wrap.patch )
90 +
91 +PATCHES=(
92 + "${FILESDIR}"/ignore-func.patch
93 + "${FILESDIR}"/fltk_wrap.patch
94 + )
95
96 python_prepare_all() {
97 # Disable installation of documentation and tests.
98
99
100
101 1.46 dev-python/pyfltk/ChangeLog
102
103 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfltk/ChangeLog?rev=1.46&view=markup
104 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfltk/ChangeLog?rev=1.46&content-type=text/plain
105 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfltk/ChangeLog?r1=1.45&r2=1.46
106
107 Index: ChangeLog
108 ===================================================================
109 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyfltk/ChangeLog,v
110 retrieving revision 1.45
111 retrieving revision 1.46
112 diff -u -r1.45 -r1.46
113 --- ChangeLog 23 Jun 2015 15:59:54 -0000 1.45
114 +++ ChangeLog 26 Jun 2015 12:05:17 -0000 1.46
115 @@ -1,6 +1,11 @@
116 # ChangeLog for dev-python/pyfltk
117 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
118 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfltk/ChangeLog,v 1.45 2015/06/23 15:59:54 idella4 Exp $
119 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfltk/ChangeLog,v 1.46 2015/06/26 12:05:17 jlec Exp $
120 +
121 + 26 Jun 2015; Justin Lecher <jlec@g.o>
122 + +files/pyfltk-1.3.0-format-security.patch, pyfltk-1.3.0-r2.ebuild,
123 + pyfltk-1.3.3.ebuild:
124 + Add fix for format-security, bug #553314
125
126 *pyfltk-1.3.3 (23 Jun 2015)
127 *pyfltk-1.3.0-r2 (23 Jun 2015)