Gentoo Archives: gentoo-commits

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