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