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 B490615800F for ; Sat, 14 Jan 2023 19:05:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 054A5E08C4; Sat, 14 Jan 2023 19:05:46 +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 59636E08CA for ; Sat, 14 Jan 2023 19:05:45 +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 585E9340EE0 for ; Sat, 14 Jan 2023 19:05:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B348F858 for ; Sat, 14 Jan 2023 19:05:41 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1673722916.059eaa19a0ee24c05da8f8bce4b787a159458b4f.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/recordclass/, profiles/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/recordclass/Manifest dev-python/recordclass/metadata.xml dev-python/recordclass/recordclass-0.14.3.ebuild profiles/package.mask X-VCS-Directories: profiles/ dev-python/recordclass/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 059eaa19a0ee24c05da8f8bce4b787a159458b4f X-VCS-Branch: master Date: Sat, 14 Jan 2023 19:05:41 +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: 1f858eb9-1e5b-40b3-b5d4-2c65eb37de39 X-Archives-Hash: 65625750a99189fba4fab9c267c8e70f commit: 059eaa19a0ee24c05da8f8bce4b787a159458b4f Author: Andrew Ammerlaan gentoo org> AuthorDate: Sat Jan 14 19:01:52 2023 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Sat Jan 14 19:01:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=059eaa19 dev-python/recordclass: treeclean mask is not enough to fix the sourcing problems, cleanup now instead Closes: https://bugs.gentoo.org/848315 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/recordclass/Manifest | 1 - dev-python/recordclass/metadata.xml | 7 ----- dev-python/recordclass/recordclass-0.14.3.ebuild | 33 ------------------------ profiles/package.mask | 1 - 4 files changed, 42 deletions(-) diff --git a/dev-python/recordclass/Manifest b/dev-python/recordclass/Manifest deleted file mode 100644 index c0760ac0e..000000000 --- a/dev-python/recordclass/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST recordclass-0.14.3.tar.gz 156962 BLAKE2B 31bbe62fd059b9ba594d824d3e719ca4a03d72d3fdb18f8c94634d0d2a5350e3132bc1d3e20900a018e769c3dd377c53b12728dbd8daf23faf82d93663511f69 SHA512 9764b49e4cd24395a545d4845dab1522f409b48f6c0cd718499ad92a0b655d3ceef0361286dab91c7e7f05c5306e9db1f1a130b12f923dcf66c704ecdeeb612a diff --git a/dev-python/recordclass/metadata.xml b/dev-python/recordclass/metadata.xml deleted file mode 100644 index a1bd8ff7c..000000000 --- a/dev-python/recordclass/metadata.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - intellimath/recordclass - - diff --git a/dev-python/recordclass/recordclass-0.14.3.ebuild b/dev-python/recordclass/recordclass-0.14.3.ebuild deleted file mode 100644 index d30fcbb2b..000000000 --- a/dev-python/recordclass/recordclass-0.14.3.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_8 ) - -inherit distutils-r1 - -DESCRIPTION="Mutable variants of tupe and collections.namedtuple" -HOMEPAGE="https://pypi.org/project/recordclass/" -if [[ ${PV} == "9999" ]] -then - inherit git-r3 - EGIT_REPO_URI="https://bitbucket.org/intellimath/recordclass.git" -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" - -# lib/recordclass/mutabletuple.c:727: PyObject *mutabletuple_copy(PyMutableTupleObject *): Assertion `PyTuple_Check(ob)' failed. -RESTRICT="test" - -DEPEND="dev-python/cython" -RDEPEND="${DEPEND}" - -python_test() { - [[ -n ${EPYTHON} ]] || die "EPYTHON unset, invalid call context" - ${EPYTHON} ./test_all.py -} diff --git a/profiles/package.mask b/profiles/package.mask index f3dd9877f..35d594476 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -16,7 +16,6 @@ # Andrew Ammerlaan (2023-01-14) # Needs python_compat bump. Removal on 2023-01-29. -dev-python/recordclass dev-python/ryu games-fps/crispy-doom media-gfx/memethesis-cli 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 B770B15800F for ; Sat, 14 Jan 2023 19:05:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED46DE087E; Sat, 14 Jan 2023 19:05:37 +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 D14D6E087E for ; Sat, 14 Jan 2023 19:05:37 +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 E1C5D335D58 for ; Sat, 14 Jan 2023 19:05:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BF92858 for ; Sat, 14 Jan 2023 19:05:34 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1673722916.059eaa19a0ee24c05da8f8bce4b787a159458b4f.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/recordclass/, profiles/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/recordclass/Manifest dev-python/recordclass/metadata.xml dev-python/recordclass/recordclass-0.14.3.ebuild profiles/package.mask X-VCS-Directories: profiles/ dev-python/recordclass/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 059eaa19a0ee24c05da8f8bce4b787a159458b4f X-VCS-Branch: dev Date: Sat, 14 Jan 2023 19:05:34 +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: 5e559314-81d9-4d08-a4bc-209a08bdf601 X-Archives-Hash: 8f71c887f9069a3e5c211cee75ae032c Message-ID: <20230114190534.Gt2JHA9D2nXOJwRngB4xgQVYCiHedY9-r1B6Qi4u3L4@z> commit: 059eaa19a0ee24c05da8f8bce4b787a159458b4f Author: Andrew Ammerlaan gentoo org> AuthorDate: Sat Jan 14 19:01:52 2023 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Sat Jan 14 19:01:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=059eaa19 dev-python/recordclass: treeclean mask is not enough to fix the sourcing problems, cleanup now instead Closes: https://bugs.gentoo.org/848315 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/recordclass/Manifest | 1 - dev-python/recordclass/metadata.xml | 7 ----- dev-python/recordclass/recordclass-0.14.3.ebuild | 33 ------------------------ profiles/package.mask | 1 - 4 files changed, 42 deletions(-) diff --git a/dev-python/recordclass/Manifest b/dev-python/recordclass/Manifest deleted file mode 100644 index c0760ac0e..000000000 --- a/dev-python/recordclass/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST recordclass-0.14.3.tar.gz 156962 BLAKE2B 31bbe62fd059b9ba594d824d3e719ca4a03d72d3fdb18f8c94634d0d2a5350e3132bc1d3e20900a018e769c3dd377c53b12728dbd8daf23faf82d93663511f69 SHA512 9764b49e4cd24395a545d4845dab1522f409b48f6c0cd718499ad92a0b655d3ceef0361286dab91c7e7f05c5306e9db1f1a130b12f923dcf66c704ecdeeb612a diff --git a/dev-python/recordclass/metadata.xml b/dev-python/recordclass/metadata.xml deleted file mode 100644 index a1bd8ff7c..000000000 --- a/dev-python/recordclass/metadata.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - intellimath/recordclass - - diff --git a/dev-python/recordclass/recordclass-0.14.3.ebuild b/dev-python/recordclass/recordclass-0.14.3.ebuild deleted file mode 100644 index d30fcbb2b..000000000 --- a/dev-python/recordclass/recordclass-0.14.3.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_8 ) - -inherit distutils-r1 - -DESCRIPTION="Mutable variants of tupe and collections.namedtuple" -HOMEPAGE="https://pypi.org/project/recordclass/" -if [[ ${PV} == "9999" ]] -then - inherit git-r3 - EGIT_REPO_URI="https://bitbucket.org/intellimath/recordclass.git" -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" - -# lib/recordclass/mutabletuple.c:727: PyObject *mutabletuple_copy(PyMutableTupleObject *): Assertion `PyTuple_Check(ob)' failed. -RESTRICT="test" - -DEPEND="dev-python/cython" -RDEPEND="${DEPEND}" - -python_test() { - [[ -n ${EPYTHON} ]] || die "EPYTHON unset, invalid call context" - ${EPYTHON} ./test_all.py -} diff --git a/profiles/package.mask b/profiles/package.mask index f3dd9877f..35d594476 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -16,7 +16,6 @@ # Andrew Ammerlaan (2023-01-14) # Needs python_compat bump. Removal on 2023-01-29. -dev-python/recordclass dev-python/ryu games-fps/crispy-doom media-gfx/memethesis-cli