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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3448615800A for ; Fri, 4 Aug 2023 06:09:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D8CFE0DA1; Fri, 4 Aug 2023 06:09:29 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 61A7BE0DA1 for ; Fri, 4 Aug 2023 06:09:29 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4ECC1340DD9 for ; Fri, 4 Aug 2023 06:09:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9869EEB for ; Fri, 4 Aug 2023 06:09:26 +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: <1691129358.1bb5b937d3fe4e486b75c35c374fad98c4a9abac.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmp4v2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libmp4v2/libmp4v2-2.1.3.ebuild X-VCS-Directories: media-libs/libmp4v2/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 1bb5b937d3fe4e486b75c35c374fad98c4a9abac X-VCS-Branch: master Date: Fri, 4 Aug 2023 06:09:26 +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: a569a757-7a91-4bd8-968a-d9e9e42ceaa4 X-Archives-Hash: dd96a16b58af1263c40a9f8ada95b83d commit: 1bb5b937d3fe4e486b75c35c374fad98c4a9abac Author: Miroslav Šulc gentoo org> AuthorDate: Fri Aug 4 06:09:18 2023 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Fri Aug 4 06:09:18 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bb5b937 media-libs/libmp4v2: dropped obsolete 2.1.3 Bug: https://bugs.gentoo.org/909727 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/libmp4v2/libmp4v2-2.1.3.ebuild | 32 ------------------------------- 1 file changed, 32 deletions(-) diff --git a/media-libs/libmp4v2/libmp4v2-2.1.3.ebuild b/media-libs/libmp4v2/libmp4v2-2.1.3.ebuild deleted file mode 100644 index 0bb89cf76f11..000000000000 --- a/media-libs/libmp4v2/libmp4v2-2.1.3.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MY_P=${P/lib} - -inherit cmake - -DESCRIPTION="Functions for accessing ISO-IEC:14496-1:2001 MPEG-4 standard" -HOMEPAGE="https://mp4v2.org/" -SRC_URI="https://github.com/enzo1982/mp4v2/releases/download/v${PV}/${MY_P}.tar.bz2" - -LICENSE="MPL-1.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="utils" -# Tests need DejaGnu but are non-existent (just an empty framework) -RESTRICT="test" - -S="${WORKDIR}/${MY_P}" - -PATCHES=( - "${FILESDIR}/${PN}-2.0.0-unsigned-int-cast.patch" -) - -src_configure() { - local mycmakeargs=( - -DBUILD_UTILS=$(usex utils) - ) - cmake_src_configure -}