From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id C88E31580E0 for ; Thu, 30 Jan 2025 16:18:45 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id A88D4343141 for ; Thu, 30 Jan 2025 16:18:45 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 054B311046F; Thu, 30 Jan 2025 16:18:41 +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 bobolink.gentoo.org (Postfix) with ESMTPS id EBA9511046F for ; Thu, 30 Jan 2025 16:18:40 +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 99FA73430C6 for ; Thu, 30 Jan 2025 16:18:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0241A2195 for ; Thu, 30 Jan 2025 16:18:39 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1738253369.8a5295760e8820fc6a9d3f11af065c96027d7c07.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/ario/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/ario/ario-1.6.ebuild X-VCS-Directories: media-sound/ario/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8a5295760e8820fc6a9d3f11af065c96027d7c07 X-VCS-Branch: master Date: Thu, 30 Jan 2025 16:18:39 +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: 07ec0bcf-fd69-4ed0-b950-4266ea1bae9e X-Archives-Hash: 4dbc4f19bebcdfa57333d9be9e1e11f6 commit: 8a5295760e8820fc6a9d3f11af065c96027d7c07 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jan 30 16:09:29 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jan 30 16:09:29 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a529576 media-sound/ario: drop 1.6 Closes: https://bugs.gentoo.org/949034 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/ario/ario-1.6.ebuild | 61 ---------------------------------------- 1 file changed, 61 deletions(-) diff --git a/media-sound/ario/ario-1.6.ebuild b/media-sound/ario/ario-1.6.ebuild deleted file mode 100644 index 146a08529efc..000000000000 --- a/media-sound/ario/ario-1.6.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit xdg-utils - -DESCRIPTION="GTK client for MPD inspired by Rhythmbox but much lighter and faster" -HOMEPAGE="http://ario-player.sourceforge.net" -SRC_URI="https://downloads.sourceforge.net/${PN}-player/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="dbus debug +idle nls taglib zeroconf" - -RDEPEND="dev-libs/glib:2 - dev-libs/libxml2:2 - media-libs/libmpdclient - net-misc/curl - x11-libs/gtk+:3 - dbus? ( dev-libs/dbus-glib ) - taglib? ( media-libs/taglib ) - zeroconf? ( net-dns/avahi )" -DEPEND="${RDEPEND}" -BDEPEND="dev-util/intltool - virtual/pkgconfig - nls? ( sys-devel/gettext )" - -DOCS=( AUTHORS ) - -src_configure() { - local myconf=( - --disable-static - --disable-xmms2 - --enable-libmpdclient2 - --enable-search - --enable-playlists - --disable-deprecations - $(use_enable dbus) - $(use_enable debug) - $(use_enable idle mpdidle) - $(use_enable nls) - $(use_enable taglib) - $(use_enable zeroconf avahi) - ) - econf "${myconf[@]}" -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -} - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -}