Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/usbredir/
Date: Wed, 26 May 2021 08:33:40
Message-Id: 1622017985.705c8ffd4d052c45cd22349c95d981c0159d70bb.soap@gentoo
1 commit: 705c8ffd4d052c45cd22349c95d981c0159d70bb
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 26 08:33:05 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 08:33:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=705c8ffd
7
8 sys-apps/usbredir: drop 0.8.0
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 sys-apps/usbredir/Manifest | 1 -
13 sys-apps/usbredir/usbredir-0.8.0.ebuild | 40 ---------------------------------
14 2 files changed, 41 deletions(-)
15
16 diff --git a/sys-apps/usbredir/Manifest b/sys-apps/usbredir/Manifest
17 index c502009dba7..94ae8fc4b11 100644
18 --- a/sys-apps/usbredir/Manifest
19 +++ b/sys-apps/usbredir/Manifest
20 @@ -1,2 +1 @@
21 -DIST usbredir-0.8.0.tar.bz2 331349 BLAKE2B 0190b4ab35cd554c13b65d30756b7b018e7ce82c72e7dddbaf05b8a704bd8a25724c4ac4759e1b86dfadb64ad7ade75c05365ab9ae3152f8fa60e909bc5e183b SHA512 976274adf08f8691b0961f5238021e988a4347873d0c67576038f44cbdaf25c2bb325d8cede0a507933b719f9715b1508ccd1d8f52fccd36f13a7640553dc108
22 DIST usbredir-0.9.0.tar.bz2 72498 BLAKE2B 857b83795ac082d412b2872a4ca06b1602d556698f3217379698e8b1f54edd09b012600069045ff0f7583703253853998b900f34d861a538047783510b3fb2e9 SHA512 5df62fb6e49161be974776c86f026a58322ccf1c1964447958707408492c02175100ead9dc4a7e77bb7a9112a33b91461d64761425e7aee7d44c71ff6913588a
23
24 diff --git a/sys-apps/usbredir/usbredir-0.8.0.ebuild b/sys-apps/usbredir/usbredir-0.8.0.ebuild
25 deleted file mode 100644
26 index 66e49f807df..00000000000
27 --- a/sys-apps/usbredir/usbredir-0.8.0.ebuild
28 +++ /dev/null
29 @@ -1,40 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit flag-o-matic
36 -
37 -MY_PV=${PV/_p*/}
38 -
39 -DESCRIPTION="TCP daemon and set of libraries for usbredir protocol (redirecting USB traffic)"
40 -HOMEPAGE="https://www.spice-space.org/usbredir.html"
41 -SRC_URI="https://www.spice-space.org/download/usbredir/usbredir-${MY_PV}.tar.bz2"
42 -
43 -LICENSE="GPL-2 LGPL-2.1"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~sparc x86"
46 -IUSE="static-libs"
47 -
48 -RDEPEND="virtual/libusb:1"
49 -DEPEND="${RDEPEND}"
50 -BDEPEND="virtual/pkgconfig"
51 -
52 -S="${WORKDIR}/${PN}-${MY_PV}"
53 -
54 -DOCS="ChangeLog README* TODO *.txt"
55 -
56 -src_configure() {
57 - # https://bugs.freedesktop.org/show_bug.cgi?id=54643
58 - append-cflags -Wno-error
59 -
60 - econf $(use_enable static-libs static)
61 -}
62 -
63 -src_install() {
64 - default
65 - find "${D}" -name '*.la' -delete || die
66 -
67 - # noinst_PROGRAMS
68 - dobin usbredirtestclient/.libs/usbredirtestclient
69 -}