dev-python/nototools: New package needed for noto-emoji
authorPacho Ramos <pacho@gentoo.org>
Sun, 14 Oct 2018 19:42:13 +0000 (21:42 +0200)
committerPacho Ramos <pacho@gentoo.org>
Sun, 14 Oct 2018 19:43:53 +0000 (21:43 +0200)
Bug: https://bugs.gentoo.org/616974
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

dev-python/nototools/Manifest [new file with mode: 0644]
dev-python/nototools/metadata.xml [new file with mode: 0644]
dev-python/nototools/nototools-20180827.ebuild [new file with mode: 0644]

diff --git a/dev-python/nototools/Manifest b/dev-python/nototools/Manifest
new file mode 100644 (file)
index 0000000..d6f1c8d
--- /dev/null
@@ -0,0 +1 @@
+DIST nototools-40aa4936022295cf851bb62f09a070f63fc8f5ae.tar.gz 9649749 BLAKE2B 5637373dfb70552f640b728814f3db1f3732b7335e7edac502a553a896e9715a8ef9356502c5d33a09a04ef45b0b27989f5a3602707964c7f91a1eee21e9112d SHA512 b1bfacc69f79b9ff7d40ff9b475a2e5808e57a66fa3bf2c79cdc56999e390cfdd2f92b71fd9e53e0e3571f30f3a54d1dcde2c3d8bf38378c72f79260d8d9d5ba
diff --git a/dev-python/nototools/metadata.xml b/dev-python/nototools/metadata.xml
new file mode 100644 (file)
index 0000000..3da97a9
--- /dev/null
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <maintainer type="person">
+               <email>pacho@gentoo.org</email>
+               <name>Pacho Ramos</name>
+       </maintainer>
+</pkgmetadata>
diff --git a/dev-python/nototools/nototools-20180827.ebuild b/dev-python/nototools/nototools-20180827.ebuild
new file mode 100644 (file)
index 0000000..ae27324
--- /dev/null
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# Doesn't work with python3 yet:
+# https://github.com/googlei18n/nototools/issues/472
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+DESCRIPTION="Noto fonts support tools and scripts plus web site generation"
+HOMEPAGE="https://github.com/googlei18n/nototools"
+
+COMMIT="40aa4936022295cf851bb62f09a070f63fc8f5ae"
+SRC_URI="https://github.com/googlei18n/nototools/archive/${COMMIT}.tar.gz#/nototools-${COMMIT}.tar.gz"
+
+LICENSE="Apache-2.0 OFL-1.1"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}
+       dev-python/backports-os[${PYTHON_USEDEP}]
+       dev-python/booleanOperations[${PYTHON_USEDEP}]
+       dev-python/defcon[${PYTHON_USEDEP}]
+       dev-python/fonttools[${PYTHON_USEDEP}]
+       virtual/python-typing[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+python_test() {
+       esetup.py test
+}