Gentoo Archives: gentoo-commits

From: Aric Belsito <lluixhi@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/musl:master commit in: sys-apps/iucode_tool/
Date: Mon, 29 Jan 2018 20:01:14
Message-Id: 1517256049.9579888ab4f099bb583aeaa8910e23da71dc49e3.lluixhi@gentoo
1 commit: 9579888ab4f099bb583aeaa8910e23da71dc49e3
2 Author: Aric Belsito <lluixhi <AT> gmail <DOT> com>
3 AuthorDate: Mon Jan 29 20:00:16 2018 +0000
4 Commit: Aric Belsito <lluixhi <AT> gmail <DOT> com>
5 CommitDate: Mon Jan 29 20:00:49 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=9579888a
7
8 sys-apps/iucode_tool: version bump to 2.3
9
10 sys-apps/iucode_tool/Manifest | 1 +
11 sys-apps/iucode_tool/iucode_tool-2.3.ebuild | 29 +++++++++++++++++++++++++++++
12 2 files changed, 30 insertions(+)
13
14 diff --git a/sys-apps/iucode_tool/Manifest b/sys-apps/iucode_tool/Manifest
15 index 26c4488..ca3b4a6 100644
16 --- a/sys-apps/iucode_tool/Manifest
17 +++ b/sys-apps/iucode_tool/Manifest
18 @@ -1 +1,2 @@
19 DIST iucode-tool_2.2.tar.xz 149896 BLAKE2B c8289541b5a1550e4eaca2dc347cfd78f04cc723c9e7ca995feb1bd8ef8130db1c595613f66ffa22487fefe20a45e51268d989cc24694e6cc1a07012a564ac68 SHA512 edb5969c1e00480e537cddc49d7cbb190ce70e6f0c44d9c40a481038bfa048fade1b454a7f4eef3048cc204ee303758fe76222f9c9fb9b407ed463ee0ccdd429
20 +DIST iucode-tool_2.3.tar.xz 153220 BLAKE2B 4d4fddd1c479172a2bc13c4f45a9be13caf66c5ea396fe7b91df29f5ab12e8d07df0bf5d994c23fe5e9001e585a018549e210ac4669d3bcbde7913adc8aab54d SHA512 8cdbc2970d964c11e9178ef38897f88aaf770b70ad5bd4d91fa6164665b1a4e8be7aa2a4b3d7781e55c298ed9e46be0f278ffc1010feee0bd4745486edfa87fc
21
22 diff --git a/sys-apps/iucode_tool/iucode_tool-2.3.ebuild b/sys-apps/iucode_tool/iucode_tool-2.3.ebuild
23 new file mode 100644
24 index 0000000..2fd8b99
25 --- /dev/null
26 +++ b/sys-apps/iucode_tool/iucode_tool-2.3.ebuild
27 @@ -0,0 +1,29 @@
28 +# Copyright 1999-2018 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI="6"
32 +
33 +inherit autotools eutils
34 +
35 +DESCRIPTION="tool to manipulate Intel X86 and X86-64 processor microcode update collections"
36 +HOMEPAGE="https://gitlab.com/iucode-tool/"
37 +SRC_URI="https://gitlab.com/iucode-tool/releases/raw/master/${PN/_/-}_${PV}.tar.xz"
38 +
39 +LICENSE="GPL-2"
40 +SLOT="0"
41 +KEYWORDS="-* ~amd64 ~x86"
42 +IUSE=""
43 +
44 +DEPEND="elibc_musl? ( sys-libs/argp-standalone )"
45 +RDEPEND=${DEPEND}
46 +
47 +S="${WORKDIR}/${PN/_/-}-${PV}"
48 +
49 +src_prepare() {
50 + eapply "${FILESDIR}/${PN}-2.2-limits.patch"
51 + use elibc_musl && eapply "${FILESDIR}/${PN}-2.2-argp.patch"
52 +
53 + eapply_user
54 +
55 + eautoreconf
56 +}