summaryrefslogtreecommitdiff
path: root/dev-python/survey
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-11-30 18:27:49 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-11-30 18:27:49 +0000
commit68d4fa4f0b32d5e2c795b4c99e73db1a889db81d (patch)
tree1f82ae84728620b559ec790166073a3b1b1befb4 /dev-python/survey
parenta963ef318d51dff71f75375de6906361a76f24df (diff)
downloadbaldeagleos-repo-68d4fa4f0b32d5e2c795b4c99e73db1a889db81d.tar.gz
baldeagleos-repo-68d4fa4f0b32d5e2c795b4c99e73db1a889db81d.tar.xz
baldeagleos-repo-68d4fa4f0b32d5e2c795b4c99e73db1a889db81d.zip
Adding metadata
Diffstat (limited to 'dev-python/survey')
-rw-r--r--dev-python/survey/Manifest1
-rw-r--r--dev-python/survey/survey-5.1.0_alpha.ebuild32
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/survey/Manifest b/dev-python/survey/Manifest
index e1ee26492cc9..9aabed9e04ee 100644
--- a/dev-python/survey/Manifest
+++ b/dev-python/survey/Manifest
@@ -1 +1,2 @@
DIST survey-4.5.4.tar.gz 831109 BLAKE2B 00065211437f4c6c820aca5c511395625da7be9415218d6261005aff946b19a3e65cc31189a6aef755ed88ce81f309ac2eabe23ea7f1e2f359007b4fe9172f96 SHA512 045989ca95e3fa9a840ad8d37a040f46bf3f22a858dd7b826fecf88d4e53b6b14e285ef3bf266add496da2d5ffd58971c2456b4375362e24c1a071fc910a03f4
+DIST survey-5.1.0_alpha.gh.tar.gz 1564669 BLAKE2B 60a98bdf5bb04c5996f45b61b2a88c95a8cc1ba4bee8dedc560acc5d41bcd14540636991042d13b5450f21160e28fd34f69ab06c86f22543e09cfb4bf2b09b69 SHA512 df1edc0db49119fc0eb832d9744834005ebcecad1eb42275b19f917ff90b4a5b7087a596cffdfa11748b8a0ec3b1ab1f3e3251259bbeff0ce238e3069ad4adc1
diff --git a/dev-python/survey/survey-5.1.0_alpha.ebuild b/dev-python/survey/survey-5.1.0_alpha.ebuild
new file mode 100644
index 000000000000..cbcc502a67b0
--- /dev/null
+++ b/dev-python/survey/survey-5.1.0_alpha.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8,9,10,11,12} )
+inherit distutils-r1
+
+DESCRIPTION="A simple library for creating beautiful interactive prompts"
+HOMEPAGE="
+ https://github.com/Exahilosys/survey
+ https://pypi.org/project/survey/
+"
+MY_PV=${PV/_/-}
+SRC_URI="https://github.com/Exahilosys/survey/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}"/${PN}-${MY_PV}
+
+LICENSE="MIT"
+SLOT="0"
+
+BDEPEND="dev-python/setuptools-scm[${PYTHON_USEDEP}]"
+
+distutils_enable_sphinx docs \
+ dev-python/sphinx-autodoc-typehints \
+ dev-python/sphinx-paramlinks \
+ dev-python/sphinx-rtd-theme
+
+src_configure() {
+ distutils-r1_src_configure
+ export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+}