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 2696A138334 for ; Fri, 5 Oct 2018 19:27:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBA94E0886; Fri, 5 Oct 2018 19:27:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 93D54E0886 for ; Fri, 5 Oct 2018 19:27:13 +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 5FA31335C7F for ; Fri, 5 Oct 2018 19:27:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 485EF42A for ; Fri, 5 Oct 2018 19:27:10 +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: <1538767562.929c3aa7c2f4b46e0b3aa872c784e8181e543bd0.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgpg-error/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgpg-error/libgpg-error-1.32-r1.ebuild X-VCS-Directories: dev-libs/libgpg-error/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 929c3aa7c2f4b46e0b3aa872c784e8181e543bd0 X-VCS-Branch: master Date: Fri, 5 Oct 2018 19:27:10 +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: 9c429bde-5b7c-4e56-bf4b-905a9d63c2ea X-Archives-Hash: 487ef1a2bd50380be919405fb74c977e commit: 929c3aa7c2f4b46e0b3aa872c784e8181e543bd0 Author: Alon Bar-Lev gentoo org> AuthorDate: Fri Oct 5 19:00:09 2018 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Fri Oct 5 19:26:02 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=929c3aa7 dev-libs/libgpg-error: eapi bump Package-Manager: Portage-2.3.49, Repoman-2.3.10 Signed-off-by: Alon Bar-Lev gentoo.org> dev-libs/libgpg-error/libgpg-error-1.32-r1.ebuild | 47 +++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/dev-libs/libgpg-error/libgpg-error-1.32-r1.ebuild b/dev-libs/libgpg-error/libgpg-error-1.32-r1.ebuild new file mode 100644 index 00000000000..054a4649584 --- /dev/null +++ b/dev-libs/libgpg-error/libgpg-error-1.32-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit libtool multilib-minimal toolchain-funcs + +DESCRIPTION="Contains error handling functions used by GnuPG software" +HOMEPAGE="http://www.gnupg.org/related_software/libgpg-error" +SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="common-lisp nls static-libs" + +RDEPEND="nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] )" +DEPEND="${RDEPEND}" +BDEPEND="nls? ( sys-devel/gettext )" + +MULTILIB_CHOST_TOOLS=( + /usr/bin/gpg-error-config +) +MULTILIB_WRAPPED_HEADERS=( + /usr/include/gpg-error.h + /usr/include/gpgrt.h +) + +src_prepare() { + default + elibtoolize +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf \ + $(multilib_is_native_abi || echo --disable-languages) \ + $(use_enable common-lisp languages) \ + $(use_enable nls) \ + $(use_enable static-libs static) \ + --enable-threads \ + CC_FOR_BUILD="$(tc-getBUILD_CC)" +} + +multilib_src_install_all() { + einstalldocs + find "${D}" -name '*.la' -delete || die +}