From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 86B40139694 for ; Fri, 30 Jun 2017 13:18:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E16FBE0C5F; Fri, 30 Jun 2017 13:18:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B0CFDE0C5F for ; Fri, 30 Jun 2017 13:18:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 887C83417E0 for ; Fri, 30 Jun 2017 13:18:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D2787488 for ; Fri, 30 Jun 2017 13:18:49 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1498828669.ce09039315a772516a19c3b24c7e974460b6d4ef.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/inxi/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/inxi/inxi-2.3.0_p20160807-r1.ebuild sys-apps/inxi/inxi-2.3.0_p20160807.ebuild sys-apps/inxi/inxi-2.3.4_p20161104-r1.ebuild sys-apps/inxi/inxi-2.3.4_p20161104.ebuild X-VCS-Directories: sys-apps/inxi/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: ce09039315a772516a19c3b24c7e974460b6d4ef X-VCS-Branch: master Date: Fri, 30 Jun 2017 13:18:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2a62264a-822d-44bc-b536-81fd341aa9a4 X-Archives-Hash: 90a49bfb5865f2c756c035da66d662d4 commit: ce09039315a772516a19c3b24c7e974460b6d4ef Author: Jonas Stein gentoo org> AuthorDate: Tue May 30 16:30:35 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Fri Jun 30 13:17:49 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce090393 sys-apps/inxi: unpack before doman. Gentoo-Bug: https://bugs.gentoo.org/619970 * unpack manpage before doman * general ebuild upkeep Closes: https://github.com/gentoo/gentoo/pull/4811 sys-apps/inxi/inxi-2.3.0_p20160807-r1.ebuild | 28 ++++++++++++++++++++++ sys-apps/inxi/inxi-2.3.0_p20160807.ebuild | 36 ---------------------------- sys-apps/inxi/inxi-2.3.4_p20161104-r1.ebuild | 28 ++++++++++++++++++++++ sys-apps/inxi/inxi-2.3.4_p20161104.ebuild | 36 ---------------------------- 4 files changed, 56 insertions(+), 72 deletions(-) diff --git a/sys-apps/inxi/inxi-2.3.0_p20160807-r1.ebuild b/sys-apps/inxi/inxi-2.3.0_p20160807-r1.ebuild new file mode 100644 index 00000000000..09afef73406 --- /dev/null +++ b/sys-apps/inxi/inxi-2.3.0_p20160807-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_COMMIT=c2a22b3e2590d896d4b0a8fd298f505cc1d787f5 #because upstream refuses to tag commits with version numbers + +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 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=">=app-shells/bash-3.0 + sys-apps/pciutils + sys-apps/usbutils + " +S="${WORKDIR}/smxi-${PN}-${MY_COMMIT:0:7}" + +src_install() { + dobin "${PN}" + unpack "./${PN}.1.gz" + doman "${PN}.1" +} diff --git a/sys-apps/inxi/inxi-2.3.0_p20160807.ebuild b/sys-apps/inxi/inxi-2.3.0_p20160807.ebuild deleted file mode 100644 index 6a87c6104e2..00000000000 --- a/sys-apps/inxi/inxi-2.3.0_p20160807.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_COMMIT=c2a22b3e2590d896d4b0a8fd298f505cc1d787f5 #because upstream refuses to tag commits with version numbers -MY_SHORTCOMMIT=${MY_COMMIT:0:7} - -DESCRIPTION="Commandline script to print hardware information for irc and administration." - -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 ~x86" -IUSE="" - -DEPEND="" -RDEPEND=">=app-shells/bash-3.0 - sys-apps/pciutils - " - -S="${WORKDIR}/smxi-${PN}-${MY_SHORTCOMMIT}" - -src_install() { - dobin ${PN} - doman ${PN}.1.gz -} - -pkg_postinst() { - einfo "To view a short or full system information." - einfo "inxi -b for short information." - einfo "inxi -F for full information." - einfo "inxi provides seven verbose levels -v1 to -v7." - einfo "inxi -h for help." -} diff --git a/sys-apps/inxi/inxi-2.3.4_p20161104-r1.ebuild b/sys-apps/inxi/inxi-2.3.4_p20161104-r1.ebuild new file mode 100644 index 00000000000..619a8b5cb19 --- /dev/null +++ b/sys-apps/inxi/inxi-2.3.4_p20161104-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_COMMIT=89e18d245bc34fc5be5f5baddac2ccd8106be050 #because upstream refuses to tag commits with version numbers + +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 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=">=app-shells/bash-3.0 + sys-apps/pciutils + sys-apps/usbutils + " +S="${WORKDIR}/smxi-${PN}-${MY_COMMIT:0:7}" + +src_install() { + dobin "${PN}" + unpack "./${PN}.1.gz" + doman "${PN}.1" +} diff --git a/sys-apps/inxi/inxi-2.3.4_p20161104.ebuild b/sys-apps/inxi/inxi-2.3.4_p20161104.ebuild deleted file mode 100644 index ed3ef560c07..00000000000 --- a/sys-apps/inxi/inxi-2.3.4_p20161104.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_COMMIT=89e18d245bc34fc5be5f5baddac2ccd8106be050 #because upstream refuses to tag commits with version numbers -MY_SHORTCOMMIT=${MY_COMMIT:0:7} - -DESCRIPTION="Commandline script to print hardware information for irc and administration" - -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 ~x86" -IUSE="" - -DEPEND="" -RDEPEND=">=app-shells/bash-3.0 - sys-apps/pciutils - " - -S="${WORKDIR}/smxi-${PN}-${MY_SHORTCOMMIT}" - -src_install() { - dobin "${PN}" - doman "${PN}.1.gz" -} - -pkg_postinst() { - einfo "To view a short or full system information:" - einfo " inxi -b for short information." - einfo " inxi -F for full information." - einfo "inxi provides seven verbose levels -v1 to -v7." - einfo "Type inxi -h for help." -}