summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-10-07 09:26:57 +0200
committerMichał Górny <mgorny@gentoo.org>2020-10-07 09:27:56 +0200
commite25efcc86c29095e11d51f8c6a1f937952ed45fa (patch)
treea1ee667b8e611caf5583c71fad285ac97f72843d
parentdev-python/flask-appconfig: Remove last-rited pkg (diff)
downloadgentoo-e25efcc86c29095e11d51f8c6a1f937952ed45fa.tar.gz
gentoo-e25efcc86c29095e11d51f8c6a1f937952ed45fa.tar.bz2
gentoo-e25efcc86c29095e11d51f8c6a1f937952ed45fa.zip
dev-python/mini-amf: Remove last-rited pkg
Closes: https://bugs.gentoo.org/740868 Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--dev-python/mini-amf/Manifest1
-rw-r--r--dev-python/mini-amf/files/mini-amf-0.9.1-setuptools-46-fix.patch54
-rw-r--r--dev-python/mini-amf/metadata.xml8
-rw-r--r--dev-python/mini-amf/mini-amf-0.9.1-r1.ebuild38
-rw-r--r--profiles/package.mask5
5 files changed, 0 insertions, 106 deletions
diff --git a/dev-python/mini-amf/Manifest b/dev-python/mini-amf/Manifest
deleted file mode 100644
index d1d1666a4739..000000000000
--- a/dev-python/mini-amf/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mini-amf-0.9.1.tar.gz 117016 BLAKE2B 22133a2a6f44ea8d485874924e6175383dfc9301d9bba193e4d9d2fd901671c64be3665617c02223dbd2075141071deed142e804a77816ae11ac4d00e72a870c SHA512 8487baa551a68f7882aedaa8b809089bf2e767b0055f292dab4074d48ed442cabc250297ded91daa2f2a1dcb950ddab5ddff60466ec84ab739a240b8e2665be0
diff --git a/dev-python/mini-amf/files/mini-amf-0.9.1-setuptools-46-fix.patch b/dev-python/mini-amf/files/mini-amf-0.9.1-setuptools-46-fix.patch
deleted file mode 100644
index 932aa3fc8fab..000000000000
--- a/dev-python/mini-amf/files/mini-amf-0.9.1-setuptools-46-fix.patch
+++ /dev/null
@@ -1,54 +0,0 @@
---- a/setup.py.orig 2020-03-18 11:44:06.137323823 +0200
-+++ b/setup.py 2020-03-18 11:43:55.230585230 +0200
-@@ -4,7 +4,7 @@
- # See LICENSE.txt for details.
-
- import os.path
--from setuptools import Feature, setup
-+from setuptools import setup
- import sys
-
- try:
-@@ -42,34 +42,6 @@
- """
-
-
--class AccelFeature(Feature):
-- def __init__(self, have_cython):
-- self.have_cython = have_cython
-- self.extensions = []
--
-- Feature.__init__(
-- self,
-- description="optional C accelerator modules (broken)",
-- standard=False,
-- available=have_cython,
-- ext_modules=self.extensions
-- )
--
-- def include_in(self, dist):
-- if not self.have_cython:
-- sys.stderr.write(
-- "ERROR: Cython is required to compile accelerator modules.\n")
-- sys.exit(1)
--
-- sys.stderr.write(
-- "WARNING: Accelerator modules are broken.\n"
-- "WARNING: You should only use --with-accel "
-- "if you are trying to fix them.\n")
--
-- self.extensions.extend(cythonize("miniamf/_accel/*.pyx"))
-- Feature.include_in(self, dist)
--
--
- def get_version():
- """
- Retrieve the version number from miniamf/_version.py. It is
-@@ -147,7 +119,6 @@
- "miniamf", "miniamf._accel", "miniamf.adapters", "miniamf.util"
- ],
- install_requires=["six", "defusedxml"],
-- features={"accel": AccelFeature(have_cython)},
- test_suite="tests",
- zip_safe=True,
- extras_require={
diff --git a/dev-python/mini-amf/metadata.xml b/dev-python/mini-amf/metadata.xml
deleted file mode 100644
index 6b0a0fb3a729..000000000000
--- a/dev-python/mini-amf/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>juippis@gentoo.org</email>
- <name>Joonas Niilola</name>
- </maintainer>
-</pkgmetadata>
diff --git a/dev-python/mini-amf/mini-amf-0.9.1-r1.ebuild b/dev-python/mini-amf/mini-amf-0.9.1-r1.ebuild
deleted file mode 100644
index 9afb1ea87a7f..000000000000
--- a/dev-python/mini-amf/mini-amf-0.9.1-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..8} )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-DESCRIPTION="Minimal AMF encoder and decoder for Python"
-HOMEPAGE="https://pypi.python.org/pypi/Mini-AMF"
-SRC_URI="https://github.com/zackw/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/defusedxml[${PYTHON_USEDEP}]
- dev-python/six[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- test? (
- dev-python/coverage[${PYTHON_USEDEP}]
- dev-python/flake8[${PYTHON_USEDEP}]
- )"
-
-REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
-
-distutils_enable_sphinx doc
-
-PATCHES=( "${FILESDIR}"/mini-amf-0.9.1-setuptools-46-fix.patch )
-
-python_test() {
- coverage run --source=miniamf setup.py test || die
-}
diff --git a/profiles/package.mask b/profiles/package.mask
index b80ebc627aa7..e50d128dda27 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -551,11 +551,6 @@ dev-python/backports-unittest-mock
# Removal in 30 days. Bug #715204.
www-servers/cherokee
-# Joonas Niilola <juippis@gentoo.org> (2020-09-07)
-# Nothing in the tree uses this lib anymore. Removing as redundant.
-# Removal in ~30 days. Bug #740868.
-dev-python/mini-amf
-
# Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com> (2020-09-01)
# Mismatched version (bug #695022). Masked to force upgrade to 2.0.4_pre20200306162733.
# (Mask should remain after ebuilds are deleted, until 2021-03-01 or