From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4C896138334 for ; Fri, 28 Sep 2018 13:00:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29819E0959; Fri, 28 Sep 2018 13:00:20 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F0018E0959 for ; Fri, 28 Sep 2018 13:00:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CD7E6335CD2 for ; Fri, 28 Sep 2018 13:00:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C45F3CB for ; Fri, 28 Sep 2018 13:00:08 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1538139596.16dfb2e561a24c126b620e9772f667af77108baa.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libtasn1/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libtasn1/libtasn1-4.13.ebuild X-VCS-Directories: dev-libs/libtasn1/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 16dfb2e561a24c126b620e9772f667af77108baa X-VCS-Branch: master Date: Fri, 28 Sep 2018 13:00:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ec758c5a-cdf8-4c41-a791-bbee57e0fd2c X-Archives-Hash: 8e0e113309e694f6c1dac08dce674cde commit: 16dfb2e561a24c126b620e9772f667af77108baa Author: Alon Bar-Lev gentoo org> AuthorDate: Fri Sep 28 12:58:34 2018 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Fri Sep 28 12:59:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16dfb2e5 dev-libs/libtasn1: eapi bump Package-Manager: Portage-2.3.49, Repoman-2.3.10 dev-libs/libtasn1/libtasn1-4.13.ebuild | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/dev-libs/libtasn1/libtasn1-4.13.ebuild b/dev-libs/libtasn1/libtasn1-4.13.ebuild index 1b1de7e63a0..4dd66c9586e 100644 --- a/dev-libs/libtasn1/libtasn1-4.13.ebuild +++ b/dev-libs/libtasn1/libtasn1-4.13.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit multilib-minimal libtool ltprune +inherit multilib-minimal libtool DESCRIPTION="ASN.1 library" HOMEPAGE="https://www.gnu.org/software/libtasn1/" @@ -12,16 +12,19 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" LICENSE="GPL-3 LGPL-2.1" SLOT="0/6" # subslot = libtasn1 soname version 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" -IUSE="doc static-libs valgrind" +IUSE="doc static-libs test valgrind" -DEPEND=">=dev-lang/perl-5.6 - sys-apps/help2man - virtual/yacc" -RDEPEND=" - valgrind? ( dev-util/valgrind ) -" +BDEPEND="sys-apps/help2man + virtual/yacc + test? ( valgrind? ( dev-util/valgrind ) )" -DOCS=( AUTHORS ChangeLog NEWS README THANKS ) +DOCS=( + AUTHORS + ChangeLog + NEWS + README + THANKS +) pkg_setup() { if use doc; then @@ -43,5 +46,5 @@ multilib_src_configure() { multilib_src_install_all() { einstalldocs - prune_libtool_files + find "${D}" -name '*.la' -delete || die }