Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/xdot/
Date: Sun, 22 Nov 2020 02:31:56
Message-Id: 1606012292.597b2e531822de42bc65bc08264129dd99e949b7.mattst88@gentoo
1 commit: 597b2e531822de42bc65bc08264129dd99e949b7
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 22 01:42:52 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 22 02:31:32 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=597b2e53
7
8 media-gfx/xdot: Version bump to 1.2
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 media-gfx/xdot/Manifest | 1 +
13 media-gfx/xdot/xdot-1.2.ebuild | 34 ++++++++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/media-gfx/xdot/Manifest b/media-gfx/xdot/Manifest
17 index 21627c23715..cd71aba9c7f 100644
18 --- a/media-gfx/xdot/Manifest
19 +++ b/media-gfx/xdot/Manifest
20 @@ -1 +1,2 @@
21 DIST xdot-1.1.tar.gz 134215 BLAKE2B e241a4fb1ec69a8613f7813dc159761e6bffb82ea9f58876287d01946f4c93e66e5eef66e6844abb7738979412c2c7d2d26f76bc0563ad0c3c8550d9e8023b47 SHA512 d67c45c8c071013551f79d671a21ce546b680fac5997ba9631a882ffa3c44c15a69949643ed5e8211417006152575a1d99450ccfb6062427521d1e2bc0814f55
22 +DIST xdot-1.2.tar.gz 136057 BLAKE2B 484a3513ec3d67dbc6e167f171e7f70977ba2472766f25aa7cc088235f99470bfac5fac67368ea53b633320752a928634840ff3dcccc6b96795d3b7c203db922 SHA512 b4d3b15114b982c7c38cc71c0602f6d1ba9874c7315c2b8c4a8a48bf7674e9b38bf19a0d4a2d319acc9a29cf8f177a651d4e213761e88b0b3cb26e95e8a92dda
23
24 diff --git a/media-gfx/xdot/xdot-1.2.ebuild b/media-gfx/xdot/xdot-1.2.ebuild
25 new file mode 100644
26 index 00000000000..0b806d65584
27 --- /dev/null
28 +++ b/media-gfx/xdot/xdot-1.2.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +PYTHON_COMPAT=( python3_{6,7,8,9} )
35 +DISTUTILS_USE_SETUPTOOLS=rdepend
36 +
37 +MY_PN=xdot.py
38 +EGIT_REPO_URI="https://github.com/jrfonseca/${MY_PN}"
39 +
40 +if [[ ${PV} = 9999* ]]; then
41 + GIT_ECLASS="git-r3"
42 + SRC_URI=""
43 +else
44 + KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
45 + MY_P="${MY_PN}-${PV}"
46 + S="${WORKDIR}/${MY_P}"
47 + SRC_URI="https://github.com/jrfonseca/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
48 +fi
49 +
50 +inherit ${GIT_ECLASS} distutils-r1
51 +
52 +DESCRIPTION="Interactive viewer for Graphviz dot files"
53 +HOMEPAGE="https://github.com/jrfonseca/xdot.py"
54 +
55 +LICENSE="LGPL-2+"
56 +SLOT="0"
57 +
58 +DEPEND="
59 + dev-python/pycairo[${PYTHON_USEDEP}]
60 + dev-python/pygobject:3[${PYTHON_USEDEP}]
61 + media-gfx/graphviz
62 +"
63 +RDEPEND="${DEPEND}"