summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-09-02 09:54:07 +0200
committerMichał Górny <mgorny@gentoo.org>2020-09-02 09:54:39 +0200
commit21716e741cc2b6b9bac30fa734a59635e6d790e9 (patch)
tree336906958149791ff8d9656c0a17e53faa040bb1
parentdev-python/pupynere: Remove last-rited pkg (diff)
downloadgentoo-21716e741cc2b6b9bac30fa734a59635e6d790e9.tar.gz
gentoo-21716e741cc2b6b9bac30fa734a59635e6d790e9.tar.bz2
gentoo-21716e741cc2b6b9bac30fa734a59635e6d790e9.zip
dev-python/pyid3lib: Remove last-rited pkg
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--dev-python/pyid3lib/Manifest1
-rw-r--r--dev-python/pyid3lib/files/pyid3lib-0.5.1-gcc-4.4.patch20
-rw-r--r--dev-python/pyid3lib/files/pyid3lib-0.5.1-py25.patch57
-rw-r--r--dev-python/pyid3lib/metadata.xml11
-rw-r--r--dev-python/pyid3lib/pyid3lib-0.5.1-r2.ebuild33
-rw-r--r--profiles/package.mask5
6 files changed, 0 insertions, 127 deletions
diff --git a/dev-python/pyid3lib/Manifest b/dev-python/pyid3lib/Manifest
deleted file mode 100644
index 116437c47ce3..000000000000
--- a/dev-python/pyid3lib/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pyid3lib-0.5.1.tar.bz2 21207 BLAKE2B 762baa0d463c587d06eb12d84a25d5105f7f2a11e60ff7b8153f45a3bb5076b622297cbbbff7c01ce4cf3c9dea96f714c0787e990630e3addfa85dc79553662e SHA512 fee073a7bd87540a186122b477e918b2c3d8a234ea5ebd83207115b9d0503cc22645b93f6702b79a1b41104d0cbcaa3c47900bba27ce52d44195a8f8a6331c57
diff --git a/dev-python/pyid3lib/files/pyid3lib-0.5.1-gcc-4.4.patch b/dev-python/pyid3lib/files/pyid3lib-0.5.1-gcc-4.4.patch
deleted file mode 100644
index 04df9e0a6c98..000000000000
--- a/dev-python/pyid3lib/files/pyid3lib-0.5.1-gcc-4.4.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- pyid3lib.cc
-+++ pyid3lib.cc
-@@ -920,7 +920,7 @@ enum frame_type
-
- typedef struct
- {
-- char* name;
-+ const char* name;
- ID3_FrameID fid;
- frame_type type;
- } magic_attribute;
-@@ -1030,7 +1030,7 @@ static PyObject* id3_getattr( ID3Object* self, char* attrname )
- {
- ID3_Frame* frame;
- const char* str;
-- char* slash;
-+ const char* slash;
- ID3_Field* fld;
- int i;
-
diff --git a/dev-python/pyid3lib/files/pyid3lib-0.5.1-py25.patch b/dev-python/pyid3lib/files/pyid3lib-0.5.1-py25.patch
deleted file mode 100644
index c24cfc97d5ac..000000000000
--- a/dev-python/pyid3lib/files/pyid3lib-0.5.1-py25.patch
+++ /dev/null
@@ -1,57 +0,0 @@
---- pyid3lib-0.5.1/pyid3lib.cc.orig 2007-08-08 23:53:08.000000000 +0300
-+++ pyid3lib-0.5.1/pyid3lib.cc 2007-08-08 23:53:12.000000000 +0300
-@@ -10,13 +10,19 @@
- #include <id3/id3lib_frame.h>
- #include <id3/tag.h>
-
-+#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
-+typedef int Py_ssize_t;
-+#define PY_SSIZE_T_MAX INT_MAX
-+#define PY_SSIZE_T_MIN INT_MIN
-+#endif
-+
- typedef struct
- {
- PyObject_HEAD
-
- ID3_Tag* tag;
- ID3_Frame** frames;
-- int size, alloc;
-+ Py_ssize_t size, alloc;
- } ID3Object;
-
- typedef struct
-@@ -80,13 +86,24 @@
-
-
- static PySequenceMethods tag_as_sequence = {
-+#if PY_VERSION_HEX >= 0x02050000
-+ (lenfunc)id3_length,
-+#else
- (inquiry)id3_length,
-+#endif
- NULL,
- NULL,
-+#if PY_VERSION_HEX >= 0x02050000
-+ (ssizeargfunc)id3_item,
-+ (ssizessizeargfunc)id3_slice,
-+ (ssizeobjargproc)id3_ass_item,
-+ (ssizessizeobjargproc)id3_ass_slice,
-+#else
- (intargfunc)id3_item,
- (intintargfunc)id3_slice,
- (intobjargproc)id3_ass_item,
- (intintobjargproc)id3_ass_slice,
-+#endif
- (objobjproc)id3_contains,
- NULL,
- NULL,
-@@ -824,7 +841,7 @@
- static ID3_Frame* frame_from_dict( ID3_FrameID fid, PyObject* dict )
- {
- char* data;
-- int size;
-+ Py_ssize_t size;
-
- ID3_Field* field;
- ID3_FieldID flid;
diff --git a/dev-python/pyid3lib/metadata.xml b/dev-python/pyid3lib/metadata.xml
deleted file mode 100644
index 23324cab5125..000000000000
--- a/dev-python/pyid3lib/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">pyid3lib</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pyid3lib/pyid3lib-0.5.1-r2.ebuild b/dev-python/pyid3lib/pyid3lib-0.5.1-r2.ebuild
deleted file mode 100644
index 3c7fa8639da1..000000000000
--- a/dev-python/pyid3lib/pyid3lib-0.5.1-r2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 flag-o-matic
-
-DESCRIPTION="Module for manipulating ID3 tags in Python"
-HOMEPAGE="http://pyid3lib.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 ppc ppc64 sparc x86"
-IUSE=""
-
-DEPEND="media-libs/id3lib"
-RDEPEND="${DEPEND}"
-
-HTML_DOCS=( doc.html )
-
-src_prepare() {
- local PATCHES=(
- "${FILESDIR}/${P}-gcc-4.4.patch"
- "${FILESDIR}/${P}-py25.patch"
- )
-
- distutils-r1_src_prepare
-
- append-flags -fno-strict-aliasing
-}
diff --git a/profiles/package.mask b/profiles/package.mask
index 107ced85013a..3176a6f7e0ae 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -772,11 +772,6 @@ dev-python/pyode
dev-python/pylzma
# Aaron Bauman <bman@gentoo.org> (2020-08-01)
-# Py2 only. Dead upstream
-# Removal in 30 days
-dev-python/pyid3lib
-
-# Aaron Bauman <bman@gentoo.org> (2020-08-01)
# Py2 only. Last upstream release 2013.
# Removal in 30 days. Last 2 have deps on cddb.
<media-sound/jack-4.0.0_pre