python-automat: remove

python 2
This commit is contained in:
classabbyamp 2023-10-11 17:29:37 -04:00 committed by classabbyamp
parent c173160118
commit 3dfe489b9f
2 changed files with 0 additions and 64 deletions

View File

@ -1,37 +0,0 @@
Our builders still use the py2 version of this package.
--- a/automat/_methodical.py
+++ b/automat/_methodical.py
@@ -4,9 +4,15 @@
from functools import wraps
from itertools import count
-from inspect import getfullargspec as getArgsSpec
+try:
+ # Python 3
+ from inspect import getfullargspec as getArgsSpec
+except ImportError:
+ # Python 2
+ from inspect import getargspec as getArgsSpec
import attr
+import six
from ._core import Transitioner, Automaton
from ._introspection import preserveName
@@ -30,13 +36,13 @@
return ArgSpec(
args=tuple(spec.args),
varargs=spec.varargs,
- varkw=spec.varkw,
+ varkw=spec.varkw if six.PY3 else spec.keywords,
defaults=spec.defaults if spec.defaults else (),
kwonlyargs=tuple(spec.kwonlyargs),
kwonlydefaults=(
tuple(spec.kwonlydefaults.items())
if spec.kwonlydefaults else ()
- ),
+ ) if six.PY3 else (),
annotations=tuple(spec.annotations.items()),
)

View File

@ -1,27 +0,0 @@
# Template file for 'python-automat'
pkgname=python-automat
version=22.10.0
revision=2
build_style=python2-module
hostmakedepends="python-setuptools"
depends="python-setuptools python-attrs python-six"
short_desc="Finite-state machines in Python (Python2)"
maintainer="Orphaned <orphan@voidlinux.org>"
license="MIT"
homepage="https://github.com/glyph/Automat"
distfiles="${PYPI_SITE}/A/Automat/Automat-${version}.tar.gz"
checksum=e56beb84edad19dcc11d30e8d9b895f75deeb5ef5e96b84a467066b3b84bb04e
alternatives="automat:automat-visualize:/usr/bin/automat-visualize2"
make_check=no # python2
pre_build() {
sed -i setup.py \
-e '/print(/d' \
-e '/setup_requires=/,+3d' \
-e "s/use_scm_version=True/version='${version}'/"
}
post_install() {
mv ${DESTDIR}/usr/bin/automat-visualize{,2}
vlicense LICENSE
}