diff options
author | Jonas Stein <jstein@gentoo.org> | 2018-04-07 01:25:33 +0200 |
---|---|---|
committer | Jonas Stein <jstein@gentoo.org> | 2018-04-07 01:25:33 +0200 |
commit | 58fabca6c21236936de6e9deb889cdcaf2f6d67b (patch) | |
tree | 1cebe8f29a159e6309a2c7ecbce4c01746bdf9c5 /sys-apps/inxi | |
parent | app-eselect/eselect-chuck: Clean up old (diff) | |
download | gentoo-58fabca6c21236936de6e9deb889cdcaf2f6d67b.tar.gz gentoo-58fabca6c21236936de6e9deb889cdcaf2f6d67b.tar.bz2 gentoo-58fabca6c21236936de6e9deb889cdcaf2f6d67b.zip |
sys-apps/inxi: Bump to 2.3.56
Version bump to the last bash based release.
Package-Manager: Portage-2.3.28, Repoman-2.3.9
Diffstat (limited to 'sys-apps/inxi')
-rw-r--r-- | sys-apps/inxi/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/inxi/inxi-2.3.56.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/sys-apps/inxi/Manifest b/sys-apps/inxi/Manifest index f1406837fd3b..81a62b573631 100644 --- a/sys-apps/inxi/Manifest +++ b/sys-apps/inxi/Manifest @@ -3,3 +3,4 @@ DIST inxi-2.3.43.tar.gz 457941 BLAKE2B cbcdb3061643ba3516c93dc13e5e0e25d0740e4aa DIST inxi-2.3.47.tar.gz 462826 BLAKE2B c825b80b5b05fabfad22cbcee685d5c5caa7835493555f1e930dfc11aac35fbe7529fa4738d41dfaae4c6130211d42f576d77ba9f764864bfe89b70a4c0d602a SHA512 be2e0f1880e1b7604acd1f7b8f6595536e12fbe0998f85a195e0892bf1b9942c08f791779f99526a337d097259ea8d3cd0b04da465f8deb1b30bbba9fea4dc4e DIST inxi-2.3.50.tar.gz 467912 BLAKE2B e4d42fbcf073c5815451848d55ad24b782a0851d7701ca87f88ec97467a7968577d6ebe3818cd2b5a59017fecc11baa686d23ffaf0f18ab086bdba0393a07fba SHA512 5f32abb56f8466b5c166616680bc7b6ab5d38b76720ecf3d7d065c5ae08de0bdcf14c31b9ab207adaa7c46f4f292c9971022f27aabe5aa14bb3e828a01bff97c DIST inxi-2.3.55.tar.gz 471764 BLAKE2B 0615ab13b4d3164ea180b3c34ec6e2d4cacad9712d1c7d3161821398498ee31515db8a84019ac64f7e5c8bfda12473341869432dada4649d4d0e65f411eb0903 SHA512 4b5ca427bfe77bbce95f2889e118cc051c7219328f26c1281d8c4fff5b6de1a34c9813367a79d1a92f5808cbd13c669e463d6a5b965def7c3d4ed29c2aa91148 +DIST inxi-2.3.56.tar.gz 227754 BLAKE2B e3edc0cbe2bc98304b950f420f39f25d52717f7ebda83e7106b35e6b04c8fcef118108f95ebce53140ef50a017d3be1c02dd58653940c23b5e3049c3731c3b5b SHA512 db14a63f59cecf490cc456a4b9d7d7d42ee8c1041785c4635611634e3fbe653d2bcd39eeec3becb42e85d100bcb2d2fadba806566eeb8a6182cd0485e97ac1cd diff --git a/sys-apps/inxi/inxi-2.3.56.ebuild b/sys-apps/inxi/inxi-2.3.56.ebuild new file mode 100644 index 000000000000..f07ed4edeaf8 --- /dev/null +++ b/sys-apps/inxi/inxi-2.3.56.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_COMMIT="803a4595658f28decd236c6f8660841abc336cea" +# ^^ because upstream refuses to tag commits with version numbers +# 2.3.56 is the last version with no tagged release. +# It is also the last bash-based release. + +DESCRIPTION="The CLI inxi collects and prints hardware and system information" +HOMEPAGE="https://github.com/smxi/inxi" +SRC_URI="https://github.com/smxi/${PN}/tarball/${MY_COMMIT} -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="bluetooth hddtemp opengl" + +DEPEND="" +RDEPEND="sys-apps/pciutils + sys-apps/usbutils + bluetooth? ( net-wireless/bluez ) + hddtemp? ( app-admin/hddtemp ) + opengl? ( x11-apps/mesa-progs ) + " + +S="${WORKDIR}/smxi-${PN}-${MY_COMMIT:0:7}" + +src_install() { + dobin ${PN} + doman ${PN}.1 +} |