public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tim Harder" <radhermit@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/u-boot-tools/
Date: Mon, 25 Jun 2018 18:45:12 +0000 (UTC)	[thread overview]
Message-ID: <1529952285.4f5e835b1f82628817bf3227a8fdac994a2dae58.radhermit@gentoo> (raw)

commit:     4f5e835b1f82628817bf3227a8fdac994a2dae58
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 25 18:13:37 2018 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Mon Jun 25 18:44:45 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f5e835b

dev-embedded/u-boot-tools: version bump to 2018.05

 dev-embedded/u-boot-tools/Manifest                 |  1 +
 .../u-boot-tools/u-boot-tools-2018.05.ebuild       | 43 ++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-embedded/u-boot-tools/Manifest b/dev-embedded/u-boot-tools/Manifest
index f2ae17c8862..5a77a4399f5 100644
--- a/dev-embedded/u-boot-tools/Manifest
+++ b/dev-embedded/u-boot-tools/Manifest
@@ -4,3 +4,4 @@ DIST u-boot-2016.09.01.tar.bz2 11783287 BLAKE2B e378f42de04de6dcbd10d9b841c00a23
 DIST u-boot-2016.11.tar.bz2 12019669 BLAKE2B 3a6e4e2daf7ddb790d8a21647d9b0d4190b569fe40ae60340c8a8547f90700d7e9c380a30ccd2d48c004912fd5841a80138de1a8de15c7ec0b4ecab19011e506 SHA512 d393b2aa4114a6de7f990efe370891376c934a1cfac9530c3bc44f988e7f2c9f0ec26653e3275c72a0a1c2f4b44fcd0afe8394c9ae3ca93fee1c689d870c063d
 DIST u-boot-2017.05.tar.bz2 11938152 BLAKE2B 7e94284ecca4cb1314b43e222d1c944f74c5a98d9958da41adb574e5354145cad9cd6506d3dc866f7e63c1866d00db8c37e9f1d92a2299f2f8beedbc80cc30a1 SHA512 be270f9242a72b05463092a022bbabd54996762de1ff23bf7575124ac02e62f49572a4e2f6f571a5019047d40027e56e35593b5cc373c4a5a39b100c3377ba93
 DIST u-boot-2017.09.tar.bz2 11434323 BLAKE2B 9dbadeccb5c4432e997a5da76091aec714e2fad6922a80173e96b1ff930e69df510f6e090b073c8b2c3aeb4872f5e9b40ec879398e0c839df09f5edd1e52e951 SHA512 dff6e793f135e7d6cb9d85d6ef8e4aa7ed5c1e20eece4f434e8c0a6039eb75c3f2cb7bc550121b1f5a5709e943c7cc5d6d8590e05a47a6b0d0d8f05185fe7ec6
+DIST u-boot-2018.05.tar.bz2 12469276 BLAKE2B b09189d9bf8554c21630d42024d64894270c02e3efa8046bc2bef0efd68b9e0a02c3290228ffb71a4bab524d46111e32adb492c3ce9a3ef1be32287a3bbdb36a SHA512 218f71282c9d027b0faf210ce2d4d713779e0c61ea4a23f03d5dec0ca8836a3c26b46c5e258d583834f5b5a2f4663f98729ca4b0101a60f85457eb892f8370d2

diff --git a/dev-embedded/u-boot-tools/u-boot-tools-2018.05.ebuild b/dev-embedded/u-boot-tools/u-boot-tools-2018.05.ebuild
new file mode 100644
index 00000000000..1a32e2433fa
--- /dev/null
+++ b/dev-embedded/u-boot-tools/u-boot-tools-2018.05.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+MY_P="u-boot-${PV/_/-}"
+DESCRIPTION="utilities for working with Das U-Boot"
+HOMEPAGE="http://www.denx.de/wiki/U-Boot/WebHome"
+SRC_URI="ftp://ftp.denx.de/pub/u-boot/${MY_P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE=""
+
+S=${WORKDIR}/${MY_P}
+
+src_compile() {
+	# Unset a few KBUILD variables. Bug #540476
+	unset KBUILD_OUTPUT KBUILD_SRC
+	emake defconfig
+	emake \
+		HOSTSTRIP=: \
+		STRIP=: \
+		HOSTCC="$(tc-getCC)" \
+		HOSTCFLAGS="${CFLAGS} ${CPPFLAGS}"' $(HOSTCPPFLAGS)' \
+		HOSTLDFLAGS="${LDFLAGS}" \
+		CONFIG_ENV_OVERWRITE=y \
+		tools-all
+}
+
+src_install() {
+	cd tools || die
+	dobin bmp_logo dumpimage fdtgrep gen_eth_addr img2srec mkenvimage mkimage
+	dobin easylogo/easylogo
+	dobin env/fw_printenv
+	dosym fw_printenv /usr/bin/fw_setenv
+	insinto /etc
+	doins env/fw_env.config
+	doman "${S}"/doc/mkimage.1
+}


             reply	other threads:[~2018-06-25 18:45 UTC|newest]

Thread overview: 114+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-25 18:45 Tim Harder [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-24  8:06 [gentoo-commits] repo/gentoo:master commit in: dev-embedded/u-boot-tools/ Florian Schmaus
2024-08-06 14:36 Jakov Smolić
2024-08-06 14:36 Jakov Smolić
2024-08-06 14:36 Jakov Smolić
2024-07-12 10:29 Sam James
2024-07-12 10:29 Sam James
2024-07-12  8:14 Arthur Zamarin
2024-07-12  8:14 Arthur Zamarin
2024-07-12  8:14 Arthur Zamarin
2024-07-12  8:14 Arthur Zamarin
2024-02-15 18:11 Florian Schmaus
2024-02-04 10:25 Jakov Smolić
2023-11-22 17:10 Jakov Smolić
2023-11-17 12:16 Arthur Zamarin
2023-11-17 12:07 Sam James
2023-11-17 11:13 Sam James
2023-11-17 11:09 Sam James
2023-11-17 11:09 Sam James
2023-11-17 11:09 Sam James
2023-10-11 21:07 Jakov Smolić
2023-04-03  7:33 Jakov Smolić
2023-03-29 20:08 Sam James
2023-03-29 14:36 Sam James
2023-03-29 14:36 Sam James
2023-03-29 14:33 Sam James
2023-03-29 14:33 Sam James
2023-03-29 14:33 Sam James
2023-01-25  6:44 Jakov Smolić
2023-01-25  6:44 Jakov Smolić
2022-12-12 23:09 Georgy Yakovlev
2022-12-04 17:56 Arthur Zamarin
2022-12-03 16:02 Arthur Zamarin
2022-12-03 11:43 Arthur Zamarin
2022-12-03 10:57 Sam James
2022-12-03 10:54 Sam James
2022-10-04 15:42 Jakov Smolić
2022-08-29  7:41 Jakov Smolić
2022-08-29  7:41 Jakov Smolić
2022-08-27 16:03 Sam James
2022-08-27 16:03 Sam James
2022-08-27 15:59 Jakov Smolić
2022-08-27 15:51 Arthur Zamarin
2022-08-27 15:49 Arthur Zamarin
2022-07-23 15:41 Jakov Smolić
2022-07-07 10:02 Jakov Smolić
2022-05-29 17:27 Jakov Smolić
2022-05-28 16:34 Jakov Smolić
2022-05-28 16:07 Jakov Smolić
2022-05-28 16:07 Jakov Smolić
2022-05-28 15:58 Jakov Smolić
2022-05-28 15:58 Jakov Smolić
2022-04-27 19:47 Jakov Smolić
2022-03-07 19:08 Jakov Smolić
2022-03-06 23:56 Sam James
2022-03-06  7:57 Sam James
2022-03-02  9:05 Agostino Sarubbo
2022-03-01 11:42 Jakov Smolić
2022-03-01 11:42 Jakov Smolić
2022-02-28 19:22 Jakov Smolić
2022-02-28 19:22 Jakov Smolić
2022-02-07 13:31 Jakov Smolić
2022-02-07  5:49 Sam James
2022-02-06  8:04 Agostino Sarubbo
2022-02-06  7:35 Sam James
2022-02-05 21:09 Jakov Smolić
2022-01-18 22:16 Sam James
2022-01-14 18:25 Jakov Smolić
2022-01-05 18:04 Arthur Zamarin
2022-01-04 18:08 Jakov Smolić
2021-10-04  6:34 Jakov Smolić
2021-10-03 18:48 Sam James
2021-10-03 17:52 Agostino Sarubbo
2021-10-02 15:43 Sam James
2021-08-30 21:23 Jakov Smolić
2021-07-24  6:22 John Helmert III
2021-06-22 19:45 Sam James
2021-06-21 19:05 Sam James
2021-06-21 19:05 Sam James
2021-02-28 12:22 Sergei Trofimovich
2021-02-19  8:18 Sergei Trofimovich
2021-01-06  6:37 Sam James
2021-01-06  6:34 Sam James
2021-01-06  1:05 Sam James
2020-08-31  9:23 Yixun Lan
2020-05-26 21:56 Sergei Trofimovich
2020-05-21 17:25 Mike Frysinger
2020-05-21 17:25 Mike Frysinger
2020-04-17  7:11 Sergei Trofimovich
2020-02-05 10:07 Tim Harder
2020-02-01 10:59 Sergei Trofimovich
2020-01-27 11:24 Mikle Kolyada
2020-01-17 10:30 Agostino Sarubbo
2020-01-17  9:29 Agostino Sarubbo
2020-01-16 20:25 Tim Harder
2019-12-13 19:56 Sergei Trofimovich
2019-12-13  7:01 Mikle Kolyada
2019-08-25  4:16 Georgy Yakovlev
2019-08-25  4:16 Georgy Yakovlev
2019-02-05  6:27 Tim Harder
2018-12-27  8:27 Tim Harder
2018-12-09 17:08 Mikle Kolyada
2018-11-10 22:50 Mikle Kolyada
2018-09-03 14:13 Mikle Kolyada
2018-06-26 17:42 Mikle Kolyada
2017-10-02  4:25 Tim Harder
2017-05-09  4:38 Tim Harder
2016-12-12  4:06 Tim Harder
2016-11-10 22:17 Tim Harder
2016-09-20  3:45 Tim Harder
2016-08-26  2:09 Tim Harder
2016-08-26  2:09 Tim Harder
2016-03-24  3:39 Tim Harder
2016-02-27 18:39 Stephen Klimaszewski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1529952285.4f5e835b1f82628817bf3227a8fdac994a2dae58.radhermit@gentoo \
    --to=radhermit@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox