Gentoo Archives: gentoo-commits

From: Dennis Lamm <expeditioneer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/svg-path/
Date: Sun, 27 Sep 2020 07:20:35
Message-Id: 1601191224.92403167ca4422cfc37c82849488ba63be76244d.expeditioneer@gentoo
1 commit: 92403167ca4422cfc37c82849488ba63be76244d
2 Author: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 30 19:41:52 2020 +0000
4 Commit: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 27 07:20:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92403167
7
8 dev-python/svg-path: version bump 4.0.2
9
10 Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
11 Closes: https://github.com/gentoo/gentoo/pull/17340
12 Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
13
14 dev-python/svg-path/Manifest | 1 +
15 dev-python/svg-path/svg-path-4.0.2.ebuild | 28 ++++++++++++++++++++++++++++
16 2 files changed, 29 insertions(+)
17
18 diff --git a/dev-python/svg-path/Manifest b/dev-python/svg-path/Manifest
19 index e510a64cce0..8c90abdb0a8 100644
20 --- a/dev-python/svg-path/Manifest
21 +++ b/dev-python/svg-path/Manifest
22 @@ -1 +1,2 @@
23 DIST svg.path-3.0.tar.gz 17077 BLAKE2B 6fdb51c982575639337d74a6f02f0bb3cc44dac56bd6982dec6493bed52d9caab5ed725ac59bf754f309cc62ef6f77faec462afacc8f93ce9a20b886ef2b5c8e SHA512 73d23f1386bbd4d1c1d805766f7e6fe6f8b7ac731e104020e7d853d7f1b46bc2681f44ef20d9c5343197d9d16b2af49f2c4ef4ba5945f4d25fa0493502203e13
24 +DIST svg.path-4.0.2.tar.gz 18161 BLAKE2B bd5adbf059808b8197fbff0f12e274d98cc72ef840cd29e504bab1dd5fbcb5240aa3d6beb2cc3f6b91bcbdd9251fa29285de0ecd163c22d6cb8454102b911597 SHA512 0659c3d012b81cca83306c2895480bcc770cf23f4fc98dc4f167b6799a9c5618a90aabd81e2c91e6b7c57998d42f04a47d8f0fa966546111cd165127df239510
25
26 diff --git a/dev-python/svg-path/svg-path-4.0.2.ebuild b/dev-python/svg-path/svg-path-4.0.2.ebuild
27 new file mode 100644
28 index 00000000000..e9e4587533b
29 --- /dev/null
30 +++ b/dev-python/svg-path/svg-path-4.0.2.ebuild
31 @@ -0,0 +1,28 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{6..9} )
38 +
39 +inherit distutils-r1
40 +
41 +MY_PN="svg.path"
42 +MY_P="${MY_PN}-${PV}"
43 +
44 +DESCRIPTION="SVG path objects and parser"
45 +HOMEPAGE="https://github.com/regebro/svg.path"
46 +SRC_URI="https://github.com/regebro/svg.path/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
47 +
48 +LICENSE="MIT"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +IUSE=""
52 +
53 +S="${WORKDIR}/${MY_P}"
54 +
55 +distutils_enable_tests setup.py
56 +
57 +python_install() {
58 + python_domodule src/svg
59 +}