Gentoo Archives: gentoo-commits

From: "Alexey Shvetsov (alexxy)" <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/acpype: metadata.xml ChangeLog acpype-366.ebuild
Date: Fri, 29 Jul 2011 08:27:46
Message-Id: 20110729082731.F37612004B@flycatcher.gentoo.org
1 alexxy 11/07/29 08:27:31
2
3 Added: metadata.xml ChangeLog acpype-366.ebuild
4 Log:
5 [sci-chemistry/acpype] Initial import
6
7 (Portage version: 2.2.0_alpha47/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sci-chemistry/acpype/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/acpype/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/acpype/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>sci-chemistry</herd>
21 <maintainer>
22 <email>alexxy@g.o</email>
23 <name>Alexey Shvetsov</name>
24 </maintainer>
25 </pkgmetadata>
26
27
28
29 1.1 sci-chemistry/acpype/ChangeLog
30
31 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/acpype/ChangeLog?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/acpype/ChangeLog?rev=1.1&content-type=text/plain
33
34 Index: ChangeLog
35 ===================================================================
36 # ChangeLog for sci-chemistry/acpype
37 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
38 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/acpype/ChangeLog,v 1.1 2011/07/29 08:27:31 alexxy Exp $
39
40 *acpype-366 (29 Jul 2011)
41
42 29 Jul 2011; Alexey Shvetsov <alexxy@g.o> +acpype-366.ebuild,
43 +files/acpype.patch, +metadata.xml:
44 Initial import
45
46
47
48
49 1.1 sci-chemistry/acpype/acpype-366.ebuild
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/acpype/acpype-366.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/acpype/acpype-366.ebuild?rev=1.1&content-type=text/plain
53
54 Index: acpype-366.ebuild
55 ===================================================================
56 # Copyright 1999-2011 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/acpype/acpype-366.ebuild,v 1.1 2011/07/29 08:27:31 alexxy Exp $
59
60 EAPI=3
61
62 inherit eutils python
63 PYTHON_DEPEND="2:2.5"
64
65 DESCRIPTION="AnteChamber PYthon Parser interfacE"
66 HOMEPAGE="http://code.google.com/p/acpype/"
67 SRC_URI="mirror://gentoo/${P}.tar.xz"
68
69 LICENSE="GPL-3"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE=""
73
74 DEPEND="sci-chemistry/ambertools"
75 RDEPEND="${DEPEND}"
76
77 pkg_setup() {
78 python_set_active_version 2
79 python_pkg_setup
80 }
81
82 src_prepare() {
83 epatch "${FILESDIR}/${PN}.patch"
84 python_convert_shebangs -r 2 .
85 }
86
87 src_install() {
88 newbin ${PN}.py ${PN}
89 newbin CcpnToAcpype.py CcpnToAcpype
90 dodoc NOTE.txt README.txt
91 insinto /usr/share/${PN}
92 doins -r ffamber_additions test
93 }