Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/qemu-riscv64-bin/
Date: Sun, 28 Apr 2019 16:29:55
Message-Id: 1556468957.9f5896aba7ae0b3b4850c04ffb1b3834f8a77be2.dilfridge@gentoo
1 commit: 9f5896aba7ae0b3b4850c04ffb1b3834f8a77be2
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 28 16:29:17 2019 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 28 16:29:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f5896ab
7
8 app-emulation/qemu-riscv64-bin: New binary package
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 app-emulation/qemu-riscv64-bin/Manifest | 1 +
14 app-emulation/qemu-riscv64-bin/metadata.xml | 16 ++++++++++++++++
15 .../qemu-riscv64-bin-3.1.0-r4.ebuild | 20 ++++++++++++++++++++
16 3 files changed, 37 insertions(+)
17
18 diff --git a/app-emulation/qemu-riscv64-bin/Manifest b/app-emulation/qemu-riscv64-bin/Manifest
19 new file mode 100644
20 index 00000000000..366c8ee33a9
21 --- /dev/null
22 +++ b/app-emulation/qemu-riscv64-bin/Manifest
23 @@ -0,0 +1 @@
24 +DIST qemu-riscv64-bin-3.1.0-r4.tar.xz 889764 BLAKE2B 888fef2f27f44be098e9b834b083558ce18d98337612b4de2278ffe5d6599248d9ed4e99153ad9b2c1a5b773131c420bb23ce6d080943af744df34464660bc42 SHA512 bc92110f6730c61bd39056d0bf3f84b35ed340a47af51b28b27554f9f2f72409221d2c81826b718742475d0fc48040c81e8f051e29b4f13412c3a39e282471e0
25
26 diff --git a/app-emulation/qemu-riscv64-bin/metadata.xml b/app-emulation/qemu-riscv64-bin/metadata.xml
27 new file mode 100644
28 index 00000000000..304c5d2c5ff
29 --- /dev/null
30 +++ b/app-emulation/qemu-riscv64-bin/metadata.xml
31 @@ -0,0 +1,16 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="project">
36 + <email>riscv@g.o</email>
37 + <name>RISC-V</name>
38 + </maintainer>
39 + <maintainer type="person">
40 + <email>tamiko@g.o</email>
41 + <name>Matthias Maier</name>
42 + </maintainer>
43 + <maintainer type="project">
44 + <email>virtualization@g.o</email>
45 + <name>Gentoo Virtualization Project</name>
46 + </maintainer>
47 +</pkgmetadata>
48
49 diff --git a/app-emulation/qemu-riscv64-bin/qemu-riscv64-bin-3.1.0-r4.ebuild b/app-emulation/qemu-riscv64-bin/qemu-riscv64-bin-3.1.0-r4.ebuild
50 new file mode 100644
51 index 00000000000..30853f041f5
52 --- /dev/null
53 +++ b/app-emulation/qemu-riscv64-bin/qemu-riscv64-bin-3.1.0-r4.ebuild
54 @@ -0,0 +1,20 @@
55 +# Copyright 2019 Gentoo Authors
56 +# Distributed under the terms of the GNU General Public License v2
57 +
58 +EAPI=7
59 +
60 +DESCRIPTION="Statically linked x86-64 binary of app-emulation/qemu, riscv64 emulator"
61 +
62 +HOMEPAGE="http://www.qemu.org"
63 +SRC_URI="https://dev.gentoo.org/~dilfridge/distfiles/${PN}-${PVR}.tar.xz"
64 +LICENSE="GPL-2 LGPL-2 BSD-2"
65 +SLOT="0"
66 +KEYWORDS="~amd64"
67 +
68 +RDEPEND="!app-emulation/qemu[qemu_user_targets_riscv64]"
69 +
70 +S=${WORKDIR}
71 +
72 +src_install() {
73 + dobin qemu-riscv64
74 +}