Gentoo Archives: gentoo-commits

From: "Alon Bar-Lev (alonbl)" <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/p11-kit: p11-kit-0.19.3.ebuild ChangeLog
Date: Sat, 27 Jul 2013 20:24:45
Message-Id: 20130727202441.70A522171C@flycatcher.gentoo.org
1 alonbl 13/07/27 20:24:41
2
3 Modified: ChangeLog
4 Added: p11-kit-0.19.3.ebuild
5 Log:
6 Version bump, fixes bug#471956, bug#477486
7
8 (Portage version: 2.2.0_alpha190/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
9
10 Revision Changes Path
11 1.47 app-crypt/p11-kit/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/ChangeLog?rev=1.47&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/ChangeLog?rev=1.47&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/ChangeLog?r1=1.46&r2=1.47
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/ChangeLog,v
20 retrieving revision 1.46
21 retrieving revision 1.47
22 diff -u -r1.46 -r1.47
23 --- ChangeLog 28 Jun 2013 01:55:06 -0000 1.46
24 +++ ChangeLog 27 Jul 2013 20:24:41 -0000 1.47
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-crypt/p11-kit
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/ChangeLog,v 1.46 2013/06/28 01:55:06 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/ChangeLog,v 1.47 2013/07/27 20:24:41 alonbl Exp $
30 +
31 +*p11-kit-0.19.3 (27 Jul 2013)
32 +
33 + 27 Jul 2013; Alon Bar-Lev <alonbl@g.o>
34 + +files/p11-kit-0.19.3-build.patch, +p11-kit-0.19.3.ebuild:
35 + Version bump, fixes bug#471956, bug#477486
36
37 *p11-kit-0.18.4 (28 Jun 2013)
38
39
40
41
42 1.1 app-crypt/p11-kit/p11-kit-0.19.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/p11-kit-0.19.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/p11-kit-0.19.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: p11-kit-0.19.3.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/p11-kit-0.19.3.ebuild,v 1.1 2013/07/27 20:24:41 alonbl Exp $
52
53 EAPI=5
54
55 inherit eutils autotools
56
57 DESCRIPTION="Provides a standard configuration setup for installing PKCS#11."
58 HOMEPAGE="http://p11-glue.freedesktop.org/p11-kit.html"
59 SRC_URI="http://p11-glue.freedesktop.org/releases/${P}.tar.gz"
60
61 LICENSE="MIT"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
64 IUSE="+asn1 debug +trust"
65 REQUIRED_USE="trust? ( asn1 )"
66
67 RDEPEND="asn1? ( >=dev-libs/libtasn1-2.14 )"
68 DEPEND="${RDEPEND}
69 virtual/pkgconfig"
70
71 src_prepare() {
72 epatch "${FILESDIR}/${P}-build.patch"
73 eautoreconf
74 }
75
76 src_configure() {
77 econf \
78 $(use_enable trust trust-module) \
79 $(use_enable debug) \
80 $(use_with asn1 libtasn1)
81 }
82
83 src_install() {
84 default
85 prune_libtool_files --modules
86 }