Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/u-boot-tools/
Date: Mon, 04 Oct 2021 06:34:24
Message-Id: 1633328803.1ce8be79f35ae5fa44aad6ac8f63efadc69e0855.jsmolic@gentoo
1 commit: 1ce8be79f35ae5fa44aad6ac8f63efadc69e0855
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 4 06:26:43 2021 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 06:26:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ce8be79
7
8 dev-embedded/u-boot-tools: Remove old 2021.04_rc2
9
10 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
11
12 dev-embedded/u-boot-tools/Manifest | 1 -
13 .../u-boot-tools/u-boot-tools-2021.04_rc2.ebuild | 77 ----------------------
14 2 files changed, 78 deletions(-)
15
16 diff --git a/dev-embedded/u-boot-tools/Manifest b/dev-embedded/u-boot-tools/Manifest
17 index 758cfea596b..c7397882456 100644
18 --- a/dev-embedded/u-boot-tools/Manifest
19 +++ b/dev-embedded/u-boot-tools/Manifest
20 @@ -1,2 +1 @@
21 -DIST u-boot-2021.04-rc2.tar.bz2 16620315 BLAKE2B e16c167346ef3999443855b9a702bf28faacf51b7887c84096f7a372a0c820d6ed9f06c1dd209b4070adf8000853b58b7b9b81c5b32a973d37558acf1da2edfa SHA512 7bf07f15e0c5f5e63ef8cb9568278ea7c209e484bbb599c47b22a8d2e5c007cc204eec365e5328dea3e7b016cd6ba0cb4c917330cc76163b1016f7c7762ad1bf
22 DIST u-boot-2021.07.tar.bz2 17275746 BLAKE2B 1a209a604e0f30264781a14ca855bbb777e8f1c031de60d28de397084fc9bfc4a3771ad00ec22f5cdcfa721f22707a533b9b59004ac0b107df927f23dc5ab0a6 SHA512 210b206a4626feb0985580d9448a97b499b09bf9b9313ca847a66624785e9e9b0fae8f2e329acd344f5f75cb722d2093dd0ee394311ddd1fde05e400ee71a24d
23
24 diff --git a/dev-embedded/u-boot-tools/u-boot-tools-2021.04_rc2.ebuild b/dev-embedded/u-boot-tools/u-boot-tools-2021.04_rc2.ebuild
25 deleted file mode 100644
26 index f7a4a5f731a..00000000000
27 --- a/dev-embedded/u-boot-tools/u-boot-tools-2021.04_rc2.ebuild
28 +++ /dev/null
29 @@ -1,77 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="7"
34 -
35 -inherit toolchain-funcs
36 -
37 -MY_P="u-boot-${PV/_/-}"
38 -DESCRIPTION="utilities for working with Das U-Boot"
39 -HOMEPAGE="https://www.denx.de/wiki/U-Boot/WebHome"
40 -SRC_URI="ftp://ftp.denx.de/pub/u-boot/${MY_P}.tar.bz2"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv x86"
45 -IUSE=""
46 -
47 -RDEPEND="dev-libs/openssl:0="
48 -DEPEND="${RDEPEND}"
49 -BDEPEND="
50 - sys-devel/bison
51 - sys-devel/flex
52 - virtual/pkgconfig
53 -"
54 -
55 -S=${WORKDIR}/${MY_P}
56 -
57 -src_prepare() {
58 - default
59 - sed -i 's:\bpkg-config\b:${PKG_CONFIG}:g' \
60 - scripts/kconfig/{g,m,n,q}conf-cfg.sh \
61 - scripts/kconfig/Makefile \
62 - tools/Makefile || die
63 -}
64 -
65 -src_configure() {
66 - tc-export AR CC PKG_CONFIG
67 -}
68 -
69 -src_compile() {
70 - # Unset a few KBUILD variables. Bug #540476
71 - unset KBUILD_OUTPUT KBUILD_SRC
72 -
73 - emake \
74 - V=1 \
75 - AR="${AR}" \
76 - CC="${CC}" \
77 - HOSTCC="${CC}" \
78 - HOSTCFLAGS="${CFLAGS} ${CPPFLAGS}"' $(HOSTCPPFLAGS)' \
79 - HOSTLDFLAGS="${LDFLAGS}" \
80 - tools-only_defconfig
81 -
82 - emake \
83 - V=1 \
84 - NO_SDL=1 \
85 - HOSTSTRIP=: \
86 - STRIP=: \
87 - AR="${AR}" \
88 - CC="${CC}" \
89 - HOSTCC="${CC}" \
90 - HOSTCFLAGS="${CFLAGS} ${CPPFLAGS}"' $(HOSTCPPFLAGS)' \
91 - HOSTLDFLAGS="${LDFLAGS}" \
92 - CONFIG_ENV_OVERWRITE=y \
93 - tools-all
94 -}
95 -
96 -src_test() { :; }
97 -
98 -src_install() {
99 - cd tools || die
100 - dobin bmp_logo dumpimage fdtgrep gen_eth_addr img2srec mkenvimage mkimage
101 - dobin env/fw_printenv
102 - dosym fw_printenv /usr/bin/fw_setenv
103 - insinto /etc
104 - doins env/fw_env.config
105 - doman "${S}"/doc/mkimage.1
106 -}