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 16D23138334 for ; Sat, 27 Oct 2018 12:19:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BAE1E08B1; Sat, 27 Oct 2018 12:19:24 +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 3845DE089E for ; Sat, 27 Oct 2018 12:19:24 +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 DC0D5335C31 for ; Sat, 27 Oct 2018 12:19:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E37743D for ; Sat, 27 Oct 2018 12:19:21 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1540642759.6f13a8e6110bc0b55c726d71819b1fc4aea5a996.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: media-libs/avbin-bin/ X-VCS-Repository: proj/sci X-VCS-Files: media-libs/avbin-bin/avbin-bin-7.ebuild X-VCS-Directories: media-libs/avbin-bin/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 6f13a8e6110bc0b55c726d71819b1fc4aea5a996 X-VCS-Branch: master Date: Sat, 27 Oct 2018 12:19:21 +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: dd3ba8fb-4e35-4c85-b37e-8b88ca76a288 X-Archives-Hash: d5c7cec5ac5c687d19a49cf9154b923f commit: 6f13a8e6110bc0b55c726d71819b1fc4aea5a996 Author: Justin Lecher gentoo org> AuthorDate: Thu Jun 21 20:48:56 2018 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Oct 27 12:19:19 2018 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6f13a8e6 media-libs/avbin-bin: Clean old Signed-off-by: Justin Lecher gentoo.org> Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-libs/avbin-bin/avbin-bin-7.ebuild | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/media-libs/avbin-bin/avbin-bin-7.ebuild b/media-libs/avbin-bin/avbin-bin-7.ebuild deleted file mode 100644 index 180439259..000000000 --- a/media-libs/avbin-bin/avbin-bin-7.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="A thin wrapper around FFmpeg" -HOMEPAGE="http://avbin.github.io/" -SRC_URI=" - amd64? ( mirror://github/AVbin/AVbin/avbin-linux-x86-64-${PV}.tar.gz ) - x86? ( mirror://github/AVbin/AVbin/avbin-linux-x86-32-${PV}.tar.gz )" - -LICENSE="GPL-3 LGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86 -*" -IUSE="" - -pkg_setup(){ - if use amd64; then - S="${WORKDIR}"/avbin-linux-x86-64-${PV} - elif use x86; then - S="${WORKDIR}"/avbin-linux-x86-32-${PV} - fi -} -src_install() { - ln -s libavbin.so.${PV} libavbin.so || die - dolib libavbin.so* -}