forked from hasufell/hasufell-repository
Compare commits
4 Commits
blink-bump
...
python-app
| Author | SHA1 | Date | |
|---|---|---|---|
|
d1bc53f91d
|
|||
|
|
e127e9c07d | ||
|
a156f75e0d
|
|||
| 58626fe26e |
@@ -1,7 +1,7 @@
|
|||||||
# Copyright 2017 Julian Ospald <hasufell@posteo.de>
|
# Copyright 2017 Julian Ospald <hasufell@posteo.de>
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
require autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.15 ] ]
|
require autotools [ supported_autoconf=[ 2.7 ] supported_automake=[ 1.16 ] ]
|
||||||
require github [ user="olafvdspek" tag="${PNV}" ]
|
require github [ user="olafvdspek" tag="${PNV}" ]
|
||||||
|
|
||||||
SUMMARY="A simple but powerful template language for C++"
|
SUMMARY="A simple but powerful template language for C++"
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
Upstream: Yes
|
||||||
|
|
||||||
|
From 08c503bdd1e128118e45fa50be256e27415bbd41 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Adrian Georgescu <ag@ag-projects.com>
|
||||||
|
Date: Sat, 1 Jan 2022 15:19:37 +0000
|
||||||
|
Subject: [PATCH] collections.MutableMapping was deprecated since Python 3.3
|
||||||
|
|
||||||
|
---
|
||||||
|
application/python/weakref.py | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/application/python/weakref.py b/application/python/weakref.py
|
||||||
|
index a785a7e..38fd664 100644
|
||||||
|
--- a/application/python/weakref.py
|
||||||
|
+++ b/application/python/weakref.py
|
||||||
|
@@ -1,7 +1,8 @@
|
||||||
|
|
||||||
|
import weakref
|
||||||
|
|
||||||
|
-from collections import MutableMapping, deque
|
||||||
|
+from collections.abc import MutableMapping
|
||||||
|
+from collections import deque
|
||||||
|
from copy import deepcopy
|
||||||
|
from threading import local
|
||||||
|
|
||||||
@@ -15,4 +15,7 @@ MYOPTIONS=""
|
|||||||
DEPENDENCIES="
|
DEPENDENCIES="
|
||||||
dev-python/zopeinterface[python_abis:*(-)?]
|
dev-python/zopeinterface[python_abis:*(-)?]
|
||||||
"
|
"
|
||||||
|
DEFAULT_SRC_PREPARE_PATCHES=(
|
||||||
|
"${FILES}"/08c503bdd1e128118e45fa50be256e27415bbd41.patch
|
||||||
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user