commit:     fecee9ac333f9d195e2a1bedd6683eb299140074
Author:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Fri Aug  6 22:41:16 2021 +0000
Commit:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Fri Aug  6 22:55:36 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fecee9ac

dev-python/flask-nav: enable py310, update EAPI 7 -> 8

Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>

 .../flask-nav/files/flask-nav-0.6-py310.patch      | 22 +++++++++++++++
 dev-python/flask-nav/flask-nav-0.6-r3.ebuild       | 33 ++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/flask-nav/files/flask-nav-0.6-py310.patch 
b/dev-python/flask-nav/files/flask-nav-0.6-py310.patch
new file mode 100644
index 00000000000..e70209498a0
--- /dev/null
+++ b/dev-python/flask-nav/files/flask-nav-0.6-py310.patch
@@ -0,0 +1,22 @@
+From b61de7a6742f7d15f92b477b1518f420303b1efb Mon Sep 17 00:00:00 2001
+From: Jay Shepherd <shepherd...@users.noreply.github.com>
+Date: Mon, 27 Apr 2020 12:11:48 -0600
+Subject: [PATCH] Fix deprecation warning for collections
+
+---
+ flask_nav/__init__.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/flask_nav/__init__.py b/flask_nav/__init__.py
+index 7c25dfa..9fea6ee 100644
+--- a/flask_nav/__init__.py
++++ b/flask_nav/__init__.py
+@@ -46,7 +46,7 @@ class NavbarRenderingError(Exception):
+     pass
+ 
+ 
+-class ElementRegistry(collections.MutableMapping):
++class ElementRegistry(collections.abc.MutableMapping):
+     def __init__(self):
+         self._elems = {}
+ 

diff --git a/dev-python/flask-nav/flask-nav-0.6-r3.ebuild 
b/dev-python/flask-nav/flask-nav-0.6-r3.ebuild
new file mode 100644
index 00000000000..c8f197283d1
--- /dev/null
+++ b/dev-python/flask-nav/flask-nav-0.6-r3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( pypy3 python3_{7..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Easily create navigation for Flask applications."
+HOMEPAGE="https://pythonhosted.org/flask-nav/";
+# docs are missing from PyPI tarballs
+# https://github.com/mbr/flask-nav/pull/12
+SRC_URI="https://github.com/mbr/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+       dev-python/dominate[${PYTHON_USEDEP}]
+       dev-python/flask[${PYTHON_USEDEP}]
+       dev-python/markupsafe[${PYTHON_USEDEP}]
+       dev-python/visitor[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs dev-python/alabaster
+
+PATCHES=(
+       # https://github.com/mbr/flask-nav/pull/27
+       "${FILESDIR}/${P}-py310.patch"
+)

Reply via email to