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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 18068139360 for ; Thu, 5 Aug 2021 19:26:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E36FE0839; Thu, 5 Aug 2021 19:26:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36E0CE0839 for ; Thu, 5 Aug 2021 19:26:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E9C5342D43 for ; Thu, 5 Aug 2021 19:26:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA4107B4 for ; Thu, 5 Aug 2021 19:26:23 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1628191582.bd464bc5a96b15eaa72e4e3ff25d4c5d7ee0bd2c.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libao/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libao/libao-1.2.2-r1.ebuild X-VCS-Directories: media-libs/libao/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: bd464bc5a96b15eaa72e4e3ff25d4c5d7ee0bd2c X-VCS-Branch: master Date: Thu, 5 Aug 2021 19:26:23 +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: 92e9df9e-5471-4cab-a81a-b0662481f5ba X-Archives-Hash: d78e87248438014a7b5a5eb72ec2a275 commit: bd464bc5a96b15eaa72e4e3ff25d4c5d7ee0bd2c Author: Miroslav Šulc gentoo org> AuthorDate: Thu Aug 5 19:26:17 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Thu Aug 5 19:26:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd464bc5 media-libs/libao: removed obsolete 1.2.2-r1 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/libao/libao-1.2.2-r1.ebuild | 58 ---------------------------------- 1 file changed, 58 deletions(-) diff --git a/media-libs/libao/libao-1.2.2-r1.ebuild b/media-libs/libao/libao-1.2.2-r1.ebuild deleted file mode 100644 index dda461774e5..00000000000 --- a/media-libs/libao/libao-1.2.2-r1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools multilib multilib-minimal - -DESCRIPTION="The Audio Output library" -HOMEPAGE="https://www.xiph.org/ao/" -#SRC_URI="https://downloads.xiph.org/releases/ao/${P}.tar.gz" -#SRC_URI="https://git.xiph.org/?p=libao.git;a=snapshot;h=refs/tags/${PV};sf=tgz -> ${P}.tar.gz" -SRC_URI="https://github.com/xiph/libao/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-solaris" -IUSE="alsa nas mmap pulseaudio" - -RDEPEND=" - alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] ) - nas? ( >=media-libs/nas-1.9.4[${MULTILIB_USEDEP}] ) - pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] ) -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${P}-implicit.patch -) - -src_prepare() { - default - sed -i "s:/lib:/$(get_libdir):g" ao.m4 || die - eautoreconf -} - -multilib_src_configure() { - local myeconfargs=( - --disable-arts - --disable-esd - --disable-static - $(use_enable alsa alsa) - $(use_enable mmap alsa-mmap) - $(use_enable nas) - $(use_enable pulseaudio pulse) - ) - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" -} - -multilib_src_install() { - emake DESTDIR="${D}" docdir="${EPREFIX}/usr/share/doc/${PF}/html" install -} - -multilib_src_install_all() { - dodoc AUTHORS CHANGES README TODO - - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die -}