Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/usbredir/
Date: Sun, 28 Jul 2019 19:39:12
Message-Id: 1564342683.889211258e88bf4578901e73557768e05f10d945.tamiko@gentoo
1 commit: 889211258e88bf4578901e73557768e05f10d945
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 28 19:26:01 2019 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 28 19:38:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88921125
7
8 sys-apps/usbredir: version bump to 0.8.0
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
12
13 sys-apps/usbredir/Manifest | 1 +
14 sys-apps/usbredir/usbredir-0.8.0.ebuild | 39 +++++++++++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/sys-apps/usbredir/Manifest b/sys-apps/usbredir/Manifest
18 index 1bc452f0087..4765906a53e 100644
19 --- a/sys-apps/usbredir/Manifest
20 +++ b/sys-apps/usbredir/Manifest
21 @@ -1,3 +1,4 @@
22 DIST usbredir-0.7.1.tar.bz2 329895 BLAKE2B 7017b1441c2265c9e58532bcc8718844e6f64c7272ad599a8cf5f6e21f694524e05da2d8672c4892faa7b744be46bdfff521dbcb4944715d45b24d5925972ac4 SHA512 f8d26d59d5a530aa413fabe2402fbbd9662760453c2b4e83d34f2e5287c188114ea870f15ae1bc910297649986315be965f0d23d0a2b7b0cec2f207fc65d7598
23 DIST usbredir-0.7.1_p20170503-patches.tar.xz 8120 BLAKE2B 21c7a853b3d5329fcca45169e22135bce615c9422f314f680f1087014d64179bf26f07bdb377bcff48155f28a37dec82b0bee8bce4d868e41614b128fe61b95a SHA512 b281d7a1ee191746e5fbe655b21c0cd9b2cf9cd69d5f28d91ab41de2d62a7f3c5c2a42f3f9c40c73d61a57d89423d996f4a779ebdff8f9d088030c2a4c2a24a7
24 DIST usbredir-0.7.1_p20180211-patches.tar.xz 12508 BLAKE2B 57479444752070147583a0cc2f6651a32c8a618756638ae04928dda7082214d501fb5122a0f5d02aca994be0a386a8e493628faa240f61987dbd02d2fcfa679a SHA512 993c7ad5faf66f249546e1a631a10cd842439486de029ed2fff049b70967cb0a6ad45fb773a1c97fd6811e246f4cc4c7482522393dcc74b26ba2646a83ac70c8
25 +DIST usbredir-0.8.0.tar.bz2 331349 BLAKE2B 0190b4ab35cd554c13b65d30756b7b018e7ce82c72e7dddbaf05b8a704bd8a25724c4ac4759e1b86dfadb64ad7ade75c05365ab9ae3152f8fa60e909bc5e183b SHA512 976274adf08f8691b0961f5238021e988a4347873d0c67576038f44cbdaf25c2bb325d8cede0a507933b719f9715b1508ccd1d8f52fccd36f13a7640553dc108
26
27 diff --git a/sys-apps/usbredir/usbredir-0.8.0.ebuild b/sys-apps/usbredir/usbredir-0.8.0.ebuild
28 new file mode 100644
29 index 00000000000..c60e61e7189
30 --- /dev/null
31 +++ b/sys-apps/usbredir/usbredir-0.8.0.ebuild
32 @@ -0,0 +1,39 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +inherit eutils flag-o-matic
38 +
39 +MY_PV=${PV/_p*/}
40 +
41 +DESCRIPTION="TCP daemon and set of libraries for usbredir protocol (redirecting USB traffic)"
42 +HOMEPAGE="https://www.spice-space.org/usbredir.html"
43 +SRC_URI="https://www.spice-space.org/download/usbredir/usbredir-${MY_PV}.tar.bz2"
44 +
45 +LICENSE="GPL-2 LGPL-2.1"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
48 +IUSE="static-libs"
49 +
50 +RDEPEND="virtual/libusb:1"
51 +DEPEND="${RDEPEND}
52 + virtual/pkgconfig"
53 +
54 +S="${WORKDIR}/${PN}-${MY_PV}"
55 +
56 +DOCS="ChangeLog README* TODO *.txt"
57 +
58 +src_configure() {
59 + # https://bugs.freedesktop.org/show_bug.cgi?id=54643
60 + append-cflags -Wno-error
61 +
62 + econf $(use_enable static-libs static)
63 +}
64 +
65 +src_install() {
66 + default
67 + prune_libtool_files
68 +
69 + # noinst_PROGRAMS
70 + dobin usbredirtestclient/.libs/usbredirtestclient
71 +}