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 3E2DE1581E7 for ; Sat, 27 Apr 2024 21:49:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42F77E29EF; Sat, 27 Apr 2024 21:49:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 2BF99E29EF for ; Sat, 27 Apr 2024 21:49:45 +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 6AA6B342FFE for ; Sat, 27 Apr 2024 21:49:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F05EE170E for ; Sat, 27 Apr 2024 21:49:42 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1714254562.7f657cdb7eb8113025c4b353e45e65909fea8e3f.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libgpod/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libgpod/libgpod-0.8.3-r5.ebuild X-VCS-Directories: media-libs/libgpod/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 7f657cdb7eb8113025c4b353e45e65909fea8e3f X-VCS-Branch: master Date: Sat, 27 Apr 2024 21:49:42 +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: fc3b3687-c989-47fb-8d36-3d22846d5a49 X-Archives-Hash: c87da35c1f1506b7b089589c1b23f15f commit: 7f657cdb7eb8113025c4b353e45e65909fea8e3f Author: James Le Cuirot gentoo org> AuthorDate: Sat Apr 27 21:33:53 2024 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sat Apr 27 21:49:22 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f657cdb media-libs/libgpod: Drop old 0.8.3-r5 Signed-off-by: James Le Cuirot gentoo.org> media-libs/libgpod/libgpod-0.8.3-r5.ebuild | 69 ------------------------------ 1 file changed, 69 deletions(-) diff --git a/media-libs/libgpod/libgpod-0.8.3-r5.ebuild b/media-libs/libgpod/libgpod-0.8.3-r5.ebuild deleted file mode 100644 index 741b728b3b47..000000000000 --- a/media-libs/libgpod/libgpod-0.8.3-r5.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools udev - -DESCRIPTION="Shared library to access the contents of an iPod" -HOMEPAGE="http://www.gtkpod.org/libgpod/" -SRC_URI="mirror://sourceforge/gtkpod/${P}.tar.bz2" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ~riscv x86" -IUSE="+gtk ios +udev" - -RDEPEND=" - >=app-pda/libplist-1.0:= - >=dev-db/sqlite-3:3 - >=dev-libs/glib-2.16:2 - dev-libs/libxml2:2 - sys-apps/sg3_utils:0= - gtk? ( x11-libs/gdk-pixbuf:2 ) - ios? ( app-pda/libimobiledevice:= ) - udev? ( virtual/udev ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - dev-libs/libxslt - dev-util/intltool - dev-build/gtk-doc-am - sys-devel/gettext - virtual/pkgconfig -" - -DOCS=( AUTHORS NEWS README{,.overview,.sqlite,.SysInfo} TROUBLESHOOTING ) - -PATCHES=( - "${FILESDIR}"/${P}-comment.patch # bug 537968 - "${FILESDIR}"/${P}-segfault.patch # bug 565052 - "${FILESDIR}"/${P}-pkgconfig_overlinking.patch -) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myeconfargs=( - --disable-pygobject - --disable-static - --without-hal - --without-mono - --without-python - --with-udev-dir="$(get_udevdir)" - $(use_enable gtk gdk-pixbuf) - $(use_with ios libimobiledevice) - $(use_enable udev) - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - rm "${ED}"/usr/$(get_libdir)/pkgconfig/libgpod-sharp.pc || die - rmdir "${ED}"/tmp || die - find "${ED}" -name '*.la' -type f -delete || die -}