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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BF4F6158094 for ; Sun, 10 Jul 2022 14:39:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E832AE0A65; Sun, 10 Jul 2022 14:39:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9A892E0A65 for ; Sun, 10 Jul 2022 14:39:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7526F340FCD for ; Sun, 10 Jul 2022 14:39:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A408C529 for ; Sun, 10 Jul 2022 14:39:49 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1657463981.09a93fbf9ea15d6f11dc10871559f6c9fa01b365.sam@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/abi-compliance-checker-2.3-r1.ebuild dev-util/abi-compliance-checker/abi-compliance-checker-2.3.ebuild dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild X-VCS-Directories: dev-util/abi-compliance-checker/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 09a93fbf9ea15d6f11dc10871559f6c9fa01b365 X-VCS-Branch: master Date: Sun, 10 Jul 2022 14:39:49 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6b7c490f-3faf-46aa-a799-da5902b325fa X-Archives-Hash: 713d4c989e632b0e344757b9099b4f91 commit: 09a93fbf9ea15d6f11dc10871559f6c9fa01b365 Author: Sam James gentoo org> AuthorDate: Sun Jul 10 14:37:45 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jul 10 14:39:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09a93fbf dev-util/abi-compliance-checker: EAPI 8 Signed-off-by: Sam James gentoo.org> ...ebuild => abi-compliance-checker-2.3-r1.ebuild} | 21 +++++++++++-------- .../abi-compliance-checker-9999.ebuild | 24 ++++++++++++---------- 2 files changed, 26 insertions(+), 19 deletions(-) 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-r1.ebuild similarity index 56% rename from dev-util/abi-compliance-checker/abi-compliance-checker-2.3.ebuild rename to dev-util/abi-compliance-checker/abi-compliance-checker-2.3-r1.ebuild index f01d3ea13d73..42214fbbaed1 100644 --- a/dev-util/abi-compliance-checker/abi-compliance-checker-2.3.ebuild +++ b/dev-util/abi-compliance-checker/abi-compliance-checker-2.3-r1.ebuild @@ -1,21 +1,26 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 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" +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="https://github.com/lvc/${PN}.git" + inherit git-r3 +else + SRC_URI="https://github.com/lvc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="amd64 ~x86" +fi LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="" -DEPEND="dev-lang/perl" -RDEPEND="${DEPEND} +RDEPEND=" dev-util/abi-dumper - dev-util/ctags" + dev-util/ctags +" +BDEPEND="dev-lang/perl" src_install() { dodir /usr diff --git a/dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild b/dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild index d9351e95a936..42214fbbaed1 100644 --- a/dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild +++ b/dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild @@ -1,24 +1,26 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 - -inherit git-r3 +EAPI=8 DESCRIPTION="A tool for checking backward compatibility of a C/C++ library" HOMEPAGE="http://ispras.linuxbase.org/index.php/ABI_compliance_checker" -SRC_URI="" -EGIT_REPO_URI="https://github.com/lvc/${PN}.git" +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="https://github.com/lvc/${PN}.git" + inherit git-r3 +else + SRC_URI="https://github.com/lvc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="amd64 ~x86" +fi LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="" -IUSE="" -DEPEND="dev-lang/perl" -RDEPEND="${DEPEND} +RDEPEND=" dev-util/abi-dumper - dev-util/ctags" + dev-util/ctags +" +BDEPEND="dev-lang/perl" src_install() { dodir /usr