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 D13E915808B for ; Thu, 31 Mar 2022 16:03:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99B0BE07D1; Thu, 31 Mar 2022 16:03:19 +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 EA2AAE07D1 for ; Thu, 31 Mar 2022 16:03:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B14EF341821 for ; Thu, 31 Mar 2022 16:03:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1473234C for ; Thu, 31 Mar 2022 16:03:16 +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: <1648740423.21bda85fa941272f9f952b4cc42b1e0e36862b5e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xlwt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/xlwt/xlwt-1.3.0-r1.ebuild X-VCS-Directories: dev-python/xlwt/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 21bda85fa941272f9f952b4cc42b1e0e36862b5e X-VCS-Branch: master Date: Thu, 31 Mar 2022 16:03:16 +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: 85a2123f-5a77-4fae-a8e6-adc98d143cf9 X-Archives-Hash: d56bd3261249df48e26babc4ef224740 commit: 21bda85fa941272f9f952b4cc42b1e0e36862b5e Author: Michał Górny gentoo org> AuthorDate: Thu Mar 31 15:27:03 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 31 15:27:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21bda85f dev-python/xlwt: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/xlwt/xlwt-1.3.0-r1.ebuild | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/dev-python/xlwt/xlwt-1.3.0-r1.ebuild b/dev-python/xlwt/xlwt-1.3.0-r1.ebuild deleted file mode 100644 index f10929904606..000000000000 --- a/dev-python/xlwt/xlwt-1.3.0-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Python library to create spreadsheet files compatible with Excel" -HOMEPAGE="https://pypi.org/project/xlwt/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="examples" - -distutils_enable_sphinx docs \ - dev-python/pkginfo -distutils_enable_tests nose - -python_install_all() { - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF} - fi - distutils-r1_python_install_all -}