From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 9F35F1582EF for ; Sun, 23 Feb 2025 05:31:09 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 5B67D342FEA for ; Sun, 23 Feb 2025 05:31:09 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 58FCB110296; Sun, 23 Feb 2025 05:31:08 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 51CB8110296 for ; Sun, 23 Feb 2025 05:31:08 +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 0ADE4342FEA for ; Sun, 23 Feb 2025 05:31:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B134D7D for ; Sun, 23 Feb 2025 05:31:06 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1740288515.5475c9595f6603e1d93cd36c71ee3986b53b1557.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/cups-filters/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-print/cups-filters/cups-filters-2.0.0.ebuild X-VCS-Directories: net-print/cups-filters/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5475c9595f6603e1d93cd36c71ee3986b53b1557 X-VCS-Branch: master Date: Sun, 23 Feb 2025 05:31:06 +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: 1948c1e4-ba06-4654-921d-cbd1f8e3c7e3 X-Archives-Hash: debdc5e14d818a2e6b51365fa56ad062 commit: 5475c9595f6603e1d93cd36c71ee3986b53b1557 Author: Sam James gentoo org> AuthorDate: Sun Feb 23 05:28:35 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Feb 23 05:28:35 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5475c959 net-print/cups-filters: drop 2.0.0 Signed-off-by: Sam James gentoo.org> net-print/cups-filters/cups-filters-2.0.0.ebuild | 54 ------------------------ 1 file changed, 54 deletions(-) diff --git a/net-print/cups-filters/cups-filters-2.0.0.ebuild b/net-print/cups-filters/cups-filters-2.0.0.ebuild deleted file mode 100644 index c4e559f32d68..000000000000 --- a/net-print/cups-filters/cups-filters-2.0.0.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 2023-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Cups filters" -HOMEPAGE="https://wiki.linuxfoundation.org/openprinting/cups-filters" -SRC_URI="https://github.com/OpenPrinting/cups-filters/releases/download/${PV}/${P}.tar.xz" - -LICENSE="Apache-2.0" -SLOT="0" -IUSE="+foomatic" -#IUSE="" -KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv sparc x86" - -RDEPEND=" - net-print/libcupsfilters - net-print/libppd - >=net-print/cups-1.7.3 -" -DEPEND="${RDEPEND}" -BDEPEND=" - >=sys-devel/gettext-0.18.3 - virtual/pkgconfig -" - -# The tests are composed of: -# - built program -# - test case itself: filter/test.sh -# -# The latter is not wired up, and it becomes immediately evident why. -# Bow to this reality and don't claim we can run anything. As a side -# effect, don't compile in src_test, that which we never use. -RESTRICT="test" - -src_configure() { - local myeconfargs=( - --enable-imagefilters - --enable-driverless - --enable-poppler - --localstatedir="${EPREFIX}"/var - --with-fontdir="fonts/conf.avail" - # cups-browsed is split out and avahi is not needed for filters - # https://github.com/OpenPrinting/cups-filters/pull/558 - --disable-avahi - # These are just probed for the path. Always enable them. - --with-gs-path="${EPREFIX}"/usr/bin/gs - --with-mutool-path="${EPREFIX}"/usr/bin/mutool - - $(use_enable foomatic) - ) - - econf "${myeconfargs[@]}" -}