Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libtasn1/
Date: Fri, 28 Sep 2018 13:00:21
Message-Id: 1538139596.16dfb2e561a24c126b620e9772f667af77108baa.alonbl@gentoo
1 commit: 16dfb2e561a24c126b620e9772f667af77108baa
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 28 12:58:34 2018 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 28 12:59:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16dfb2e5
7
8 dev-libs/libtasn1: eapi bump
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 dev-libs/libtasn1/libtasn1-4.13.ebuild | 25 ++++++++++++++-----------
13 1 file changed, 14 insertions(+), 11 deletions(-)
14
15 diff --git a/dev-libs/libtasn1/libtasn1-4.13.ebuild b/dev-libs/libtasn1/libtasn1-4.13.ebuild
16 index 1b1de7e63a0..4dd66c9586e 100644
17 --- a/dev-libs/libtasn1/libtasn1-4.13.ebuild
18 +++ b/dev-libs/libtasn1/libtasn1-4.13.ebuild
19 @@ -1,9 +1,9 @@
20 # Copyright 1999-2018 Gentoo Foundation
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI=6
24 +EAPI=7
25
26 -inherit multilib-minimal libtool ltprune
27 +inherit multilib-minimal libtool
28
29 DESCRIPTION="ASN.1 library"
30 HOMEPAGE="https://www.gnu.org/software/libtasn1/"
31 @@ -12,16 +12,19 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
32 LICENSE="GPL-3 LGPL-2.1"
33 SLOT="0/6" # subslot = libtasn1 soname version
34 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
35 -IUSE="doc static-libs valgrind"
36 +IUSE="doc static-libs test valgrind"
37
38 -DEPEND=">=dev-lang/perl-5.6
39 - sys-apps/help2man
40 - virtual/yacc"
41 -RDEPEND="
42 - valgrind? ( dev-util/valgrind )
43 -"
44 +BDEPEND="sys-apps/help2man
45 + virtual/yacc
46 + test? ( valgrind? ( dev-util/valgrind ) )"
47
48 -DOCS=( AUTHORS ChangeLog NEWS README THANKS )
49 +DOCS=(
50 + AUTHORS
51 + ChangeLog
52 + NEWS
53 + README
54 + THANKS
55 +)
56
57 pkg_setup() {
58 if use doc; then
59 @@ -43,5 +46,5 @@ multilib_src_configure() {
60
61 multilib_src_install_all() {
62 einstalldocs
63 - prune_libtool_files
64 + find "${D}" -name '*.la' -delete || die
65 }