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 B8EC9158041 for ; Wed, 13 Mar 2024 14:17:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B8FAE29BF; Wed, 13 Mar 2024 14:17:18 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E08B6E29BE for ; Wed, 13 Mar 2024 14:17:17 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 026B133BEF1 for ; Wed, 13 Mar 2024 14:17:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 939DC13DE for ; Wed, 13 Mar 2024 14:17:15 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1710339366.ef149dd8b4f15eec5824d43b6fc1e8cb1e266307.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-pda/libimobiledevice-glue/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-pda/libimobiledevice-glue/Manifest app-pda/libimobiledevice-glue/libimobiledevice-glue-1.1.0.ebuild app-pda/libimobiledevice-glue/metadata.xml X-VCS-Directories: app-pda/libimobiledevice-glue/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: ef149dd8b4f15eec5824d43b6fc1e8cb1e266307 X-VCS-Branch: master Date: Wed, 13 Mar 2024 14:17:15 +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: bf4abae8-7582-424d-8053-e5d879e197fa X-Archives-Hash: fa508305968eb03ea524f0845be4a2b4 commit: ef149dd8b4f15eec5824d43b6fc1e8cb1e266307 Author: Matthew Smith gentoo org> AuthorDate: Wed Mar 13 13:51:44 2024 +0000 Commit: Matthew Smith gentoo org> CommitDate: Wed Mar 13 14:16:06 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef149dd8 app-pda/libimobiledevice-glue: new package, add 1.1.0 Signed-off-by: Matthew Smith gentoo.org> app-pda/libimobiledevice-glue/Manifest | 1 + .../libimobiledevice-glue-1.1.0.ebuild | 21 +++++++++++++++++++++ app-pda/libimobiledevice-glue/metadata.xml | 11 +++++++++++ 3 files changed, 33 insertions(+) diff --git a/app-pda/libimobiledevice-glue/Manifest b/app-pda/libimobiledevice-glue/Manifest new file mode 100644 index 000000000000..309afdf12745 --- /dev/null +++ b/app-pda/libimobiledevice-glue/Manifest @@ -0,0 +1 @@ +DIST libimobiledevice-glue-1.1.0.tar.bz2 324600 BLAKE2B 3fcd92de24884d73b83767ace135246c45b60b1221a9937b7d8d4e42f4ccc2105e1f88854682bcef3002af22913df76f61a40d0bece20a354def1b54e260d242 SHA512 5d3522f764bd33a847ec1773d6493a2671965f2432b569d7e2c98746dca7440188823e46a405893d936f725c6bc522bd273b16234e8780cf87b602fc395bdf75 diff --git a/app-pda/libimobiledevice-glue/libimobiledevice-glue-1.1.0.ebuild b/app-pda/libimobiledevice-glue/libimobiledevice-glue-1.1.0.ebuild new file mode 100644 index 000000000000..3603c10d4f10 --- /dev/null +++ b/app-pda/libimobiledevice-glue/libimobiledevice-glue-1.1.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Support library for libimobiledevice projects" +HOMEPAGE="https://github.com/libimobiledevice/libimobiledevice-glue" +SRC_URI="https://github.com/libimobiledevice/libimobiledevice-glue/releases/download/${PV}/${P}.tar.bz2" + +LICENSE="LGPL-2.1+" +SLOT="0/0.1.0" +KEYWORDS="~amd64" + +RDEPEND=">=app-pda/libplist-2.3:=" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} diff --git a/app-pda/libimobiledevice-glue/metadata.xml b/app-pda/libimobiledevice-glue/metadata.xml new file mode 100644 index 000000000000..4f1857e5d278 --- /dev/null +++ b/app-pda/libimobiledevice-glue/metadata.xml @@ -0,0 +1,11 @@ + + + + + matthew@gentoo.org + Matthew Smith + + + libimobiledevice/libimobiledevice-glue + +