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 D71E61382C5 for ; Wed, 16 May 2018 07:27:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1949E0933; Wed, 16 May 2018 07:27:02 +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 9D799E0933 for ; Wed, 16 May 2018 07:27:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 86218335C81 for ; Wed, 16 May 2018 07:27:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 85F0E2A4 for ; Wed, 16 May 2018 07:26:57 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1526455577.af9424bbd6fee57344de4fa8cdb4806ce20ae1e5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/abi-compliance-checker/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/abi-compliance-checker/Manifest dev-util/abi-compliance-checker/abi-compliance-checker-2.3.ebuild X-VCS-Directories: dev-util/abi-compliance-checker/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: af9424bbd6fee57344de4fa8cdb4806ce20ae1e5 X-VCS-Branch: master Date: Wed, 16 May 2018 07:26:57 +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: 54db4952-9c62-470a-9372-de3930ed26a7 X-Archives-Hash: 8460f88c9c81c783b01a04937742115b commit: af9424bbd6fee57344de4fa8cdb4806ce20ae1e5 Author: Michał Górny gentoo org> AuthorDate: Wed May 16 07:13:35 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed May 16 07:26:17 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af9424bb dev-util/abi-compliance-checker: Bump to 2.3 dev-util/abi-compliance-checker/Manifest | 1 + .../abi-compliance-checker-2.3.ebuild | 24 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-util/abi-compliance-checker/Manifest b/dev-util/abi-compliance-checker/Manifest index a0103f377cf..d820bf58090 100644 --- a/dev-util/abi-compliance-checker/Manifest +++ b/dev-util/abi-compliance-checker/Manifest @@ -1 +1,2 @@ DIST abi-compliance-checker-2.2.tar.gz 229812 BLAKE2B 8cbbaab1b4063a93a794a6d68acbf4d2c2356eb759b6d5dea2836173887937aca3e23cc3ea54b716a472a43e3e7841f749c2e15286cf5d12780577841b792685 SHA512 4bfdad1d708f2498187a0c06cbabced3c34a05b44900231d453a8dcea88df3f381a180aa2d4cbb4c3df14d0013660b355f630e890e3715c79ce8af3a385759e7 +DIST abi-compliance-checker-2.3.tar.gz 228691 BLAKE2B cf472c81d0cb5a64588b9b889c6797399f99b368842066fb6a8b464aa04414ea02c261283396a0dbd95e65a3d9e0e19cf7637a012c433a9d2c579d0e5ad30f13 SHA512 dda5b65c36028da302ed2a8070de72f85fa0ecbc573bdc73d9a06fc6162f8850773b586c7bef8fd48b5ccb2918fbfdf8e70dd16de94cc5fa70617d35579edf2b diff --git a/dev-util/abi-compliance-checker/abi-compliance-checker-2.3.ebuild b/dev-util/abi-compliance-checker/abi-compliance-checker-2.3.ebuild new file mode 100644 index 00000000000..e821544b1a8 --- /dev/null +++ b/dev-util/abi-compliance-checker/abi-compliance-checker-2.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="A tool for checking backward compatibility of a C/C++ library" +HOMEPAGE="http://ispras.linuxbase.org/index.php/ABI_compliance_checker" +SRC_URI="https://github.com/lvc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-lang/perl" +RDEPEND="${DEPEND} + dev-util/abi-dumper + dev-util/ctags" + +src_install() { + dodir /usr + perl Makefile.pl --install --prefix="${EPREFIX}"/usr --destdir="${D}" || die + einstalldocs +}