summaryrefslogtreecommitdiff
path: root/dev-python/recordclass
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-01-15 10:38:47 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-01-15 10:38:47 +0000
commit2a876cc05753fe0d1db1ff2685de863cf87a8b4f (patch)
tree24976b20d32385be51bb44f655a370eb90329658 /dev-python/recordclass
parent5c62666d60512e057cfdc1e0a0548b22a1666b0e (diff)
downloadbaldeagleos-repo-2a876cc05753fe0d1db1ff2685de863cf87a8b4f.tar.gz
baldeagleos-repo-2a876cc05753fe0d1db1ff2685de863cf87a8b4f.tar.xz
baldeagleos-repo-2a876cc05753fe0d1db1ff2685de863cf87a8b4f.zip
Adding metadata
Diffstat (limited to 'dev-python/recordclass')
-rw-r--r--dev-python/recordclass/Manifest1
-rw-r--r--dev-python/recordclass/metadata.xml6
-rw-r--r--dev-python/recordclass/recordclass-0.14.3.ebuild33
3 files changed, 0 insertions, 40 deletions
diff --git a/dev-python/recordclass/Manifest b/dev-python/recordclass/Manifest
deleted file mode 100644
index c0760ac0eb1f..000000000000
--- 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 736a1167c898..000000000000
--- a/dev-python/recordclass/metadata.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd">
-<pkgmetadata>
-
- <origin>gentoo-guru-overlay</origin>
-</pkgmetadata> \ No newline at end of file
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 7b459a1ce5fb..000000000000
--- 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_{7,8,9,10,11} )
-
-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
-}