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 E255F1382C5 for ; Fri, 7 May 2021 07:28:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A9B5E081A; Fri, 7 May 2021 07:28:18 +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 1C462E0817 for ; Fri, 7 May 2021 07:28:18 +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 1BE3B340DE1 for ; Fri, 7 May 2021 07:28:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E78659C for ; Fri, 7 May 2021 07:28:14 +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: <1620371915.3efd9b18161cc943b81b0112f11c71fc3af1bcfa.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/regex/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/regex/Manifest dev-python/regex/regex-2021.3.17.ebuild X-VCS-Directories: dev-python/regex/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3efd9b18161cc943b81b0112f11c71fc3af1bcfa X-VCS-Branch: master Date: Fri, 7 May 2021 07:28:14 +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: 5ce6b605-b5f7-4295-a554-d01e3e5e4cbf X-Archives-Hash: 96058a27ad46cca8b70f89e25acaa985 commit: 3efd9b18161cc943b81b0112f11c71fc3af1bcfa Author: Michał Górny gentoo org> AuthorDate: Fri May 7 07:18:35 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri May 7 07:18:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3efd9b18 dev-python/regex: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/regex/Manifest | 1 - dev-python/regex/regex-2021.3.17.ebuild | 30 ------------------------------ 2 files changed, 31 deletions(-) diff --git a/dev-python/regex/Manifest b/dev-python/regex/Manifest index 99ec8b5753b..9ba09870a38 100644 --- a/dev-python/regex/Manifest +++ b/dev-python/regex/Manifest @@ -1,2 +1 @@ -DIST regex-2021.3.17.tar.gz 694380 BLAKE2B 9388038519cc4c11a332dd1fc9b4f742af3f69453890e148971105bb4a5e73f562f7eaa4e2533548066e87aade2f64b507a6e65cd4b0070a26733fa2675190ea SHA512 3eb5e307e5e3656ea88de9f762522412192c687d0f0a4175dd1c605c9142386b98035b177f73c8c0daf10e629e9a3a3cf8851a25cbe6f10a018ba252cb348b1b DIST regex-2021.4.4.tar.gz 693187 BLAKE2B a13a51a883599f726c20cdbf28d5b0f1a53d8f2eec5f4047da0ede2951694507c5065de5a84152510874db087c342d52f19d920a7b72c034325ddc91f5fb75ac SHA512 2eff9867639f16ad7894997f399262d653a9ef0bb4e8d40bd977e5c55625cf57b4bb593f84504009a0b3cd50b3876d1938c71fd733c0ad1a076de32b6b4b33b9 diff --git a/dev-python/regex/regex-2021.3.17.ebuild b/dev-python/regex/regex-2021.3.17.ebuild deleted file mode 100644 index 7e7d12aef1f..00000000000 --- a/dev-python/regex/regex-2021.3.17.ebuild +++ /dev/null @@ -1,30 +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 flag-o-matic - -DESCRIPTION="Alternative regular expression module to replace re" -HOMEPAGE="https://bitbucket.org/mrabarnett/mrab-regex" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" -IUSE="doc" - -python_test() { - pushd "${BUILD_DIR}/lib" > /dev/null || die - "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}" - popd > /dev/null || die -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/Features.html ) - local DOCS=( README.rst docs/*.rst ) - - distutils-r1_python_install_all -}