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 83117138351 for ; Sat, 28 Mar 2020 17:07:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70790E0E24; Sat, 28 Mar 2020 17:07:26 +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 50006E0E24 for ; Sat, 28 Mar 2020 17:07:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 697AD34FA31 for ; Sat, 28 Mar 2020 17:07:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84B041AA for ; Sat, 28 Mar 2020 17:07:22 +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: <1585415220.92fd66c7c7a969337934ba415cacace5f66f2a13.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyaes/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyaes/Manifest dev-python/pyaes/pyaes-1.6.0.ebuild X-VCS-Directories: dev-python/pyaes/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 92fd66c7c7a969337934ba415cacace5f66f2a13 X-VCS-Branch: master Date: Sat, 28 Mar 2020 17:07:22 +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: 01f507f2-c9f1-4c58-9a53-8dfddd0b853b X-Archives-Hash: 08fe90b81b3484cd205b6177ebd4b750 commit: 92fd66c7c7a969337934ba415cacace5f66f2a13 Author: Michał Górny gentoo org> AuthorDate: Sat Mar 28 17:00:34 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Mar 28 17:07:00 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92fd66c7 dev-python/pyaes: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/pyaes/Manifest | 1 - dev-python/pyaes/pyaes-1.6.0.ebuild | 23 ----------------------- 2 files changed, 24 deletions(-) diff --git a/dev-python/pyaes/Manifest b/dev-python/pyaes/Manifest index ef8e65ce089..3e941c832d3 100644 --- a/dev-python/pyaes/Manifest +++ b/dev-python/pyaes/Manifest @@ -1,2 +1 @@ -DIST pyaes-1.6.0.tar.gz 28237 BLAKE2B ccce23a58d88582fde56dfe26b774effc00c999c6dd0625e17c5ee7cea7ad1c16c9ab83f452cc4eb47fe88bb7367a37425c1975005249591656bf29ea3af4064 SHA512 32f6bf998b7e200fc73b4852873f60067ac056d646ae87cd8ab55f3ec99c9e26fa2b418b67ba0264a8016311a5f0eb2d40c8e7f917c0715e19f5c3dbf6a8238e DIST pyaes-1.6.1.tar.gz 28536 BLAKE2B fa7ca95ae181cd48e21ceaeab42f937c54bc9b90b1a337aaffd6317c8091f813b1fbd2abbc14a600a747829a0e94ac6bdd5624010a27f1c342bfef2390d7c8fb SHA512 00ce3babf72ea18b0de369860cd884058c7c6f3bd8b961c3ff591ef7d3dc0a69fabad5311f61c9f91d2f1a480c8512e34eeced5ec7145ed9f963bf91c5f8838a diff --git a/dev-python/pyaes/pyaes-1.6.0.ebuild b/dev-python/pyaes/pyaes-1.6.0.ebuild deleted file mode 100644 index aa569abf1df..00000000000 --- a/dev-python/pyaes/pyaes-1.6.0.ebuild +++ /dev/null @@ -1,23 +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="Pure-Python Implementation of the AES block-cipher and common modes of operation" -HOMEPAGE="https://pypi.org/project/pyaes/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -python_test() { - ${EPYTHON} tests/test-{aes,blockfeeder,util}.py || die -}