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: Fri, 06 Apr 2018 23:25:46
Message-Id: 1523057133.58fabca6c21236936de6e9deb889cdcaf2f6d67b.jstein@gentoo
1 commit: 58fabca6c21236936de6e9deb889cdcaf2f6d67b
2 Author: Jonas Stein <jstein <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 6 23:25:33 2018 +0000
4 Commit: Jonas Stein <jstein <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 6 23:25:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58fabca6
7
8 sys-apps/inxi: Bump to 2.3.56
9
10 Version bump to the last bash based release.
11
12 Package-Manager: Portage-2.3.28, Repoman-2.3.9
13
14 sys-apps/inxi/Manifest | 1 +
15 sys-apps/inxi/inxi-2.3.56.ebuild | 33 +++++++++++++++++++++++++++++++++
16 2 files changed, 34 insertions(+)
17
18 diff --git a/sys-apps/inxi/Manifest b/sys-apps/inxi/Manifest
19 index f1406837fd3..81a62b57363 100644
20 --- a/sys-apps/inxi/Manifest
21 +++ b/sys-apps/inxi/Manifest
22 @@ -3,3 +3,4 @@ DIST inxi-2.3.43.tar.gz 457941 BLAKE2B cbcdb3061643ba3516c93dc13e5e0e25d0740e4aa
23 DIST inxi-2.3.47.tar.gz 462826 BLAKE2B c825b80b5b05fabfad22cbcee685d5c5caa7835493555f1e930dfc11aac35fbe7529fa4738d41dfaae4c6130211d42f576d77ba9f764864bfe89b70a4c0d602a SHA512 be2e0f1880e1b7604acd1f7b8f6595536e12fbe0998f85a195e0892bf1b9942c08f791779f99526a337d097259ea8d3cd0b04da465f8deb1b30bbba9fea4dc4e
24 DIST inxi-2.3.50.tar.gz 467912 BLAKE2B e4d42fbcf073c5815451848d55ad24b782a0851d7701ca87f88ec97467a7968577d6ebe3818cd2b5a59017fecc11baa686d23ffaf0f18ab086bdba0393a07fba SHA512 5f32abb56f8466b5c166616680bc7b6ab5d38b76720ecf3d7d065c5ae08de0bdcf14c31b9ab207adaa7c46f4f292c9971022f27aabe5aa14bb3e828a01bff97c
25 DIST inxi-2.3.55.tar.gz 471764 BLAKE2B 0615ab13b4d3164ea180b3c34ec6e2d4cacad9712d1c7d3161821398498ee31515db8a84019ac64f7e5c8bfda12473341869432dada4649d4d0e65f411eb0903 SHA512 4b5ca427bfe77bbce95f2889e118cc051c7219328f26c1281d8c4fff5b6de1a34c9813367a79d1a92f5808cbd13c669e463d6a5b965def7c3d4ed29c2aa91148
26 +DIST inxi-2.3.56.tar.gz 227754 BLAKE2B e3edc0cbe2bc98304b950f420f39f25d52717f7ebda83e7106b35e6b04c8fcef118108f95ebce53140ef50a017d3be1c02dd58653940c23b5e3049c3731c3b5b SHA512 db14a63f59cecf490cc456a4b9d7d7d42ee8c1041785c4635611634e3fbe653d2bcd39eeec3becb42e85d100bcb2d2fadba806566eeb8a6182cd0485e97ac1cd
27
28 diff --git a/sys-apps/inxi/inxi-2.3.56.ebuild b/sys-apps/inxi/inxi-2.3.56.ebuild
29 new file mode 100644
30 index 00000000000..f07ed4edeaf
31 --- /dev/null
32 +++ b/sys-apps/inxi/inxi-2.3.56.ebuild
33 @@ -0,0 +1,33 @@
34 +# Copyright 1999-2018 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +
39 +MY_COMMIT="803a4595658f28decd236c6f8660841abc336cea"
40 +# ^^ because upstream refuses to tag commits with version numbers
41 +# 2.3.56 is the last version with no tagged release.
42 +# It is also the last bash-based release.
43 +
44 +DESCRIPTION="The CLI inxi collects and prints hardware and system information"
45 +HOMEPAGE="https://github.com/smxi/inxi"
46 +SRC_URI="https://github.com/smxi/${PN}/tarball/${MY_COMMIT} -> ${P}.tar.gz"
47 +
48 +LICENSE="GPL-3"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
51 +IUSE="bluetooth hddtemp opengl"
52 +
53 +DEPEND=""
54 +RDEPEND="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}/smxi-${PN}-${MY_COMMIT:0:7}"
62 +
63 +src_install() {
64 + dobin ${PN}
65 + doman ${PN}.1
66 +}