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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6D8D6138350 for ; Sat, 28 Mar 2020 17:22:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7176FE0B15; Sat, 28 Mar 2020 17:22:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4649CE0B15 for ; Sat, 28 Mar 2020 17:22:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 75F2934FA55 for ; Sat, 28 Mar 2020 17:22:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13B171AE for ; Sat, 28 Mar 2020 17:21:57 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1585415654.05b5885b5d96cca842a279e1b23471d72cfd699e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycups/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pycups/pycups-1.9.73-r1.ebuild X-VCS-Directories: dev-python/pycups/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 05b5885b5d96cca842a279e1b23471d72cfd699e X-VCS-Branch: master Date: Sat, 28 Mar 2020 17:21:57 +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: be628783-240b-4103-8b55-fb16b3c77d68 X-Archives-Hash: 2215824e353dd996e8b549d7f7802c44 commit: 05b5885b5d96cca842a279e1b23471d72cfd699e Author: Michał Górny gentoo org> AuthorDate: Sat Mar 28 17:14:14 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Mar 28 17:14:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05b5885b dev-python/pycups: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/pycups/pycups-1.9.73-r1.ebuild | 32 ------------------------------- 1 file changed, 32 deletions(-) diff --git a/dev-python/pycups/pycups-1.9.73-r1.ebuild b/dev-python/pycups/pycups-1.9.73-r1.ebuild deleted file mode 100644 index 565d776aa50..00000000000 --- a/dev-python/pycups/pycups-1.9.73-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 ) -inherit distutils-r1 - -DESCRIPTION="Python bindings for the CUPS API" -HOMEPAGE="http://cyberelk.net/tim/data/pycups/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86" -SLOT="0" -IUSE="examples" - -RDEPEND=" - net-print/cups -" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - ${RDEPEND} -" - -python_install_all() { - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi - distutils-r1_python_install_all -}