Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-pda/libusbmuxd/
Date: Wed, 18 Sep 2019 21:29:39
Message-Id: 1568842117.9cc588ab23c7f57b7e042af423a8949a0734400a.whissi@gentoo
1 commit: 9cc588ab23c7f57b7e042af423a8949a0734400a
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 18 21:22:28 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 18 21:28:37 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cc588ab
7
8 app-pda/libusbmuxd: restore v1.0.9
9
10 Fixes commit 9998a93ab8c86a06e8e9898b569ff5cfd789c694 which
11 deleted last stable version.
12
13 Package-Manager: Portage-2.3.76, Repoman-2.3.17
14 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
15
16 app-pda/libusbmuxd/Manifest | 1 +
17 app-pda/libusbmuxd/libusbmuxd-1.0.9.ebuild | 32 ++++++++++++++++++++++++++++++
18 2 files changed, 33 insertions(+)
19
20 diff --git a/app-pda/libusbmuxd/Manifest b/app-pda/libusbmuxd/Manifest
21 index f64f038a972..5b46379db69 100644
22 --- a/app-pda/libusbmuxd/Manifest
23 +++ b/app-pda/libusbmuxd/Manifest
24 @@ -1 +1,2 @@
25 DIST libusbmuxd-1.0.10.tar.bz2 292649 BLAKE2B 7ec9a576cb20f7e87cf1f31e57e66100c496e5809142d225df9b3cc295a71546bed2d90f41df3144f7316ce0aec5f08fad850c528e27f336bf96e9578bcffd04 SHA512 180cde2e9d0860d07d29813e68abf8ca807f75e98424b50acfc1ce941ba4260922959e1047a7d2bc754470c08ed55d0a15c9367487bd41c635a52b4fbf8ff535
26 +DIST libusbmuxd-1.0.9.tar.bz2 265940 BLAKE2B fbdb5ac441a3bcda41b752737f6a5fa9975948d67abf5b1edd9b3e3f749ea65486892af3c679cfcfa5f8d9052f8d35c6a5b0a3a95d07c65385ca28ff7a2b8633 SHA512 f50ee580ac9b4c5e55ab596aabb0bdc09f710cc58edba98699499998c44f2b2cf064792390f235b2221af494ce3233acda699652066b9297cc3cb4e9f8a1cfa4
27
28 diff --git a/app-pda/libusbmuxd/libusbmuxd-1.0.9.ebuild b/app-pda/libusbmuxd/libusbmuxd-1.0.9.ebuild
29 new file mode 100644
30 index 00000000000..53333b33da7
31 --- /dev/null
32 +++ b/app-pda/libusbmuxd/libusbmuxd-1.0.9.ebuild
33 @@ -0,0 +1,32 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=5
38 +inherit autotools-utils
39 +
40 +DESCRIPTION="USB multiplex daemon for use with Apple iPhone/iPod Touch devices"
41 +HOMEPAGE="http://www.libimobiledevice.org/"
42 +SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2"
43 +
44 +# tools/iproxy.c is GPL-2+, everything else is LGPL-2.1+
45 +LICENSE="GPL-2+ LGPL-2.1+"
46 +SLOT="0/2" # based on SONAME of libusbmuxd.so
47 +KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86"
48 +IUSE="kernel_linux static-libs"
49 +
50 +RDEPEND=">=app-pda/libplist-1.11:=
51 + virtual/libusb:1
52 + !=app-pda/usbmuxd-1.0.9
53 + !<app-pda/usbmuxd-1.0.8_p1"
54 +DEPEND="${RDEPEND}
55 + virtual/os-headers
56 + virtual/pkgconfig"
57 +
58 +DOCS=( AUTHORS README )
59 +
60 +src_configure() {
61 + local myeconfargs=( $(use_enable static-libs static) )
62 + use kernel_linux || myeconfargs+=( --without-inotify )
63 +
64 + autotools-utils_src_configure
65 +}