commit: 30175cfb5b55b87c674c3d5df20c713c822f459a
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Jun 28 04:28:38 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Tue Jun 28 04:34:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=30175cfb
dev-python/axisregistry: add 0.3.2
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-python/axisregistry/Manifest | 1 +
dev-python/axisregistry/axisregistry-0.3.2.ebuild | 34 +++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/dev-python/axisregistry/Manifest b/dev-python/axisregistry/Manifest
index 43c707a49..1ae17b161 100644
--- a/dev-python/axisregistry/Manifest
+++ b/dev-python/axisregistry/Manifest
@@ -1 +1,2 @@
DIST axisregistry-0.2.0.tar.gz 15996 BLAKE2B
f773aa03d8d51e29ae188a71ceb6f7505d35575739332bf7f6c0706bb659815a3d21ef2916d752872f335bf504c6a2662ec0ba447e651d50088f6d7b449b4e3a
SHA512
ca069eba5d6ea036e8908d3bc74ec6f65345cad9ef7e6255cf111741e798f68ca24a4528a9dba473a196d1a5d658491677339fd80885e8023aa09d710056f76e
+DIST axisregistry-0.3.2.tar.gz 3497066 BLAKE2B
eefeb7c315afbdae46adf0c55c29d328cf32f8e6a59c3b0eb84ce4bf94a02a1725e80dfbc8ef6fc53500c8db497c0cd8d48fc43854a31d1437a86db5b2cfa42d
SHA512
0e59e7c6a7d9acb78a9d5dd0ebffe38004c477866352b35d91394f1ae953f919f78c25604a60d83b7cb9e67b742cac35d2f0dfc1832f5c0827b7bd1a36bc8792
diff --git a/dev-python/axisregistry/axisregistry-0.3.2.ebuild
b/dev-python/axisregistry/axisregistry-0.3.2.ebuild
new file mode 100644
index 000000000..0339faa33
--- /dev/null
+++ b/dev-python/axisregistry/axisregistry-0.3.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="A Python API to access data from the Google Fonts variable fonts
Axis Registry"
+HOMEPAGE="
+ https://github.com/googlefonts/axisregistry
+ https://pypi.org/project/axisregistry/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+KEYWORDS="~amd64"
+SLOT="0"
+
+RDEPEND="dev-python/protobuf-python[${PYTHON_USEDEP}]"
+DEPEND="
+ ${RDEPEND}
+ >=dev-python/setuptools_scm-4[${PYTHON_USEDEP}]
+"
+
+PATCHES=( "${FILESDIR}/${PN}-0.2.0-remove-setuptools_scm-constraint.patch" )
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+ export SETUPTOOLS_SCM_PRETEND_VERSION="${PV}"
+ distutils-r1_python_prepare_all
+}