Gentoo Archives: gentoo-commits

From: Jonas Stein <jstein@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/inxi/
Date: Thu, 26 Sep 2019 20:56:00
Message-Id: 1569531325.b0cad75839d9015f27aa8552f0c7f5e217f291ad.jstein@gentoo
1 commit: b0cad75839d9015f27aa8552f0c7f5e217f291ad
2 Author: Jonas Stein <jstein <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 26 20:54:07 2019 +0000
4 Commit: Jonas Stein <jstein <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 26 20:55:25 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0cad758
7
8 sys-apps/inxi: Version bump to 3.0.36-1
9
10 Bump to 3.0.36-1
11
12 Package-Manager: Portage-2.3.76, Repoman-2.3.17
13 Signed-off-by: Jonas Stein <jstein <AT> gentoo.org>
14
15 sys-apps/inxi/Manifest | 1 +
16 sys-apps/inxi/inxi-3.0.36.1.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
17 2 files changed, 39 insertions(+)
18
19 diff --git a/sys-apps/inxi/Manifest b/sys-apps/inxi/Manifest
20 index 67e3a2df579..299ea9b4ceb 100644
21 --- a/sys-apps/inxi/Manifest
22 +++ b/sys-apps/inxi/Manifest
23 @@ -1,2 +1,3 @@
24 DIST inxi-3.0.33.1.tar.gz 306370 BLAKE2B 9ebd8d6e00fe241d5fdf52ddbfc01bdb03682f10baf79cf600a4ad94d36870cd5676fb74cbaebd5edfe9288df3c8f649e4f99dd6bbcd12681663423554f74114 SHA512 7239920311e8066f08a6d81525f3608bb555d229bc4f9e33d45442cef4ee219266bdd7c4a7a25de386db8079d1ef496e3fc22620ada772ce6a51c04cb7023256
25 DIST inxi-3.0.34.1.tar.gz 308373 BLAKE2B 290a0887a7885b040f614140a99cbd7e0a8f8b89943e2f39cf00f033fb88fbe6a65dd4b5848f4ff7758f5fe81112404abef6102c44f4732308cda0e4ce887766 SHA512 cfc221ce5cd87dd2418ef0a6f916b17ed4a90aa9c6485ffc40a37d87d337f18d1ad98ae53fa366dc56b5250f2e95dc14c528b14d8f796b6d1b26b982cbf0b22b
26 +DIST inxi-3.0.36.1.tar.gz 311680 BLAKE2B 95c9ab57a9af50ace8fdacebb42a94017b1506a9215f8f70ff35f281dd207685d570fe257abc5446b57dd9b9a7ce28e568a4ebf9d664731dde437a6cfd64647f SHA512 1b242878b9a5180ed63dedcac7381ce41380a1bd95ba7f85bfb2c97b635fdc7700162373078963ef708fa5cd47084aa6f5c71b212042fe1acd87e01a85599296
27
28 diff --git a/sys-apps/inxi/inxi-3.0.36.1.ebuild b/sys-apps/inxi/inxi-3.0.36.1.ebuild
29 new file mode 100644
30 index 00000000000..4a987eacb4f
31 --- /dev/null
32 +++ b/sys-apps/inxi/inxi-3.0.36.1.ebuild
33 @@ -0,0 +1,38 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +MY_PV=$(ver_rs 3 '-')
40 +# 2.3.56 was the last version with no tagged release.
41 +# It was also the last Bash based release. Later versions are Perl based
42 +
43 +DESCRIPTION="The CLI inxi collects and prints hardware and system information"
44 +HOMEPAGE="https://github.com/smxi/inxi"
45 +SRC_URI="https://github.com/smxi/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="GPL-3"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
50 +IUSE="bluetooth hddtemp opengl"
51 +
52 +DEPEND=""
53 +RDEPEND="dev-lang/perl
54 + sys-apps/pciutils
55 + sys-apps/usbutils
56 + bluetooth? ( net-wireless/bluez )
57 + hddtemp? ( app-admin/hddtemp )
58 + opengl? ( x11-apps/mesa-progs )
59 + "
60 +
61 +S="${WORKDIR}/${PN}-${MY_PV}"
62 +
63 +src_install() {
64 + dobin ${PN}
65 + doman ${PN}.1
66 +}
67 +
68 +pkg_postinst() {
69 + elog "Some features of inxi depend on additional packages. Get a full list with"
70 + elog "inxi --recommends"
71 +}