Gentoo Archives: gentoo-commits

From: "Amadeusz Zolnowski (aidecoe)" <aidecoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pygpgme: metadata.xml ChangeLog pygpgme-0.3.ebuild
Date: Tue, 31 Jul 2012 13:19:58
Message-Id: 20120731131937.15B2C2004B@flycatcher.gentoo.org
1 aidecoe 12/07/31 13:19:37
2
3 Added: metadata.xml ChangeLog pygpgme-0.3.ebuild
4 Log:
5 Initial ebuild wrt bug #416485.
6
7 (Portage version: 2.1.11.9/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-python/pygpgme/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygpgme/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygpgme/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 <maintainer>
21 <email>aidecoe@g.o</email>
22 <name>Amadeusz Żołnowski</name>
23 </maintainer>
24 <longdescription lang="en">
25 PyGPGME is a Python module that lets you sign, verify, encrypt and
26 decrypt messages using the OpenPGP format. It is built on top of the
27 GNU Privacy Guard and the GPGME
28 library.
29 </longdescription>
30 </pkgmetadata>
31
32
33
34
35 1.1 dev-python/pygpgme/ChangeLog
36
37 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygpgme/ChangeLog?rev=1.1&view=markup
38 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygpgme/ChangeLog?rev=1.1&content-type=text/plain
39
40 Index: ChangeLog
41 ===================================================================
42 # ChangeLog for dev-python/pygpgme
43 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
44 # $Header: /var/cvsroot/gentoo-x86/dev-python/pygpgme/ChangeLog,v 1.1 2012/07/31 13:19:36 aidecoe Exp $
45
46 *pygpgme-0.3 (31 Jul 2012)
47
48 31 Jul 2012; Amadeusz Żołnowski <aidecoe@g.o> +pygpgme-0.3.ebuild,
49 +metadata.xml:
50 Initial ebuild wrt bug #416485.
51
52
53
54
55 1.1 dev-python/pygpgme/pygpgme-0.3.ebuild
56
57 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygpgme/pygpgme-0.3.ebuild?rev=1.1&view=markup
58 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygpgme/pygpgme-0.3.ebuild?rev=1.1&content-type=text/plain
59
60 Index: pygpgme-0.3.ebuild
61 ===================================================================
62 # Copyright 1999-2012 Gentoo Foundation
63 # Distributed under the terms of the GNU General Public License v2
64 # $Header: /var/cvsroot/gentoo-x86/dev-python/pygpgme/pygpgme-0.3.ebuild,v 1.1 2012/07/31 13:19:36 aidecoe Exp $
65
66 EAPI=4
67 PYTHON_DEPEND="2:2.7 3:3.2"
68 SUPPORT_PYTHON_ABIS="1"
69 RESTRICT_PYTHON_ABIS="2.[56] 3.1"
70
71 inherit distutils
72
73 DESCRIPTION="A Python wrapper for the GPGME library"
74 HOMEPAGE="https://launchpad.net/pygpgme"
75 SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
76
77 LICENSE="LGPL-2.1"
78 SLOT="0"
79 KEYWORDS="~amd64"
80 IUSE=""
81
82 DEPEND="app-crypt/gpgme"
83 RDEPEND="${DEPEND}"
84
85 src_prepare() {
86 sed -e 's/#include <gpgme\.h>/#include <gpgme\/gpgme\.h>/' \
87 -i "${S}/src/pygpgme.h"
88 distutils_src_prepare
89 }