blob: 85d7d6d8f33307ebdd63a22b64f2184d76fc9f28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#
# ~~~ dev-python/python-datauri
#
# ~~~ easy data URI manipulation
#
#
# ~~~ metadata
# portage info
EAPI=8
SLOT=0
KEYWORDS="amd64"
# info
HOMEPAGE="https://github.com/fcurella/python-datauri/"
DESCRIPTION="Data URI manipulation made easy"
LICENSE="Unlicense"
# package data
SRC_URI="https://github.com/fcurella/python-datauri/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
#
# ~~~ dependencies
# python setup
DISTUTILS_USE_PEP517="setuptools"
PYTHON_COMPAT=( python3_{8..14} )
inherit distutils-r1
# run-time dependencies
RDEPEND="
dev-python/cached-property
dev-python/typing-extensions"
|