From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F26A3158004 for ; Sun, 16 Jul 2023 17:59:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4A13E087F; Sun, 16 Jul 2023 17:59:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5160E088B for ; Sun, 16 Jul 2023 17:59:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 91EB9340D5C for ; Sun, 16 Jul 2023 17:59:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1966B57 for ; Sun, 16 Jul 2023 17:59:05 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1689530220.8c71042a6e6b99c3eabe5845754809745cd74134.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-pda/usbmuxd/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-pda/usbmuxd/usbmuxd-1.1.1-r1.ebuild X-VCS-Directories: app-pda/usbmuxd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8c71042a6e6b99c3eabe5845754809745cd74134 X-VCS-Branch: master Date: Sun, 16 Jul 2023 17:59:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b5b04324-85b4-48a1-91c9-b35fe366c527 X-Archives-Hash: c45c63a416998b9b95070cc0d9e6062e commit: 8c71042a6e6b99c3eabe5845754809745cd74134 Author: BalkanMadman gmail com> AuthorDate: Sun Jul 9 20:03:55 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jul 16 17:57:00 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c71042a app-pda/usbmuxd: revbump, close 3 bugs, update EAPI 7 -> 8 Updated dependencies, its required versions, added systemd dependcy when corresponding USE flag is set, removed redundant autotools eclass, added udev_reload. Closes: https://bugs.gentoo.org/854843 Closes: https://bugs.gentoo.org/732984 Closes: https://bugs.gentoo.org/732912 Signed-off-by: BalkanMadman gmail.com> Closes: https://github.com/gentoo/gentoo/pull/31769 Signed-off-by: Sam James gentoo.org> app-pda/usbmuxd/usbmuxd-1.1.1-r1.ebuild | 49 +++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/app-pda/usbmuxd/usbmuxd-1.1.1-r1.ebuild b/app-pda/usbmuxd/usbmuxd-1.1.1-r1.ebuild new file mode 100644 index 000000000000..e7f3c8e166d5 --- /dev/null +++ b/app-pda/usbmuxd/usbmuxd-1.1.1-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit systemd udev + +DESCRIPTION="USB multiplex daemon for use with Apple iPhone/iPod Touch devices" +HOMEPAGE="https://libimobiledevice.org/" +SRC_URI="https://github.com/libimobiledevice/usbmuxd/releases/download/${PV}/${P}.tar.bz2" + +# src/utils.h is LGPL-2.1+, rest is found in COPYING* +LICENSE="|| ( GPL-2 GPL-3 ) LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="selinux systemd" + +DEPEND=" + acct-user/usbmux + >=app-pda/libimobiledevice-1.3.0:= + >=app-pda/libplist-2.2:= + virtual/libusb:1= +" + +RDEPEND=" + ${DEPEND} + virtual/udev + selinux? ( sec-policy/selinux-usbmuxd ) + systemd? ( sys-apps/systemd ) +" + +BDEPEND=" + virtual/pkgconfig +" + +src_configure() { + econf \ + "$(use_with systemd)" \ + --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" \ + --with-udevrulesdir="$(get_udevdir)"/rules.d +} + +pkg_postrm() { + udev_reload +} + +pkg_postinst() { + udev_reload +}