Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mini-amf/, profiles/, dev-python/mini-amf/files/
Date: Wed, 07 Oct 2020 07:28:11
Message-Id: 1602055676.e25efcc86c29095e11d51f8c6a1f937952ed45fa.mgorny@gentoo
1 commit: e25efcc86c29095e11d51f8c6a1f937952ed45fa
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 7 07:26:57 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 7 07:27:56 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e25efcc8
7
8 dev-python/mini-amf: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/740868
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-python/mini-amf/Manifest | 1 -
14 .../files/mini-amf-0.9.1-setuptools-46-fix.patch | 54 ----------------------
15 dev-python/mini-amf/metadata.xml | 8 ----
16 dev-python/mini-amf/mini-amf-0.9.1-r1.ebuild | 38 ---------------
17 profiles/package.mask | 5 --
18 5 files changed, 106 deletions(-)
19
20 diff --git a/dev-python/mini-amf/Manifest b/dev-python/mini-amf/Manifest
21 deleted file mode 100644
22 index d1d1666a473..00000000000
23 --- a/dev-python/mini-amf/Manifest
24 +++ /dev/null
25 @@ -1 +0,0 @@
26 -DIST mini-amf-0.9.1.tar.gz 117016 BLAKE2B 22133a2a6f44ea8d485874924e6175383dfc9301d9bba193e4d9d2fd901671c64be3665617c02223dbd2075141071deed142e804a77816ae11ac4d00e72a870c SHA512 8487baa551a68f7882aedaa8b809089bf2e767b0055f292dab4074d48ed442cabc250297ded91daa2f2a1dcb950ddab5ddff60466ec84ab739a240b8e2665be0
27
28 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
29 deleted file mode 100644
30 index 932aa3fc8fa..00000000000
31 --- a/dev-python/mini-amf/files/mini-amf-0.9.1-setuptools-46-fix.patch
32 +++ /dev/null
33 @@ -1,54 +0,0 @@
34 ---- a/setup.py.orig 2020-03-18 11:44:06.137323823 +0200
35 -+++ b/setup.py 2020-03-18 11:43:55.230585230 +0200
36 -@@ -4,7 +4,7 @@
37 - # See LICENSE.txt for details.
38 -
39 - import os.path
40 --from setuptools import Feature, setup
41 -+from setuptools import setup
42 - import sys
43 -
44 - try:
45 -@@ -42,34 +42,6 @@
46 - """
47 -
48 -
49 --class AccelFeature(Feature):
50 -- def __init__(self, have_cython):
51 -- self.have_cython = have_cython
52 -- self.extensions = []
53 --
54 -- Feature.__init__(
55 -- self,
56 -- description="optional C accelerator modules (broken)",
57 -- standard=False,
58 -- available=have_cython,
59 -- ext_modules=self.extensions
60 -- )
61 --
62 -- def include_in(self, dist):
63 -- if not self.have_cython:
64 -- sys.stderr.write(
65 -- "ERROR: Cython is required to compile accelerator modules.\n")
66 -- sys.exit(1)
67 --
68 -- sys.stderr.write(
69 -- "WARNING: Accelerator modules are broken.\n"
70 -- "WARNING: You should only use --with-accel "
71 -- "if you are trying to fix them.\n")
72 --
73 -- self.extensions.extend(cythonize("miniamf/_accel/*.pyx"))
74 -- Feature.include_in(self, dist)
75 --
76 --
77 - def get_version():
78 - """
79 - Retrieve the version number from miniamf/_version.py. It is
80 -@@ -147,7 +119,6 @@
81 - "miniamf", "miniamf._accel", "miniamf.adapters", "miniamf.util"
82 - ],
83 - install_requires=["six", "defusedxml"],
84 -- features={"accel": AccelFeature(have_cython)},
85 - test_suite="tests",
86 - zip_safe=True,
87 - extras_require={
88
89 diff --git a/dev-python/mini-amf/metadata.xml b/dev-python/mini-amf/metadata.xml
90 deleted file mode 100644
91 index 6b0a0fb3a72..00000000000
92 --- a/dev-python/mini-amf/metadata.xml
93 +++ /dev/null
94 @@ -1,8 +0,0 @@
95 -<?xml version="1.0" encoding="UTF-8"?>
96 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
97 -<pkgmetadata>
98 - <maintainer type="person">
99 - <email>juippis@g.o</email>
100 - <name>Joonas Niilola</name>
101 - </maintainer>
102 -</pkgmetadata>
103
104 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
105 deleted file mode 100644
106 index 9afb1ea87a7..00000000000
107 --- a/dev-python/mini-amf/mini-amf-0.9.1-r1.ebuild
108 +++ /dev/null
109 @@ -1,38 +0,0 @@
110 -# Copyright 1999-2020 Gentoo Authors
111 -# Distributed under the terms of the GNU General Public License v2
112 -
113 -EAPI=7
114 -
115 -PYTHON_COMPAT=( python3_{6..8} )
116 -PYTHON_REQ_USE="sqlite"
117 -
118 -inherit distutils-r1
119 -
120 -DESCRIPTION="Minimal AMF encoder and decoder for Python"
121 -HOMEPAGE="https://pypi.python.org/pypi/Mini-AMF"
122 -SRC_URI="https://github.com/zackw/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
123 -
124 -LICENSE="MIT"
125 -SLOT="0"
126 -KEYWORDS="amd64 x86"
127 -IUSE="doc test"
128 -
129 -RESTRICT="!test? ( test )"
130 -
131 -RDEPEND="dev-python/defusedxml[${PYTHON_USEDEP}]
132 - dev-python/six[${PYTHON_USEDEP}]"
133 -DEPEND="${RDEPEND}
134 - test? (
135 - dev-python/coverage[${PYTHON_USEDEP}]
136 - dev-python/flake8[${PYTHON_USEDEP}]
137 - )"
138 -
139 -REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
140 -
141 -distutils_enable_sphinx doc
142 -
143 -PATCHES=( "${FILESDIR}"/mini-amf-0.9.1-setuptools-46-fix.patch )
144 -
145 -python_test() {
146 - coverage run --source=miniamf setup.py test || die
147 -}
148
149 diff --git a/profiles/package.mask b/profiles/package.mask
150 index b80ebc627aa..e50d128dda2 100644
151 --- a/profiles/package.mask
152 +++ b/profiles/package.mask
153 @@ -551,11 +551,6 @@ dev-python/backports-unittest-mock
154 # Removal in 30 days. Bug #715204.
155 www-servers/cherokee
156
157 -# Joonas Niilola <juippis@g.o> (2020-09-07)
158 -# Nothing in the tree uses this lib anymore. Removing as redundant.
159 -# Removal in ~30 days. Bug #740868.
160 -dev-python/mini-amf
161 -
162 # Arfrever Frehtes Taifersar Arahesis <arfrever.fta@×××××.com> (2020-09-01)
163 # Mismatched version (bug #695022). Masked to force upgrade to 2.0.4_pre20200306162733.
164 # (Mask should remain after ebuilds are deleted, until 2021-03-01 or