2022-07-12 15:04:49 +02:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2023-07-20 20:28:34 +02:00
|
|
|
EAPI=8
|
2022-07-12 15:04:49 +02:00
|
|
|
|
2023-07-20 20:28:34 +02:00
|
|
|
PYTHON_COMPAT=( python2_7 python3_{4..12} )
|
2022-07-12 15:04:49 +02:00
|
|
|
|
|
|
|
PATCHES=(
|
|
|
|
"${FILESDIR}/0001-Import-abstract-base-classes-from-collections.abc.patch"
|
|
|
|
)
|
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="Simple two way ordered dictionary for Python"
|
|
|
|
HOMEPAGE="https://github.com/MrS0m30n3/twodict"
|
|
|
|
LICENSE="Unlicense"
|
|
|
|
|
|
|
|
SRC_URI="https://github.com/MrS0m30n3/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
KEYWORDS="amd64 x86"
|
|
|
|
|
|
|
|
SLOT="0"
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND="${PYTHON_DEPS}"
|