summaryrefslogtreecommitdiff
path: root/app-pda
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-02-13 08:16:09 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-02-13 08:16:09 +0000
commit4a74938e510c0dad732ae4c48f815dd0f0cabb46 (patch)
treee8c52cd3619bba6cf0a5c367f6c9d2cff0ac9d80 /app-pda
parentebc282ef4dfa408accac685565b8ee5f6faec119 (diff)
gentoo auto-resync : 13:02:2023 - 08:16:09
Diffstat (limited to 'app-pda')
-rw-r--r--app-pda/Manifest.gzbin2062 -> 2063 bytes
-rw-r--r--app-pda/libusbmuxd/Manifest2
-rw-r--r--app-pda/libusbmuxd/files/libusbmuxd-2.0.2-configure.patch32
-rw-r--r--app-pda/libusbmuxd/libusbmuxd-2.0.2-r2.ebuild40
4 files changed, 74 insertions, 0 deletions
diff --git a/app-pda/Manifest.gz b/app-pda/Manifest.gz
index 4c590997666c..b5df781dab79 100644
--- a/app-pda/Manifest.gz
+++ b/app-pda/Manifest.gz
Binary files differ
diff --git a/app-pda/libusbmuxd/Manifest b/app-pda/libusbmuxd/Manifest
index f84d14e82ecd..cbb46a09155c 100644
--- a/app-pda/libusbmuxd/Manifest
+++ b/app-pda/libusbmuxd/Manifest
@@ -1,3 +1,5 @@
+AUX libusbmuxd-2.0.2-configure.patch 1585 BLAKE2B baa74e74c6c53db3c4962126d3fb98a10daa9f4e180c29b0b20fe78d58d4eca9b7752231229d2eb4d704459e4567e672504ebe504a0dbd4f88e8be869e6b59ac SHA512 d97fccba6128c54e281201753027a90617756d5bc78e7b16eb2cb0f3d598411bf98c7c8247a2758a1e971c1abff485ab5fe8d061966c62853a4e6037c8bd2f0b
DIST libusbmuxd-2.0.2.tar.bz2 43162 BLAKE2B e3559583e691a5f87a61ffece0ebf944d4aed48d37f83a504ee4d7a245e05511c6620c4a82d29bea2a10686910a14f7a730afec0f2cfc9435f748499e35df433 SHA512 3086ce1a05026afeabcdb5364ec30f4a6a5c84fe6f09e15ef6ff438bd3dfdb262ebdff94e5e0d0828b6d946bc8bdf01760271ba0d1fbf98d743dce149764a519
EBUILD libusbmuxd-2.0.2-r1.ebuild 853 BLAKE2B 84daf75a45c23f183db4a62a0e7591a311545709d5b711f55c1b41fd254f265d9f755821ac997b638c0b9172f1edc2f6d7e4b6a4ea723c5bd9be28f687621f8b SHA512 fe1d2d359b1268e8ca1f101a7f5c72f6f613794018e4a8c92e9e0554e53793b0ae254fd8a6f171f6bc71f06765e116a1be369995769452744b21585a73e5ea8b
+EBUILD libusbmuxd-2.0.2-r2.ebuild 913 BLAKE2B bbcef7e6523f9342fe64f947c56f25824338df6aa5866d1154b429625f809002e105bfcbe0b5f6840e161e013a482b8aa31ed652d49b863322fbeac4a774dc61 SHA512 2125629076978e4ad7d6b2e561ce5c99c6e8a6a3c15d50aaeb0d69f209d42b82aebd7aef4b922877255de847078e087df5e4cafe96e9dbd82ae447170b76f71f
MISC metadata.xml 340 BLAKE2B bcf0c0d0cfae28302d4519f1008dec7fa9f79c76dddda394cfe08f8bba3af2566d738f9ade604deef9a319f2c831dea8ff141e0ea6a7c600966a8dbbd1af220c SHA512 a2089bffa4032011d160898d7dedd1f5825f6fb67296c8c1caf2d10fd4e1484dcecde2e1866ae7a23535925481bb02914d825fc62bf22e5b2d0e5c131113643d
diff --git a/app-pda/libusbmuxd/files/libusbmuxd-2.0.2-configure.patch b/app-pda/libusbmuxd/files/libusbmuxd-2.0.2-configure.patch
new file mode 100644
index 000000000000..e8db338d65b7
--- /dev/null
+++ b/app-pda/libusbmuxd/files/libusbmuxd-2.0.2-configure.patch
@@ -0,0 +1,32 @@
+From 84fb81483703dfcc26e784256b6a19d75e8e58ee Mon Sep 17 00:00:00 2001
+From: Matthew Smith <matthew@gentoo.org>
+Date: Sun, 12 Feb 2023 10:18:02 +0000
+Subject: [PATCH] autoconf: Fix -Wint-conversion in test
+
+-Wint-conversion becomes an error by default in clang-16, causing the
+program_invocation_short_name test to fail.
+
+Bug: https://bugs.gentoo.org/893910
+--- a/configure.ac
++++ b/configure.ac
+@@ -87,7 +87,7 @@ case ${host_os} in
+ ])
+ AC_CHECK_FUNCS([pselect])
+ AC_CACHE_CHECK(for program_invocation_short_name, ac_cv_program_invocation_short_name,[
+- AC_TRY_LINK([extern char* program_invocation_short_name;],[return program_invocation_short_name;],
++ AC_TRY_LINK([extern char* program_invocation_short_name;],[return program_invocation_short_name[0];],
+ [ac_cv_program_invocation_short_name=yes],
+ [ac_cv_program_invocation_short_name=no]
+ )
+@@ -95,7 +95,7 @@ case ${host_os} in
+ if test "x$ac_cv_program_invocation_short_name" = "xyes"; then
+ AC_DEFINE(HAVE_PROGRAM_INVOCATION_SHORT_NAME, 1, [Define if you have program_invocation_short_name])
+ AC_CACHE_CHECK(if program_invocation_short_name is declared in errno.h, ac_cv_program_invocation_short_name_errno_h,[
+- AC_TRY_LINK([#include <errno.h>],[return program_invocation_short_name;],
++ AC_TRY_LINK([#include <errno.h>],[return program_invocation_short_name[0];],
+ [ac_cv_program_invocation_short_name_errno_h=yes],
+ [ac_cv_program_invocation_short_name_errno_h=no]
+ )
+--
+2.39.1
+
diff --git a/app-pda/libusbmuxd/libusbmuxd-2.0.2-r2.ebuild b/app-pda/libusbmuxd/libusbmuxd-2.0.2-r2.ebuild
new file mode 100644
index 000000000000..ecc027368941
--- /dev/null
+++ b/app-pda/libusbmuxd/libusbmuxd-2.0.2-r2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="USB multiplex daemon for use with Apple iPhone/iPod Touch devices"
+HOMEPAGE="https://www.libimobiledevice.org/"
+SRC_URI="https://cgit.libimobiledevice.org/${PN}.git/snapshot/${P}.tar.bz2"
+LICENSE="GPL-2+ LGPL-2.1+" # tools/*.c is GPL-2+, rest is LGPL-2.1+
+SLOT="0/2.0-6" # based on SONAME of libusbmuxd-2.0.so
+KEYWORDS="amd64 ~arm ~arm64 ~loong ppc ~ppc64 ~riscv x86"
+IUSE="static-libs"
+
+RDEPEND="
+ >=app-pda/libplist-2.2.0:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+"
+
+PATCHES=( "${FILESDIR}"/libusbmuxd-2.0.2-configure.patch )
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ $(use_enable static-libs static) \
+ $(usex kernel_linux '' --without-inotify)
+}
+
+src_install() {
+ default
+ find "${D}" -name '*.la' -type f -delete || die
+}