forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-util/abi-compliance-checker: Bump to 1.99.20
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST abi-compliance-checker-1.99.19.tar.gz 229243 SHA256 e9a5849fdab6a74f5ea99c6b94e39d900ba37d67b204f46f0f47357ac9c96661 SHA512 d88938d808cc7a7e3702a115393068d828645d00e5a02f18c737abb1422896cdf6eec605b91e85a6a7ee181199c30788cb7003e23d76e662b30f4be1b3f211f0 WHIRLPOOL b02bd6df89f30745eeaaf9945642f70e37ad875dd6fb610263c7c777d37f3634db5701f08910696ddb58a3fdfb963ea8d02f9dd99dedf9d2ae8c72f9ff54ceee | ||
DIST abi-compliance-checker-1.99.20.tar.gz 229677 SHA256 daa4992b6e48b3f800ed92c47a69a93a30176fdde518e65a908dbe95aee32c7f SHA512 0542a989041284366423a88eab9acd01ed0f311fa975de0e2fcf1782198ae447a8be424695bfc2c7c5d34d331fe552c6509df93a6a12d5de06904be6113c7c3b WHIRLPOOL 47881da3edd9cc70dab67917c8bc817670d2d135723d61ef83e19717f9993f4bc298d0dc0b2f757ffeee34b8c249040165b67bdd05656d4d88a3551b4a6541ff |
28 changes: 28 additions & 0 deletions
28
dev-util/abi-compliance-checker/abi-compliance-checker-1.99.20.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
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="GPL-2" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
DEPEND="dev-lang/perl" | ||
RDEPEND="${DEPEND} | ||
dev-util/abi-dumper | ||
dev-util/ctags" | ||
|
||
src_compile() { | ||
: | ||
} | ||
|
||
src_install() { | ||
mkdir -p "${D}"/usr || die | ||
perl Makefile.pl --install --prefix="${EPREFIX}"/usr --destdir="${D}" || die | ||
} |