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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3FC701581EC for ; Thu, 21 Nov 2024 08:02:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90E06E07E6; Thu, 21 Nov 2024 08:02:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B16F3E07E6 for ; Thu, 21 Nov 2024 08:02:12 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A2368340BDE for ; Thu, 21 Nov 2024 08:02:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 065CE18C4 for ; Thu, 21 Nov 2024 08:02:00 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1732176073.30c7617bd9f706de927e118020e22ecc6dfb142c.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/potrace/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/potrace/potrace-1.16.ebuild X-VCS-Directories: media-gfx/potrace/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 30c7617bd9f706de927e118020e22ecc6dfb142c X-VCS-Branch: master Date: Thu, 21 Nov 2024 08:02:00 +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: 82af6607-7358-4631-b9c1-2b0c39d51ce8 X-Archives-Hash: b1a50d47f043a83e17364d850ceb5192 commit: 30c7617bd9f706de927e118020e22ecc6dfb142c Author: Petr Vaněk gentoo org> AuthorDate: Thu Nov 21 08:01:13 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Thu Nov 21 08:01:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30c7617b media-gfx/potrace: drop 1.16 Signed-off-by: Petr Vaněk gentoo.org> media-gfx/potrace/potrace-1.16.ebuild | 39 ----------------------------------- 1 file changed, 39 deletions(-) diff --git a/media-gfx/potrace/potrace-1.16.ebuild b/media-gfx/potrace/potrace-1.16.ebuild deleted file mode 100644 index 796436aa52f3..000000000000 --- a/media-gfx/potrace/potrace-1.16.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Transforming bitmaps into vector graphics" -HOMEPAGE="https://potrace.sourceforge.net/" -SRC_URI="https://potrace.sourceforge.net/download/${PV}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="metric" - -RDEPEND="sys-libs/zlib:=" -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS ChangeLog NEWS README ) - -src_configure() { - tc-export CC # bug 610098 - local myeconfargs=( - --disable-static - --enable-zlib - --with-libpotrace - $(use_enable metric a4) - $(use_enable metric) - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - - # no static archives - find "${ED}" -name '*.la' -delete || die -}