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 D42E6158088 for ; Sat, 15 Jan 2022 14:15:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3315C2BC033; Sat, 15 Jan 2022 14:15:13 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1D52A2BC033 for ; Sat, 15 Jan 2022 14:15:13 +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 3C90D342C66 for ; Sat, 15 Jan 2022 14:15:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81D22291 for ; Sat, 15 Jan 2022 14:15:10 +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: <1642256099.22c235a9f135d9469fb3c5e9dd9d35ae08c8524f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/cups-pdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-print/cups-pdf/cups-pdf-3.0.1-r1.ebuild X-VCS-Directories: net-print/cups-pdf/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 22c235a9f135d9469fb3c5e9dd9d35ae08c8524f X-VCS-Branch: master Date: Sat, 15 Jan 2022 14:15:10 +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: 34af16be-ad82-4e7f-96a5-5e9bc8fe1d30 X-Archives-Hash: 781ddcced9da1d01f159c3a666ef71c6 commit: 22c235a9f135d9469fb3c5e9dd9d35ae08c8524f Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jan 15 13:27:17 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jan 15 14:14:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22c235a9 net-print/cups-pdf: Drop 3.0.1-r1 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> net-print/cups-pdf/cups-pdf-3.0.1-r1.ebuild | 46 ----------------------------- 1 file changed, 46 deletions(-) diff --git a/net-print/cups-pdf/cups-pdf-3.0.1-r1.ebuild b/net-print/cups-pdf/cups-pdf-3.0.1-r1.ebuild deleted file mode 100644 index f775a9ed1b83..000000000000 --- a/net-print/cups-pdf/cups-pdf-3.0.1-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="Provides a virtual printer for CUPS to produce PDF files" -HOMEPAGE="https://www.cups-pdf.de/" -SRC_URI="https://www.cups-pdf.de/src/${PN}_${PV/_}.tar.gz" -S=${WORKDIR}/${PN}-${PV/_} - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm ppc ~ppc64 x86" -IUSE="+ppds" - -RDEPEND=" - net-print/cups - /dev/null - $(tc-getCC) ${LDFLAGS} ${CFLAGS} ${PN}.c -o ${PN} -lcups || die - popd >/dev/null -} - -src_install() { - exeinto /usr/libexec/cups/backend - exeopts -m0700 - doexe src/cups-pdf - - insinto /etc/cups - doins extra/cups-pdf.conf - - insinto /usr/share/cups/model - if use ppds; then - doins extra/CUPS-PDF_opt.ppd - else - doins extra/CUPS-PDF_noopt.ppd - fi - - dodoc ChangeLog README -}