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 AFBB5138359 for ; Fri, 18 Sep 2020 15:53:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A234BE086B; Fri, 18 Sep 2020 15:53:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 87EC4E086B for ; Fri, 18 Sep 2020 15:53:29 +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 7237B341081 for ; Fri, 18 Sep 2020 15:53:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36ED838D for ; Fri, 18 Sep 2020 15:53:25 +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: <1600444400.96a0c8ebfaeb4aaa115533fe0c2c15ccde75e678.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.ebuild X-VCS-Directories: dev-python/xlwt/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 96a0c8ebfaeb4aaa115533fe0c2c15ccde75e678 X-VCS-Branch: master Date: Fri, 18 Sep 2020 15:53:25 +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: b743866c-ee2f-4f32-bcf6-cade72cfb110 X-Archives-Hash: 5535815ebb7986ff21477962c974349d commit: 96a0c8ebfaeb4aaa115533fe0c2c15ccde75e678 Author: Michał Górny gentoo org> AuthorDate: Fri Sep 18 15:52:05 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Sep 18 15:53:20 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96a0c8eb dev-python/xlwt: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/xlwt/xlwt-1.3.0.ebuild | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/dev-python/xlwt/xlwt-1.3.0.ebuild b/dev-python/xlwt/xlwt-1.3.0.ebuild deleted file mode 100644 index 8c36c7f3763..00000000000 --- a/dev-python/xlwt/xlwt-1.3.0.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{6..9} ) -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="amd64 arm arm64 ppc ppc64 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 -}