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/flask-admin: flask-admin-1.0.6.ebuild flask-admin-1.1.0.ebuild flask-admin-1.2.0.ebuild ChangeLog
Date: Wed, 29 Jul 2015 06:34:06
Message-Id: 20150729063355.2D111112@oystercatcher.gentoo.org
1 jlec 15/07/29 06:33:55
2
3 Modified: flask-admin-1.0.6.ebuild flask-admin-1.1.0.ebuild
4 flask-admin-1.2.0.ebuild ChangeLog
5 Log:
6 Don't isntall examples into sitedir, bug #555038
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
9
10 Revision Changes Path
11 1.5 dev-python/flask-admin/flask-admin-1.0.6.ebuild
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-admin/flask-admin-1.0.6.ebuild?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-admin/flask-admin-1.0.6.ebuild?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-admin/flask-admin-1.0.6.ebuild?r1=1.4&r2=1.5
16
17 Index: flask-admin-1.0.6.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-admin/flask-admin-1.0.6.ebuild,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- flask-admin-1.0.6.ebuild 8 Mar 2015 23:47:31 -0000 1.4
24 +++ flask-admin-1.0.6.ebuild 29 Jul 2015 06:33:55 -0000 1.5
25 @@ -1,6 +1,6 @@
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/flask-admin/flask-admin-1.0.6.ebuild,v 1.4 2015/03/08 23:47:31 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-admin/flask-admin-1.0.6.ebuild,v 1.5 2015/07/29 06:33:55 jlec Exp $
30
31 EAPI=5
32 PYTHON_COMPAT=( python2_7 )
33 @@ -31,11 +31,17 @@
34 dev-python/flask-peewee[${PYTHON_USEDEP}]
35 dev-python/flask-mongoengine[${PYTHON_USEDEP}]
36 dev-python/flask-sqlalchemy[${PYTHON_USEDEP}]
37 - )
38 - "
39 + )"
40
41 S="${WORKDIR}/${MY_P}"
42
43 +python_prepare_all() {
44 + sed \
45 + -e 's:find_packages():find_packages(exclude=["*.examples", "*.examples.*", "examples.*", "examples"]):g' \
46 + -i setup.py || die
47 + distutils-r1_python_prepare_all
48 +}
49 +
50 python_test() {
51 nosetests || die "Testing failed with ${EPYTHON}"
52 }
53
54
55
56 1.2 dev-python/flask-admin/flask-admin-1.1.0.ebuild
57
58 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-admin/flask-admin-1.1.0.ebuild?rev=1.2&view=markup
59 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-admin/flask-admin-1.1.0.ebuild?rev=1.2&content-type=text/plain
60 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-admin/flask-admin-1.1.0.ebuild?r1=1.1&r2=1.2
61
62 Index: flask-admin-1.1.0.ebuild
63 ===================================================================
64 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-admin/flask-admin-1.1.0.ebuild,v
65 retrieving revision 1.1
66 retrieving revision 1.2
67 diff -u -r1.1 -r1.2
68 --- flask-admin-1.1.0.ebuild 14 Jun 2015 15:41:52 -0000 1.1
69 +++ flask-admin-1.1.0.ebuild 29 Jul 2015 06:33:55 -0000 1.2
70 @@ -1,6 +1,6 @@
71 # Copyright 1999-2015 Gentoo Foundation
72 # Distributed under the terms of the GNU General Public License v2
73 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-admin/flask-admin-1.1.0.ebuild,v 1.1 2015/06/14 15:41:52 idella4 Exp $
74 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-admin/flask-admin-1.1.0.ebuild,v 1.2 2015/07/29 06:33:55 jlec Exp $
75
76 EAPI=5
77 PYTHON_COMPAT=( python2_7 )
78 @@ -21,8 +21,9 @@
79 KEYWORDS="~amd64 ~x86"
80 IUSE="examples test"
81
82 -RDEPEND=">=dev-python/flask-0.7[${PYTHON_USEDEP}]
83 - dev-python/wtforms[${PYTHON_USEDEP}]"
84 +RDEPEND="
85 + >=dev-python/flask-0.7[${PYTHON_USEDEP}]
86 + dev-python/wtforms[${PYTHON_USEDEP}]"
87 DEPEND="${RDEPEND}
88 dev-python/setuptools[${PYTHON_USEDEP}]
89 test? (
90 @@ -36,6 +37,13 @@
91
92 S="${WORKDIR}/${MY_P}"
93
94 +python_prepare_all() {
95 + sed \
96 + -e 's:find_packages():find_packages(exclude=["*.examples", "*.examples.*", "examples.*", "examples"]):g' \
97 + -i setup.py || die
98 + distutils-r1_python_prepare_all
99 +}
100 +
101 python_test() {
102 nosetests || die "Testing failed with ${EPYTHON}"
103 }
104
105
106
107 1.2 dev-python/flask-admin/flask-admin-1.2.0.ebuild
108
109 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-admin/flask-admin-1.2.0.ebuild?rev=1.2&view=markup
110 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-admin/flask-admin-1.2.0.ebuild?rev=1.2&content-type=text/plain
111 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-admin/flask-admin-1.2.0.ebuild?r1=1.1&r2=1.2
112
113 Index: flask-admin-1.2.0.ebuild
114 ===================================================================
115 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-admin/flask-admin-1.2.0.ebuild,v
116 retrieving revision 1.1
117 retrieving revision 1.2
118 diff -u -r1.1 -r1.2
119 --- flask-admin-1.2.0.ebuild 17 Jun 2015 08:40:36 -0000 1.1
120 +++ flask-admin-1.2.0.ebuild 29 Jul 2015 06:33:55 -0000 1.2
121 @@ -1,6 +1,6 @@
122 # Copyright 1999-2015 Gentoo Foundation
123 # Distributed under the terms of the GNU General Public License v2
124 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-admin/flask-admin-1.2.0.ebuild,v 1.1 2015/06/17 08:40:36 patrick Exp $
125 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-admin/flask-admin-1.2.0.ebuild,v 1.2 2015/07/29 06:33:55 jlec Exp $
126
127 EAPI=5
128 PYTHON_COMPAT=( python2_7 )
129 @@ -21,8 +21,9 @@
130 KEYWORDS="~amd64 ~x86"
131 IUSE="examples test"
132
133 -RDEPEND=">=dev-python/flask-0.7[${PYTHON_USEDEP}]
134 - dev-python/wtforms[${PYTHON_USEDEP}]"
135 +RDEPEND="
136 + >=dev-python/flask-0.7[${PYTHON_USEDEP}]
137 + dev-python/wtforms[${PYTHON_USEDEP}]"
138 DEPEND="${RDEPEND}
139 dev-python/setuptools[${PYTHON_USEDEP}]
140 test? (
141 @@ -37,6 +38,13 @@
142
143 S="${WORKDIR}/${MY_P}"
144
145 +python_prepare_all() {
146 + sed \
147 + -e 's:find_packages():find_packages(exclude=["*.examples", "*.examples.*", "examples.*", "examples"]):g' \
148 + -i setup.py || die
149 + distutils-r1_python_prepare_all
150 +}
151 +
152 python_test() {
153 nosetests || die "Testing failed with ${EPYTHON}"
154 }
155
156
157
158 1.8 dev-python/flask-admin/ChangeLog
159
160 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-admin/ChangeLog?rev=1.8&view=markup
161 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-admin/ChangeLog?rev=1.8&content-type=text/plain
162 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-admin/ChangeLog?r1=1.7&r2=1.8
163
164 Index: ChangeLog
165 ===================================================================
166 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-admin/ChangeLog,v
167 retrieving revision 1.7
168 retrieving revision 1.8
169 diff -u -r1.7 -r1.8
170 --- ChangeLog 17 Jun 2015 08:40:36 -0000 1.7
171 +++ ChangeLog 29 Jul 2015 06:33:55 -0000 1.8
172 @@ -1,6 +1,10 @@
173 # ChangeLog for dev-python/flask-admin
174 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
175 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-admin/ChangeLog,v 1.7 2015/06/17 08:40:36 patrick Exp $
176 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-admin/ChangeLog,v 1.8 2015/07/29 06:33:55 jlec Exp $
177 +
178 + 29 Jul 2015; Justin Lecher <jlec@g.o> flask-admin-1.0.6.ebuild,
179 + flask-admin-1.1.0.ebuild, flask-admin-1.2.0.ebuild:
180 + Don't isntall examples into sitedir, bug #555038
181
182 *flask-admin-1.2.0 (17 Jun 2015)