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 8A6301382C5 for ; Tue, 27 Apr 2021 18:22:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE02AE08BF; Tue, 27 Apr 2021 18:22:06 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 D94E3E08BF for ; Tue, 27 Apr 2021 18:22:03 +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 0137B34103F for ; Tue, 27 Apr 2021 18:22:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 43614736 for ; Tue, 27 Apr 2021 18:22:00 +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: <1619547712.6b423d71709d63b9de5374535ff197c3fb2e99c3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/polib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/polib/Manifest dev-python/polib/polib-1.1.0-r1.ebuild X-VCS-Directories: dev-python/polib/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6b423d71709d63b9de5374535ff197c3fb2e99c3 X-VCS-Branch: master Date: Tue, 27 Apr 2021 18:22:00 +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: d3862f43-b542-4284-9a59-ff73627cb90c X-Archives-Hash: 89a37c572310ee5fd59f2ec1ee4541ab commit: 6b423d71709d63b9de5374535ff197c3fb2e99c3 Author: Michał Górny gentoo org> AuthorDate: Tue Apr 27 18:19:56 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Apr 27 18:21:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b423d71 dev-python/polib: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/polib/Manifest | 1 - dev-python/polib/polib-1.1.0-r1.ebuild | 37 ---------------------------------- 2 files changed, 38 deletions(-) diff --git a/dev-python/polib/Manifest b/dev-python/polib/Manifest index a651ba65cdf..4c0382fecbf 100644 --- a/dev-python/polib/Manifest +++ b/dev-python/polib/Manifest @@ -1,2 +1 @@ -DIST polib-1.1.0.tar.gz 158484 BLAKE2B 41766f00e3928eacf3c98406b6acce224f0d0cb44d79326c834db900ed8b91181911ab7e26845a737057dd07c067a784d0b06278952708c17888db42d8c1e303 SHA512 74681585b4d7252e107acd7d73f49f7e91c90adcd180722d39d35c40ec158434798af0124a16788cf564c73b84f52a040aefeb58355a1a3cd85848c3f6a5e67f DIST polib-1.1.1.tar.gz 154644 BLAKE2B 3dfbaf2fa73d286a60a1fff3e50d8703cf62917b7da0c8b783aaec49b8dcfb927b03b0fe0b411b5f90c2ac89298ea027beb2f0d00ad582a65628d8351397ddab SHA512 38de5fbdbc9ef879a4d55b9fe4f86a3aca3fb90dbb671745bd2b126be443598b8b18fe53afd116c3a4d3efc7a42b5ed05d75569bb5b2ef0bd2ced6e13eda95ad diff --git a/dev-python/polib/polib-1.1.0-r1.ebuild b/dev-python/polib/polib-1.1.0-r1.ebuild deleted file mode 100644 index 9b3275497df..00000000000 --- a/dev-python/polib/polib-1.1.0-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) - -inherit distutils-r1 - -DESCRIPTION="A library to manipulate gettext files (.po and .mo files)" -HOMEPAGE="https://github.com/izimobil/polib https://polib.readthedocs.io/en/latest/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 sparc x86" -IUSE="doc" - -DEPEND="doc? ( dev-python/sphinx )" - -PATCHES=( - "${FILESDIR}"/${PN}-1.0.7-BE-test.patch -) - -python_compile_all() { - use doc && emake -C docs html -} - -python_test() { - "${PYTHON}" tests/tests.py || die "Tests failed under ${EPYTHON}" -} - -python_install_all() { - local DOCS=( CHANGELOG README.rst ) - use doc && local HTML_DOCS=( docs/_build/html/. ) - distutils-r1_python_install_all -}