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 296771581D3 for ; Thu, 23 May 2024 19:29:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 626A7E2A15; Thu, 23 May 2024 19:29:18 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 450CCE2A15 for ; Thu, 23 May 2024 19:29:18 +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 3F0EB33BF60 for ; Thu, 23 May 2024 19:29:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD9A71A2E for ; Thu, 23 May 2024 19:29:15 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1716492532.26bd265c33c5f2e6974eb0bcad6e89f1a864ebdf.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libfpx/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libfpx/libfpx-1.3.1_p10.ebuild X-VCS-Directories: media-libs/libfpx/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 26bd265c33c5f2e6974eb0bcad6e89f1a864ebdf X-VCS-Branch: master Date: Thu, 23 May 2024 19:29:15 +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: c4a1214c-d401-4fe8-a2fd-b2b45c761eba X-Archives-Hash: f465a35df43d81c840cf3d49dbfc4c80 commit: 26bd265c33c5f2e6974eb0bcad6e89f1a864ebdf Author: Arthur Zamarin gentoo org> AuthorDate: Thu May 23 19:28:52 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Thu May 23 19:28:52 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26bd265c media-libs/libfpx: drop 1.3.1_p10 Signed-off-by: Arthur Zamarin gentoo.org> media-libs/libfpx/libfpx-1.3.1_p10.ebuild | 55 ------------------------------- 1 file changed, 55 deletions(-) diff --git a/media-libs/libfpx/libfpx-1.3.1_p10.ebuild b/media-libs/libfpx/libfpx-1.3.1_p10.ebuild deleted file mode 100644 index 782c66231228..000000000000 --- a/media-libs/libfpx/libfpx-1.3.1_p10.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit flag-o-matic libtool - -DESCRIPTION="A library for manipulating FlashPIX images" -HOMEPAGE="https://github.com/ImageMagick/libfpx" -SRC_URI="mirror://imagemagick/delegates/${P/_p/-}.tar.bz2" - -LICENSE="Flashpix" -SLOT="0/1" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="static-libs" - -S=${WORKDIR}/${P/_p/-} - -PATCHES=( - "${FILESDIR}"/${PN}-1.2.0.13-export-symbols.patch - "${FILESDIR}"/${PN}-1.3.1_p10-musl-1.2.3-null.patch -) - -src_prepare() { - default - - # we're not windows, even though we don't define __unix by default - [[ ${CHOST} == *-darwin* ]] && append-flags -D__unix - - elibtoolize -} - -src_configure() { - # -Werror=strict-aliasing - # https://bugs.gentoo.org/859913 - # https://github.com/ImageMagick/libfpx/issues/6 - # - # Do not trust for LTO either - append-flags -fno-strict-aliasing - filter-lto - - append-ldflags -Wl,--no-undefined - econf \ - $(use_enable static-libs static) \ - LIBS="-lstdc++ -lm" -} - -src_install() { - default - - dodoc AUTHORS ChangeLog doc/*.txt - - docinto pdf - dodoc doc/*.pdf - docompress -x /usr/share/doc/${PF}/pdf -}