summaryrefslogtreecommitdiff
path: root/dev-python/svgwrite
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-05-19 10:03:15 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-05-19 10:03:15 +0000
commitbb5aed69f425d98421a0215a1beda8b97b78c1e9 (patch)
treed5d050a3b19fc67da7f4ddcd729a05903f0df2aa /dev-python/svgwrite
parent967348a0527961f1c1ef0f2e2e4f600e220a8f5f (diff)
downloadbaldeagleos-repo-bb5aed69f425d98421a0215a1beda8b97b78c1e9.tar.gz
baldeagleos-repo-bb5aed69f425d98421a0215a1beda8b97b78c1e9.tar.xz
baldeagleos-repo-bb5aed69f425d98421a0215a1beda8b97b78c1e9.zip
Adding metadata
Diffstat (limited to 'dev-python/svgwrite')
-rw-r--r--dev-python/svgwrite/svgwrite-1.4.1-r1.ebuild32
-rw-r--r--dev-python/svgwrite/svgwrite-1.4.1.ebuild2
2 files changed, 33 insertions, 1 deletions
diff --git a/dev-python/svgwrite/svgwrite-1.4.1-r1.ebuild b/dev-python/svgwrite/svgwrite-1.4.1-r1.ebuild
new file mode 100644
index 000000000000..bb0e1e236ebc
--- /dev/null
+++ b/dev-python/svgwrite/svgwrite-1.4.1-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{7,8,9,10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python Package to write SVG files"
+HOMEPAGE="
+ https://github.com/mozman/svgwrite/
+ https://pypi.org/project/svgwrite/
+"
+SRC_URI="
+ https://github.com/mozman/svgwrite/archive/v${PV}.tar.gz
+ -> ${P}.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ # fetches from the Internet
+ sed -i -e 's:test_embed_google_web_font:_&:' \
+ tests/test_style.py || die
+ distutils-r1_src_prepare
+}
diff --git a/dev-python/svgwrite/svgwrite-1.4.1.ebuild b/dev-python/svgwrite/svgwrite-1.4.1.ebuild
index 7bcc8c95551f..ed41ef99344a 100644
--- a/dev-python/svgwrite/svgwrite-1.4.1.ebuild
+++ b/dev-python/svgwrite/svgwrite-1.4.1.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9,10} pypy3 )
+PYTHON_COMPAT=( python3_{7,8,9,10} )
inherit distutils-r1