dev-python/feedparser: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2020-10-22 00:47:18 +02:00
parent 3c32fad7bb
commit ff1a8e5049
3 changed files with 0 additions and 131 deletions

View File

@@ -1,3 +1,2 @@
DIST feedparser-5.2.1.tar.gz 252956 BLAKE2B 182ebefa8a44276e758f277c203c28b274c580b667b039e4fc6ed9bd059b15e35e775e9efb784a97d712dc57e7b176ff91d6e094ddd225735f4315ffa770ae83 SHA512 1fd0c4324e2eff8ef4b15e3793c767290bca562af4a5056fdbdfa12411095530c87a113bb1b9757e532ff63aecb399b18f1e6b753884798eb6b8d3fdf575af81
DIST feedparser-6.0.0b1.tar.gz 250065 BLAKE2B 54e955f011af0755e0f627caa1491be15a073984d5c7c2b4edd6e9dcd6054e19b5c77cea9741d0bf7af151f9c79b22739c12db94619373f195e024df65b1cff1 SHA512 580e02bd77dcba547eb8295f958c6d30e55c62bd7fdbe25eda7687d0654b9342edf82ab637902175fc90b86a8ae9cbae8ba2c7c9a83009d25ab5c007c37cf02d
DIST feedparser-6.0.1.tar.gz 251457 BLAKE2B e159ecae5cfdb6828a17bd26494218db78bcb2542b75161878ce9eb8f126ba0285772a4c99584654de53e297fcb308ed50baaf9f208459237a0447721e32f1f3 SHA512 562748e079b44bd249406cf15d88bd4bb338a1e5a9a9b2c606514b054edf6cdd78d66f1cf6f00320c24a9d8519069e44b730a86f92e47775614bee680b9d8b7b

View File

@@ -1,41 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6..9} pypy3 )
inherit distutils-r1
MY_PV=${PV/_beta/b}
MY_P=${PN}-${MY_PV}
DESCRIPTION="Parse RSS and Atom feeds in Python"
HOMEPAGE="https://github.com/kurtmckee/feedparser https://pypi.org/project/feedparser/"
SRC_URI="
https://github.com/kurtmckee/feedparser/archive/${MY_PV}.tar.gz
-> ${MY_P}.tar.gz"
S=${WORKDIR}/${MY_P}
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
RDEPEND="dev-python/sgmllib3k[${PYTHON_USEDEP}]"
distutils_enable_tests unittest
PATCHES=(
"${FILESDIR}"/${P}-py39.patch
)
src_prepare() {
# broken
rm \
tests/illformed/chardet/big5.xml \
tests/illformed/undeclared_namespace.xml || die
distutils-r1_src_prepare
}
python_test() {
"${EPYTHON}" tests/runtests.py || die
}

View File

@@ -1,89 +0,0 @@
From fa587d171aed1b44ee06af271d718ab6fa73b77a Mon Sep 17 00:00:00 2001
From: Karthikeyan Singaravelan <tir.karthi@gmail.com>
Date: Wed, 26 Feb 2020 22:06:39 +0530
Subject: [PATCH 1/2] Use encodebytes instead of encodestring in Python 3.9.
---
feedparser/http.py | 5 ++++-
feedparser/mixin.py | 5 ++++-
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/feedparser/http.py b/feedparser/http.py
index 272faad6..53511f02 100644
--- a/feedparser/http.py
+++ b/feedparser/http.py
@@ -73,7 +73,10 @@ class request(object):
# Python 3.1 deprecated decodestring in favor of decodebytes.
# This can be removed after Python 2.7 support is dropped.
-_base64decode = getattr(base64, 'decodebytes', base64.decodestring)
+try:
+ _base64decode = base64.decodebytes
+except AttributeError:
+ _base64decode = base64.decodestring
try:
basestring
diff --git a/feedparser/mixin.py b/feedparser/mixin.py
index 1b0dc1ae..549931f5 100644
--- a/feedparser/mixin.py
+++ b/feedparser/mixin.py
@@ -50,7 +50,10 @@
# Python 2.7 only offers "decodestring()".
# This name substitution can be removed when Python 2.7 support is dropped.
-_base64decode = getattr(base64, 'decodebytes', base64.decodestring)
+try:
+ _base64decode = base64.decodebytes
+except AttributeError:
+ _base64decode = base64.decodestring
bytes_ = type(b'')
From 7798957b66c9cee00db9a18f84c518cacf8f14aa Mon Sep 17 00:00:00 2001
From: Karthikeyan Singaravelan <tir.karthi@gmail.com>
Date: Sun, 17 May 2020 14:25:17 +0000
Subject: [PATCH 2/2] Use base64.decodebytes only in Python 3
---
feedparser/http.py | 7 +------
feedparser/mixin.py | 7 +------
2 files changed, 2 insertions(+), 12 deletions(-)
diff --git a/feedparser/http.py b/feedparser/http.py
index 53511f02..1119cb3b 100644
--- a/feedparser/http.py
+++ b/feedparser/http.py
@@ -71,12 +71,7 @@ class request(object):
from .datetimes import _parse_date
from .urls import convert_to_idn
-# Python 3.1 deprecated decodestring in favor of decodebytes.
-# This can be removed after Python 2.7 support is dropped.
-try:
- _base64decode = base64.decodebytes
-except AttributeError:
- _base64decode = base64.decodestring
+_base64decode = base64.decodebytes
try:
basestring
diff --git a/feedparser/mixin.py b/feedparser/mixin.py
index 549931f5..119fa4ca 100644
--- a/feedparser/mixin.py
+++ b/feedparser/mixin.py
@@ -48,12 +48,7 @@
from .urls import _urljoin, make_safe_absolute_uri, resolve_relative_uris
-# Python 2.7 only offers "decodestring()".
-# This name substitution can be removed when Python 2.7 support is dropped.
-try:
- _base64decode = base64.decodebytes
-except AttributeError:
- _base64decode = base64.decodestring
+_base64decode = base64.decodebytes
bytes_ = type(b'')