Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/usbip/
Date: Sat, 28 Nov 2020 23:10:11
Message-Id: 1606604940.f62465507f9cd0eb8529a52993f56253082b4f76.soap@gentoo
1 commit: f62465507f9cd0eb8529a52993f56253082b4f76
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 28 23:09:00 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 28 23:09:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6246550
7
8 net-misc/usbip: Remove old
9
10 Package-Manager: Portage-3.0.10, Repoman-3.0.2
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 net-misc/usbip/Manifest | 1 -
14 net-misc/usbip/usbip-3.19.ebuild | 52 ----------------------------------------
15 2 files changed, 53 deletions(-)
16
17 diff --git a/net-misc/usbip/Manifest b/net-misc/usbip/Manifest
18 index 97320827018..a25d0457052 100644
19 --- a/net-misc/usbip/Manifest
20 +++ b/net-misc/usbip/Manifest
21 @@ -1,2 +1 @@
22 -DIST linux-3.19.tar.xz 81688872 BLAKE2B 0b89e34e62d6fe42f43144fe4f3070df2d9a23831b231918946c1f19a1a4b881095892635983ac7afad902f366b0c6001e46751ed2c96890ecbe9d4056154be6 SHA512 d77bfd9b1cd524ac50bb5a93808955be2f9bcd2ec0badcc8aa6a63401e212f891fd14bd27c6441174ba5d70ab875b9e76c7ebc95f046e31aff1d40790d30351c
23 DIST linux-4.13.tar.xz 100579888 BLAKE2B 2f8be07d403071b097b019c43fa332bc7d4805dee633a6fdffe5a99d5475015ca9e4881e7f4cbfd36f8c451bacf423436364ea3d9f25b8723a29a178dededb2b SHA512 a557c2f0303ae618910b7106ff63d9978afddf470f03cb72aa748213e099a0ecd5f3119aea6cbd7b61df30ca6ef3ec57044d524b7babbaabddf8b08b8bafa7d2
24
25 diff --git a/net-misc/usbip/usbip-3.19.ebuild b/net-misc/usbip/usbip-3.19.ebuild
26 deleted file mode 100644
27 index dd1e0ccb381..00000000000
28 --- a/net-misc/usbip/usbip-3.19.ebuild
29 +++ /dev/null
30 @@ -1,52 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -ETYPE="sources"
36 -K_NOUSENAME=1
37 -inherit autotools eutils kernel-2 ltprune
38 -
39 -DESCRIPTION="Userspace utilities for a general USB device sharing system over IP networks"
40 -HOMEPAGE="https://www.kernel.org/"
41 -SRC_URI="${KERNEL_URI}"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86"
46 -IUSE="static-libs tcpd"
47 -RESTRICT=""
48 -
49 -RDEPEND=">=dev-libs/glib-2.6
50 - sys-apps/hwids
51 - >=sys-kernel/linux-headers-3.17
52 - virtual/libudev
53 - tcpd? ( sys-apps/tcp-wrappers )"
54 -DEPEND="${RDEPEND}
55 - virtual/pkgconfig"
56 -
57 -DOCS="AUTHORS README ../../../drivers/usb/usbip/usbip_protocol.txt"
58 -
59 -S=${WORKDIR}/linux-${PV}/tools/usb/${PN}
60 -
61 -src_prepare() {
62 - # remove -Werror from build, bug #545398
63 - sed -i 's/-Werror[^ ]* //g' configure.ac || die
64 - eautoreconf
65 -}
66 -
67 -src_configure() {
68 - econf \
69 - $(use_enable static-libs static) \
70 - $(use tcpd || echo --without-tcp-wrappers) \
71 - --with-usbids-dir=/usr/share/misc
72 -}
73 -
74 -src_install() {
75 - default
76 - prune_libtool_files
77 -}
78 -
79 -pkg_postinst() {
80 - elog "For using USB/IP you need to enable USBIP_VHCI_HCD in the client"
81 - elog "machine's kernel config and USBIP_HOST on the server."
82 -}