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 D6B48138334 for ; Sat, 17 Nov 2018 18:39:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76C3CE0B83; Sat, 17 Nov 2018 18:39:52 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4882FE0B64 for ; Sat, 17 Nov 2018 18:39:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 0F079335C5A for ; Sat, 17 Nov 2018 18:39:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95352475 for ; Sat, 17 Nov 2018 18:39:46 +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: <1542479965.8f1d59eb1a77d7f5c74406358054be1e01c77d89.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/rubberband/rubberband-1.8.1-r1.ebuild X-VCS-Directories: media-libs/rubberband/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8f1d59eb1a77d7f5c74406358054be1e01c77d89 X-VCS-Branch: master Date: Sat, 17 Nov 2018 18:39:46 +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-Archives-Salt: 67090dee-38b7-49c4-8998-cb3f9fa6ac5d X-Archives-Hash: 8023e28c6cd9e6678fc5e4f7979de247 commit: 8f1d59eb1a77d7f5c74406358054be1e01c77d89 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Nov 17 17:16:32 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Nov 17 18:39:25 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f1d59eb media-libs/rubberband: Drop old Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/rubberband/rubberband-1.8.1-r1.ebuild | 46 ------------------------ 1 file changed, 46 deletions(-) diff --git a/media-libs/rubberband/rubberband-1.8.1-r1.ebuild b/media-libs/rubberband/rubberband-1.8.1-r1.ebuild deleted file mode 100644 index 2fb849c626b..00000000000 --- a/media-libs/rubberband/rubberband-1.8.1-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit multilib multilib-minimal - -DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" -HOMEPAGE="https://www.breakfastquay.com/rubberband/" -SRC_URI="https://code.breakfastquay.com/attachments/download/34/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~sparc x86" -IUSE="static-libs" - -RDEPEND="media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] - media-libs/libsamplerate[${MULTILIB_USEDEP}] - media-libs/libsndfile - media-libs/ladspa-sdk - sci-libs/fftw:3.0[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - if ! use static-libs ; then - sed -e '/^all:/s/$(STATIC_TARGET)//' \ - -e '/^\tcp $(STATIC_TARGET)/d' \ - -i Makefile.in || die - fi - multilib_copy_sources -} - -multilib_src_install() { - emake INSTALL_BINDIR="${D}/usr/bin" \ - INSTALL_INCDIR="${D}/usr/include/rubberband" \ - INSTALL_LIBDIR="${D}/usr/$(get_libdir)" \ - INSTALL_VAMPDIR="${D}/usr/$(get_libdir)/vamp" \ - INSTALL_LADSPADIR="${D}/usr/$(get_libdir)/ladspa" \ - INSTALL_LRDFDIR="${D}/usr/share/ladspa/rdf" \ - INSTALL_PKGDIR="${D}/usr/$(get_libdir)/pkgconfig" \ - install -} - -multilib_src_install_all() { - dodoc CHANGELOG README.txt -}