diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-04-07 16:54:10 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-13 12:14:50 +0300 |
commit | a057931b226a45fd46291d5013f85a543fc9ad1e (patch) | |
tree | d5a82c4722719c0a9e49cc9bf63eb88130021ca2 | |
parent | x11-misc/xrootconsole: EAPI8 bump, fix LICENSE (diff) | |
download | gentoo-a057931b226a45fd46291d5013f85a543fc9ad1e.tar.gz gentoo-a057931b226a45fd46291d5013f85a543fc9ad1e.tar.bz2 gentoo-a057931b226a45fd46291d5013f85a543fc9ad1e.zip |
dev-util/abootimg: EAPI8 bump, fix bug #724060
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://bugs.gentoo.org/724060
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
-rw-r--r-- | dev-util/abootimg/Manifest | 2 | ||||
-rw-r--r-- | dev-util/abootimg/abootimg-20150323-r1.ebuild (renamed from dev-util/abootimg/abootimg-20150323.ebuild) | 16 |
2 files changed, 11 insertions, 7 deletions
diff --git a/dev-util/abootimg/Manifest b/dev-util/abootimg/Manifest index d39ce7b3aacc..033af003275f 100644 --- a/dev-util/abootimg/Manifest +++ b/dev-util/abootimg/Manifest @@ -1 +1 @@ -DIST abootimg-20150323.tar.gz 19311 BLAKE2B d9e9d1de33be581dcca2940000300b433675c4bf98c19dd29a622767d914cc71bf8900120fc4150c542506af5a3faa7a3e03dbfab3f92bfd975a6bde51eac5ed SHA512 38e633c5c32bae472cd1ade9f4a3fa9a5e8ecd17da947aeaf976f639966007ba776a3ac877a607c9f3a416c67682afc9f7789e1560625b75aeaf78a88dfce558 +DIST abootimg-20150323.tar.bz2 17906 BLAKE2B bdb87579d1117935cd8c6cc1abe9bd006dceacb400be6988bb2efd4b734e2e859ebc93fdb5841419bb25cb74d05aa753692ff8ad9816470d46b4f928cac652b2 SHA512 682c38ac64011ed5bd8742d8cdebb8090dd1bb0a2d60958545a2f518f09622e5fbe67598c7e32bfdb4228ff23b6e56f81330d69eea02a680c3a72df01f99e6b7 diff --git a/dev-util/abootimg/abootimg-20150323.ebuild b/dev-util/abootimg/abootimg-20150323-r1.ebuild index 42bf4e6748cb..e2e7a47c1899 100644 --- a/dev-util/abootimg/abootimg-20150323.ebuild +++ b/dev-util/abootimg/abootimg-20150323-r1.ebuild @@ -1,22 +1,26 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 + +inherit toolchain-funcs COMMIT="1ebeb393252ab5aeed62e34bc439b6728444f06e" DESCRIPTION="Manipulate Android boot images" HOMEPAGE="https://gitlab.com/ajs124/abootimg" -SRC_URI="https://gitlab.com/ajs124/abootimg/repository/archive.tar.gz?ref=$COMMIT -> ${P}.tar.gz" +SRC_URI="https://gitlab.com/ajs124/abootimg/-/archive/${COMMIT}/abootimg-${COMMIT}.tar.bz2 -> ${P}.tar.bz2" +S="${WORKDIR}/${PN}-${COMMIT}" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="" DEPEND="sys-apps/util-linux" RDEPEND="${DEPEND}" -S="${WORKDIR}/${PN}-${COMMIT}-${COMMIT}" +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" +} src_install() { dobin abootimg |