Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/logilab-constraint: metadata.xml logilab-constraint-0.4.0.ebuild ChangeLog
Date: Sat, 28 Feb 2009 19:19:48
Message-Id: E1LdUiw-00015l-QI@stork.gentoo.org
1 patrick 09/02/28 19:19:46
2
3 Added: metadata.xml logilab-constraint-0.4.0.ebuild
4 ChangeLog
5 Log:
6 Initial import of logilab-constraint. Fixes #108712. Ebuild contributed by TGL <tom.gl@××××.fr>
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-python/logilab-constraint/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/logilab-constraint/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/logilab-constraint/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>python</herd>
21 </pkgmetadata>
22
23
24
25 1.1 dev-python/logilab-constraint/logilab-constraint-0.4.0.ebuild
26
27 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/logilab-constraint/logilab-constraint-0.4.0.ebuild?rev=1.1&view=markup
28 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/logilab-constraint/logilab-constraint-0.4.0.ebuild?rev=1.1&content-type=text/plain
29
30 Index: logilab-constraint-0.4.0.ebuild
31 ===================================================================
32 # Copyright 1999-2009 Gentoo Foundation
33 # Distributed under the terms of the GNU General Public License v2
34 # $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-constraint/logilab-constraint-0.4.0.ebuild,v 1.1 2009/02/28 19:19:46 patrick Exp $
35
36 inherit distutils
37
38 MY_P="${P#logilab-}"
39 DESCRIPTION="A finite domain constraints solver written in 100% pure Python"
40 HOMEPAGE="http://www.logilab.org/projects/constraint/"
41 SRC_URI="ftp://ftp.logilab.org/pub/constraint/${MY_P}.tar.gz"
42
43 LICENSE="GPL-2"
44 SLOT="0"
45 KEYWORDS="~x86 ~amd64"
46 IUSE="doc"
47
48 DOCS="doc/CONTRIBUTORS"
49 PYTHON_MODNAME="logilab/constraint"
50
51 DEPEND=""
52 RDEPEND=">=dev-python/logilab-common-0.12.0"
53
54 #S="${WORKDIR}/${MY_P}"
55
56 src_install() {
57 distutils_src_install
58
59 # avoid conflict with dev-python/logilab-common:
60 rm -f "${D}"usr/$(get_libdir)/python*/site-packages/logilab/__init__.py
61
62 if use doc; then
63 dohtml doc/documentation.html
64 insinto /usr/share/doc/${PF}
65 doins -r examples
66 fi
67 }
68
69 pkg_postinst() {
70 distutils_pkg_postinst
71 if use x86 && ! has_version dev-python/psyco ; then
72 einfo ""
73 einfo "Although it is not required, you should consider installing"
74 einfo "\"dev-python/psyco\". It can speed up this module a lot."
75 einfo ""
76 fi
77 }
78
79
80
81 1.1 dev-python/logilab-constraint/ChangeLog
82
83 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/logilab-constraint/ChangeLog?rev=1.1&view=markup
84 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/logilab-constraint/ChangeLog?rev=1.1&content-type=text/plain
85
86 Index: ChangeLog
87 ===================================================================
88 # ChangeLog for dev-python/logilab-constraint
89 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
90 # $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-constraint/ChangeLog,v 1.1 2009/02/28 19:19:46 patrick Exp $
91
92 *logilab-constraint-0.4.0 (28 Feb 2009)
93
94 28 Feb 2009; Patrick Lauer <patrick@g.o> +metadata.xml,
95 +logilab-constraint-0.4.0.ebuild:
96 Initial import of logilab-constraint. Fixes #108712. Ebuild contributed by
97 TGL <tom.gl@××××.fr>