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 dev-libs/libtasn1: libtasn1-4.4.ebuild ChangeLog libtasn1-4.3.ebuild
Date: Sun, 29 Mar 2015 11:59:05
Message-Id: 20150329115902.8182214C5D@oystercatcher.gentoo.org
1 alonbl 15/03/29 11:59:02
2
3 Modified: ChangeLog
4 Added: libtasn1-4.4.ebuild
5 Removed: libtasn1-4.3.ebuild
6 Log:
7 Version bump + cleanup
8
9 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
10
11 Revision Changes Path
12 1.230 dev-libs/libtasn1/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?rev=1.230&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?rev=1.230&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?r1=1.229&r2=1.230
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v
21 retrieving revision 1.229
22 retrieving revision 1.230
23 diff -u -r1.229 -r1.230
24 --- ChangeLog 10 Mar 2015 20:18:12 -0000 1.229
25 +++ ChangeLog 29 Mar 2015 11:59:02 -0000 1.230
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-libs/libtasn1
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.229 2015/03/10 20:18:12 vapier Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.230 2015/03/29 11:59:02 alonbl Exp $
31 +
32 +*libtasn1-4.4 (29 Mar 2015)
33 +
34 + 29 Mar 2015; Alon Bar-Lev <alonbl@g.o> +libtasn1-4.4.ebuild,
35 + -files/libtasn1-4.3-build.patch, -libtasn1-4.3.ebuild:
36 + Version bump + cleanup
37
38 10 Mar 2015; Mike Frysinger <vapier@g.o> libtasn1-4.2.ebuild:
39 Mark arm64/m68k/s390/sh stable.
40
41
42
43 1.1 dev-libs/libtasn1/libtasn1-4.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/libtasn1-4.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/libtasn1-4.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libtasn1-4.4.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-4.4.ebuild,v 1.1 2015/03/29 11:59:02 alonbl Exp $
53
54 EAPI=5
55
56 inherit autotools-multilib
57
58 DESCRIPTION="ASN.1 library"
59 HOMEPAGE="http://www.gnu.org/software/libtasn1/"
60 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-3 LGPL-2.1"
63 SLOT="0/6" # subslot = libtasn1 soname version
64 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
65 IUSE="doc static-libs"
66
67 DEPEND=">=dev-lang/perl-5.6
68 sys-apps/help2man
69 virtual/yacc"
70 RDEPEND="
71 abi_x86_32? (
72 !<=app-emulation/emul-linux-x86-baselibs-20131008-r16
73 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
74 )"
75
76 DOCS=( AUTHORS ChangeLog NEWS README THANKS )
77
78 src_configure() {
79 local myeconfargs
80 [[ "${VALGRIND_TESTS}" == "0" ]] && myeconfargs+=( --disable-valgrind-tests )
81 autotools-multilib_src_configure
82 }
83
84 src_install() {
85 autotools-multilib_src_install
86
87 if use doc ; then
88 dodoc doc/libtasn1.pdf
89 dohtml doc/reference/html/*
90 fi
91 }