Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/virt-what/
Date: Fri, 07 Dec 2018 13:02:42
Message-Id: 1544187730.8bc5ec1e77fcb87badca4cd512640c1a77f0a719.eva@gentoo
1 commit: 8bc5ec1e77fcb87badca4cd512640c1a77f0a719
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 1 19:32:11 2018 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 7 13:02:10 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bc5ec1e
7
8 app-emulation/virt-what: 1.18 → 1.19
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Gilles Dartiguelongue <eva <AT> gentoo.org>
12
13 app-emulation/virt-what/Manifest | 1 +
14 app-emulation/virt-what/virt-what-1.19.ebuild | 24 ++++++++++++++++++++++++
15 2 files changed, 25 insertions(+)
16
17 diff --git a/app-emulation/virt-what/Manifest b/app-emulation/virt-what/Manifest
18 index f30ed5db008..95d2fab1af8 100644
19 --- a/app-emulation/virt-what/Manifest
20 +++ b/app-emulation/virt-what/Manifest
21 @@ -1 +1,2 @@
22 DIST virt-what-1.18.tar.gz 173703 BLAKE2B c1ab6f331ca370572cedef06fd3eb9177ca8ef4302446eb46c737446a001e77a0825ec8771aade903e6194af3f4f745c3f35f1d9dbbb8a0550b493296878ade3 SHA512 8085a38111d5664f411f5bb9d2ee221bc22e5b0f2d993e8d518718b3f63b16ba73e052b1623c090493cf8fef52fd237ba823377503a32b4b7d03cc5380d5c613
23 +DIST virt-what-1.19.tar.gz 183594 BLAKE2B 36b58cbe41f195cf81e0b0cf35ab881c3746ac352c57f470e1fe0005d65534f38886d7688ee9393837e667fd1c8bf41af013f3a12748db5f8615b9b5c944f7a9 SHA512 7b6e6c00e3f35cea236cc5f5fdf28d13e9e38143f280dfcbf083ebf0dca2cb677752b8daec5b2956a08405d1fe5368f9f633ce11a854928c31121a35ee4c6820
24
25 diff --git a/app-emulation/virt-what/virt-what-1.19.ebuild b/app-emulation/virt-what/virt-what-1.19.ebuild
26 new file mode 100644
27 index 00000000000..bbc7f8023ff
28 --- /dev/null
29 +++ b/app-emulation/virt-what/virt-what-1.19.ebuild
30 @@ -0,0 +1,24 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +DESCRIPTION="Detects if the current machine is running in a virtual machine"
37 +HOMEPAGE="https://people.redhat.com/~rjones/virt-what/"
38 +SRC_URI="https://people.redhat.com/~rjones/virt-what/files/${P}.tar.gz"
39 +
40 +LICENSE="GPL-2"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
43 +IUSE="dmi"
44 +
45 +DEPEND="dev-lang/perl"
46 +RDEPEND="app-shells/bash
47 + dmi? ( sys-apps/dmidecode )"
48 +
49 +src_prepare() {
50 + default
51 +
52 + # Pretends to be POSIX sh while it is not
53 + sed -e 's:/bin/sh:/bin/bash:' -i virt-what.in || die
54 +}