Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nototools/
Date: Sun, 15 Sep 2019 12:18:32
Message-Id: 1568549181.454bb2552b9bec8cef803751bf831c27f8023a0a.pacho@gentoo
1 commit: 454bb2552b9bec8cef803751bf831c27f8023a0a
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 15 12:06:21 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 15 12:06:21 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=454bb255
7
8 dev-python/nototools: Version bump
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-python/nototools/Manifest | 1 +
14 dev-python/nototools/nototools-20190320.ebuild | 39 ++++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/dev-python/nototools/Manifest b/dev-python/nototools/Manifest
18 index d6f1c8d1bda..cd357b0463c 100644
19 --- a/dev-python/nototools/Manifest
20 +++ b/dev-python/nototools/Manifest
21 @@ -1 +1,2 @@
22 DIST nototools-40aa4936022295cf851bb62f09a070f63fc8f5ae.tar.gz 9649749 BLAKE2B 5637373dfb70552f640b728814f3db1f3732b7335e7edac502a553a896e9715a8ef9356502c5d33a09a04ef45b0b27989f5a3602707964c7f91a1eee21e9112d SHA512 b1bfacc69f79b9ff7d40ff9b475a2e5808e57a66fa3bf2c79cdc56999e390cfdd2f92b71fd9e53e0e3571f30f3a54d1dcde2c3d8bf38378c72f79260d8d9d5ba
23 +DIST nototools-9c4375f07c9adc00c700c5d252df6a25d7425870.tar.gz 9693250 BLAKE2B 636832b538714d48aa78946b9af9985c55a5543828c3033b849fe3ad75c15472ea7515ca2a4a30c990457acdce2fcbad27d8e61fcd42a4bd7f009638f1bb4381 SHA512 dd2ffe072716c61c9eab9307308f6f72ca3a6631ec2402d03adc4e4483030d770035bf9b9ae66b5b580f1dd7e1cb546f03eff61c00c73069c804953587199e9e
24
25 diff --git a/dev-python/nototools/nototools-20190320.ebuild b/dev-python/nototools/nototools-20190320.ebuild
26 new file mode 100644
27 index 00000000000..c669eeaa0a6
28 --- /dev/null
29 +++ b/dev-python/nototools/nototools-20190320.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +# Doesn't work with python3 yet:
37 +# https://github.com/googlei18n/nototools/issues/472
38 +PYTHON_COMPAT=( python2_7 )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Noto fonts support tools and scripts plus web site generation"
43 +HOMEPAGE="https://github.com/googlei18n/nototools"
44 +
45 +COMMIT="9c4375f07c9adc00c700c5d252df6a25d7425870"
46 +SRC_URI="https://github.com/googlei18n/nototools/archive/${COMMIT}.tar.gz#/nototools-${COMMIT}.tar.gz"
47 +
48 +LICENSE="Apache-2.0 OFL-1.1"
49 +SLOT="0"
50 +KEYWORDS="~amd64"
51 +IUSE=""
52 +
53 +DEPEND=""
54 +BDEPEND=""
55 +RDEPEND="${DEPEND}
56 + media-gfx/scour
57 + >=dev-python/booleanOperations-0.7.0[${PYTHON_USEDEP}]
58 + >=dev-python/defcon-0.3.1[${PYTHON_USEDEP}]
59 + >=dev-python/fonttools-3.36.0[${PYTHON_USEDEP}]
60 + >=dev-python/pillow-4.0.0[${PYTHON_USEDEP}]
61 + >=dev-python/pyclipper-1.0.6[${PYTHON_USEDEP}]
62 + virtual/python-typing[${PYTHON_USEDEP}]
63 +"
64 +
65 +S="${WORKDIR}/${PN}-${COMMIT}"
66 +
67 +python_test() {
68 + esetup.py test
69 +}