Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/usbtop/
Date: Tue, 10 Sep 2019 09:12:20
Message-Id: 1568106728.9aa84c73e81846cc06841055412b300ee889cdc9.polynomial-c@gentoo
1 commit: 9aa84c73e81846cc06841055412b300ee889cdc9
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 10 09:11:56 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 10 09:12:08 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aa84c73
7
8 sys-process/usbtop: Bump to version 1.0
9
10 Closes: https://bugs.gentoo.org/687128
11 Package-Manager: Portage-2.3.75, Repoman-2.3.17
12 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
13
14 sys-process/usbtop/Manifest | 1 +
15 sys-process/usbtop/usbtop-1.0.ebuild | 29 +++++++++++++++++++++++++++++
16 2 files changed, 30 insertions(+)
17
18 diff --git a/sys-process/usbtop/Manifest b/sys-process/usbtop/Manifest
19 index 0eac4db7eb2..ddaf1a0ad29 100644
20 --- a/sys-process/usbtop/Manifest
21 +++ b/sys-process/usbtop/Manifest
22 @@ -1 +1,2 @@
23 DIST usbtop-0.2.tar.gz 10828 BLAKE2B d595fda23adee6778060c25176d1951250bb45cc25ea8040661222736c63aa356605ec8ca52b71e7142cf0f8e7807a77a54fffbc54165178f44af63dfb5ba712 SHA512 43a4512abcff6107ac7a56d65ee19c2b17f4aeb9d38e42e630d724c6744c7d23c85d2c66325c0e6b50404431312754646f1290202fa51f3dee1f94a9d211ba25
24 +DIST usbtop-1.0.tar.gz 626770 BLAKE2B 4f14e1e8d926ce7f6ffd1a276871d7d9072979d844a55e477c402bcac343a3cc14faebbfd3886b386a48b01399bcb748fb843453a0eee48b8e09578841eab356 SHA512 bc2003c1085fae238d99347bbf3caa1da7e44aa8f5b07abbde3f96b4124b301bbbc896f7b5e341665db1cdba44a59752884e3b9fe3a6104ef804aa94c510a5c0
25
26 diff --git a/sys-process/usbtop/usbtop-1.0.ebuild b/sys-process/usbtop/usbtop-1.0.ebuild
27 new file mode 100644
28 index 00000000000..7b8e3d1fcb9
29 --- /dev/null
30 +++ b/sys-process/usbtop/usbtop-1.0.ebuild
31 @@ -0,0 +1,29 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit cmake-utils linux-info
38 +
39 +DESCRIPTION="utility that shows an estimated instantaneous bandwidth on USB buses and devices"
40 +HOMEPAGE="https://github.com/aguinet/usbtop"
41 +SRC_URI="https://github.com/aguinet/usbtop/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE=""
47 +
48 +DEPEND="net-libs/libpcap:=[usb]
49 + dev-libs/boost:="
50 +RDEPEND="${DEPEND}"
51 +
52 +S="${WORKDIR}/${PN}-release-${PV}"
53 +
54 +pkg_setup() {
55 + linux-info_pkg_setup
56 + if linux_config_exists; then
57 + CONFIG_CHECK="~USB_MON"
58 + check_extra_config
59 + fi
60 +}