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 0ABF6158091 for ; Mon, 6 Jun 2022 09:57:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 529DEE0893; Mon, 6 Jun 2022 09:57:16 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3713FE0893 for ; Mon, 6 Jun 2022 09:57:16 +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 513CD34175C for ; Mon, 6 Jun 2022 09:57:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C626844E for ; Mon, 6 Jun 2022 09:56:43 +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: <1654509242.3564deafbf564362a7537cfd3193a3d81ef523a4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/odfpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/odfpy/Manifest dev-python/odfpy/odfpy-1.3.6.ebuild X-VCS-Directories: dev-python/odfpy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3564deafbf564362a7537cfd3193a3d81ef523a4 X-VCS-Branch: master Date: Mon, 6 Jun 2022 09:56:43 +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: dd3ec5c1-d897-4c6d-93b4-09bf34a0a56c X-Archives-Hash: 49ba5fa456a28a580742882dc44b9650 commit: 3564deafbf564362a7537cfd3193a3d81ef523a4 Author: Michał Górny gentoo org> AuthorDate: Mon Jun 6 09:54:02 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jun 6 09:54:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3564deaf dev-python/odfpy: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/odfpy/Manifest | 1 - dev-python/odfpy/odfpy-1.3.6.ebuild | 27 --------------------------- 2 files changed, 28 deletions(-) diff --git a/dev-python/odfpy/Manifest b/dev-python/odfpy/Manifest index 9fa4b87c292d..f2e97bfd48c2 100644 --- a/dev-python/odfpy/Manifest +++ b/dev-python/odfpy/Manifest @@ -1,2 +1 @@ -DIST odfpy-1.3.6.tar.gz 691122 BLAKE2B aaaf2c1613beb6775d22e4d1739b7c144d8046e687f0dc8f7b7b1ea7400cc32dd572ed5a1cd12cb01c5fec27b5c37950b710b279a46d60da8735154d2b2d7030 SHA512 09f3fbce633949035842cff16d2e016271b7f6abf04d74fcaa712c9b3afa18943dd566a2d88a7256a0a52d88ea689d6ef8262f6d8d67d6ea1025aa56e10300f8 DIST odfpy-release-1.4.2.gh.tar.gz 10065808 BLAKE2B b339cb44604552ee530d8fa8385d753c1f9210f9335813ab279150b16d36f72263fc02c0d2c01ce4350dd3c81b94e7e9f394ce8ec2d85372eb972558a86ded0b SHA512 75368010c015e13302d2b43228ef9ed1f6c9307da60cf199098609729b008c69836511c953dbc730f3097124878b1fa6de7e8d5f49e20716062ada747698f84d diff --git a/dev-python/odfpy/odfpy-1.3.6.ebuild b/dev-python/odfpy/odfpy-1.3.6.ebuild deleted file mode 100644 index ed8c62fc4648..000000000000 --- a/dev-python/odfpy/odfpy-1.3.6.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2021 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 API and tools to manipulate OpenDocument files" -HOMEPAGE="https://github.com/eea/odfpy https://pypi.org/project/odfpy/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0 GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="examples" - -distutils_enable_tests pytest - -python_install_all() { - if use examples; then - docinto examples - dodoc -r examples/. - fi - distutils-r1_python_install_all -}