From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4B24413888F for ; Fri, 16 Oct 2015 20:29:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C275E21C014; Fri, 16 Oct 2015 20:29:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5D97921C014 for ; Fri, 16 Oct 2015 20:29:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7709E34098E for ; Fri, 16 Oct 2015 20:29:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6489B10AA for ; Fri, 16 Oct 2015 20:29:03 +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: <1445027337.5ce49c10a88cbbe8b9cc49d44b99e49d2d582aeb.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-1.99.12.ebuild X-VCS-Directories: dev-util/abi-compliance-checker/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5ce49c10a88cbbe8b9cc49d44b99e49d2d582aeb X-VCS-Branch: master Date: Fri, 16 Oct 2015 20:29:03 +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: 69fa5607-2ff1-4710-b400-51e7a708e467 X-Archives-Hash: 0b1171cf3f7accf05bc2353d45fb4fd6 commit: 5ce49c10a88cbbe8b9cc49d44b99e49d2d582aeb Author: Michał Górny gentoo org> AuthorDate: Fri Oct 16 20:26:22 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Oct 16 20:28:57 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ce49c10 dev-util/abi-compliance-checker: Bump to 1.99.12 dev-util/abi-compliance-checker/Manifest | 1 + .../abi-compliance-checker-1.99.12.ebuild | 23 ++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-util/abi-compliance-checker/Manifest b/dev-util/abi-compliance-checker/Manifest index 1808a7d..309ea32 100644 --- a/dev-util/abi-compliance-checker/Manifest +++ b/dev-util/abi-compliance-checker/Manifest @@ -1 +1,2 @@ +DIST abi-compliance-checker-1.99.12.tar.gz 254441 SHA256 24b3dbf42d46f8ddb425b4156b0211288c30dd9d85a4bee34a3e3664b60a9f2e SHA512 6ba94d2b1ec6574f4e252e9829575ce1eab6f437e425bf98c94276359edfa41f8e014a9ddb5f06057a882ecdb63effab714cae9ce1089c28faa28b3e34ff0628 WHIRLPOOL 91605af7489e60b3217f5dec91bb9b6c574086158cad1929bd059ed092c709e2a406fd2dcc187872db38de28f22a4abddd119d01c392e92060d84b7a067003fa DIST abi-compliance-checker-1.99.9.tar.gz 272227 SHA256 52b0daca89fcda73cde126497c8015ca823417074ba02fcff68b7acf2f45e516 SHA512 bf3530463a93ed453c9479fa2907e8e68d34949e71bb552fabc43b37f7fa562a49339adc86de09596a13ccd5586bfc5fcb5df1d03ffa04020d9ac3622025b2be WHIRLPOOL 0d62b5c4b14e814231cfa06ffdcfd7fa44fecd2d154bf57b0abb13f2540f755b3de3179fd9d3c34720329f674285877b3b4e43dc904b9b1ae1c7b3c88467094e diff --git a/dev-util/abi-compliance-checker/abi-compliance-checker-1.99.12.ebuild b/dev-util/abi-compliance-checker/abi-compliance-checker-1.99.12.ebuild new file mode 100644 index 0000000..160c517 --- /dev/null +++ b/dev-util/abi-compliance-checker/abi-compliance-checker-1.99.12.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +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="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_compile() { + : +} + +src_install() { + mkdir -p "${D}"/usr || die + perl Makefile.pl --install --prefix=/usr --destdir="${D}" || die +}