commit:     e25efcc86c29095e11d51f8c6a1f937952ed45fa
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  7 07:26:57 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Oct  7 07:27:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e25efcc8

dev-python/mini-amf: Remove last-rited pkg

Closes: https://bugs.gentoo.org/740868
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/mini-amf/Manifest                       |  1 -
 .../files/mini-amf-0.9.1-setuptools-46-fix.patch   | 54 ----------------------
 dev-python/mini-amf/metadata.xml                   |  8 ----
 dev-python/mini-amf/mini-amf-0.9.1-r1.ebuild       | 38 ---------------
 profiles/package.mask                              |  5 --
 5 files changed, 106 deletions(-)

diff --git a/dev-python/mini-amf/Manifest b/dev-python/mini-amf/Manifest
deleted file mode 100644
index d1d1666a473..00000000000
--- 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 932aa3fc8fa..00000000000
--- 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 6b0a0fb3a72..00000000000
--- 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>juip...@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 9afb1ea87a7..00000000000
--- 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 b80ebc627aa..e50d128dda2 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 <juip...@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....@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

Reply via email to