Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/boa-constructor: ChangeLog boa-constructor-0.6.1.ebuild
Date: Sat, 29 Sep 2007 01:31:21
Message-Id: E1IbR2S-00055P-8w@stork.gentoo.org
1 dirtyepic 07/09/29 01:22:36
2
3 Modified: ChangeLog
4 Added: boa-constructor-0.6.1.ebuild
5 Log:
6 Version bump. Bug #114252.
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.28 dev-util/boa-constructor/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/boa-constructor/ChangeLog?rev=1.28&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/boa-constructor/ChangeLog?rev=1.28&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/boa-constructor/ChangeLog?r1=1.27&r2=1.28
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/boa-constructor/ChangeLog,v
19 retrieving revision 1.27
20 retrieving revision 1.28
21 diff -u -r1.27 -r1.28
22 --- ChangeLog 3 Feb 2007 21:35:13 -0000 1.27
23 +++ ChangeLog 29 Sep 2007 01:22:35 -0000 1.28
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/boa-constructor
26 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/boa-constructor/ChangeLog,v 1.27 2007/02/03 21:35:13 dirtyepic Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/boa-constructor/ChangeLog,v 1.28 2007/09/29 01:22:35 dirtyepic Exp $
29 +
30 +*boa-constructor-0.6.1 (29 Sep 2007)
31 +
32 + 29 Sep 2007; Ryan Hill <dirtyepic@g.o>
33 + +boa-constructor-0.6.1.ebuild:
34 + Version bump. Bug #114252.
35
36 03 Feb 2007; Ryan Hill <dirtyepic@g.o>
37 -boa-constructor-0.3.0_alpha.ebuild, -boa-constructor-0.3.1_alpha.ebuild:
38
39
40
41 1.1 dev-util/boa-constructor/boa-constructor-0.6.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/boa-constructor/boa-constructor-0.6.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/boa-constructor/boa-constructor-0.6.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: boa-constructor-0.6.1.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/boa-constructor/boa-constructor-0.6.1.ebuild,v 1.1 2007/09/29 01:22:35 dirtyepic Exp $
51
52 inherit eutils python
53
54 DESCRIPTION="Python GUI RAD development tool."
55 HOMEPAGE="http://boa-constructor.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/boa-constructor/${P}.src.zip"
57
58 SLOT="0"
59 LICENSE="GPL-2"
60 KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
61 IUSE=""
62
63 RDEPEND="=dev-python/wxpython-2.6*
64 dev-libs/expat"
65
66 DEPEND="${RDEPEND}
67 app-arch/unzip"
68
69 src_compile() {
70 python -c "import compileall; compileall.compile_dir('.', force=1)"
71 }
72
73 src_install() {
74 python_version
75 local boadir="/usr/lib/python${PYVER}/site-packages/boa"
76
77 local dir
78 for dir in $(find . -type d)
79 do
80 insinto "${boadir}/${dir}"
81 cd "${dir}"
82 local file
83 for file in *
84 do
85 [[ -f "${file}" ]] && doins "${file}"
86 done
87 cd "${S}"
88 done
89
90 insinto "${boadir}"
91 insinto "${boadir}/Plug-ins"
92 doins Plug-ins/*
93
94 dobin "${FILESDIR}/boa-constructor"
95
96 dodoc Bugs.txt Changes.txt Credits.txt README.txt
97 }
98
99 pkg_postinst() {
100 python_mod_optimize
101 }
102
103 pkg_postrm() {
104 python_mod_cleanup
105 }
106
107
108
109 --
110 gentoo-commits@g.o mailing list