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 4E0A81396D9 for ; Mon, 20 Nov 2017 19:56:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88690E0EAC; Mon, 20 Nov 2017 19:56:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 658C3E0EAC for ; Mon, 20 Nov 2017 19:56:15 +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 ABC3F33BF43 for ; Mon, 20 Nov 2017 19:56:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 406CFA1B1 for ; Mon, 20 Nov 2017 19:56:12 +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: <1511207739.72f42a8bf93b85981cee5f778a0598d8b2de3a06.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libde265/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libde265/libde265-0.9.ebuild X-VCS-Directories: media-libs/libde265/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 72f42a8bf93b85981cee5f778a0598d8b2de3a06 X-VCS-Branch: master Date: Mon, 20 Nov 2017 19:56:12 +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: 8893c0a9-9501-41aa-ba97-09885fd6c47b X-Archives-Hash: e1212140628923d16a9155e4df4ef646 commit: 72f42a8bf93b85981cee5f778a0598d8b2de3a06 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Nov 20 19:53:06 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Nov 20 19:55:39 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f42a8b media-libs/libde265: Drop old media-libs/libde265/libde265-0.9.ebuild | 42 --------------------------------- 1 file changed, 42 deletions(-) diff --git a/media-libs/libde265/libde265-0.9.ebuild b/media-libs/libde265/libde265-0.9.ebuild deleted file mode 100644 index ab212e6e991..00000000000 --- a/media-libs/libde265/libde265-0.9.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -AUTOTOOLS_IN_SOURCE_BUILD=1 -AUTOTOOLS_AUTORECONF=1 -inherit autotools-multilib - -DESCRIPTION="Open h.265 video codec implementation" -HOMEPAGE="https://github.com/strukturag/libde265" -SRC_URI="https://github.com/strukturag/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug qt4 qt5 static-libs cpu_flags_x86_sse tools" - -DEPEND=" - qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 ) - qt5? ( dev-qt/qtgui:5 dev-qt/qtcore:5 dev-qt/qtwidgets:5 ) - media-libs/libsdl - virtual/ffmpeg -" -RDEPEND="${DEPEND}" - -REQUIRED_USE="tools? ( || ( qt4 qt5 ) )" - -src_configure() { - local myeconfargs=( - $(use_enable cpu_flags_x86_sse sse) - $(use_enable static-libs static) - $(use_enable debug log-info) - $(use_enable debug log-debug) - $(use_enable debug log-trace) - $(use_enable tools dec265) - $(use_enable tools sherlock265) - --disable-silent-rules - --enable-log-error - ) - autotools-multilib_src_configure "${myeconfargs[@]}" -}