diff options
author | 2024-11-06 17:13:14 +0100 | |
---|---|---|
committer | 2024-11-07 15:59:19 +0200 | |
commit | 9c3a015934da631d4271e33bd39bddfc444927cd (patch) | |
tree | bfb4c54bf331ccd9f232941dac56b4ea352b301d /dev-util/repolite | |
parent | net-im/signal-desktop-bin: add missing deps to 7.32.0 (diff) | |
download | gentoo-9c3a015934da631d4271e33bd39bddfc444927cd.tar.gz gentoo-9c3a015934da631d4271e33bd39bddfc444927cd.tar.bz2 gentoo-9c3a015934da631d4271e33bd39bddfc444927cd.zip |
dev-util/repolite: add sphinx to RDEPEND & more
- add comment abut tests
- remove dot in DESCRIPTION
Bug: https://bugs.gentoo.org/942940
Signed-off-by: Filip Kobierski <fkobi@pm.me>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-util/repolite')
-rw-r--r-- | dev-util/repolite/repolite-0.6.2-r1.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/dev-util/repolite/repolite-0.6.2-r1.ebuild b/dev-util/repolite/repolite-0.6.2-r1.ebuild new file mode 100644 index 000000000000..42bcd9968566 --- /dev/null +++ b/dev-util/repolite/repolite-0.6.2-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 optfeature + +DESCRIPTION="Manage a small set of git repository dependencies with YAML" +HOMEPAGE="https://github.com/sarnold/repolite" + +if [[ ${PV} = 9999* ]]; then + EGIT_REPO_URI="https://github.com/sarnold/repolite.git" + EGIT_BRANCH="master" + inherit git-r3 +else + SRC_URI="https://github.com/sarnold/repolite/releases/download/${PV}/${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="doc" +# tests use git_dummy python package which is not packaged +# https://github.com/initialcommit-com/git-dummy +RESTRICT="test" + +RDEPEND=" + dev-python/munch[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] + dev-vcs/git +" +# needs versioningit if building from git repo source +if [[ ${PV} = 9999* ]]; then + BDEPEND="$(python_gen_any_dep '>=dev-python/versioningit-2.0.1[${PYTHON_USEDEP}]')" +fi + +DOCS=( README.rst ) + +distutils_enable_sphinx \ + docs/source \ + dev-python/sphinx-rtd-theme \ + dev-python/recommonmark \ + dev-python/sphinxcontrib-apidoc + +pkg_postinst() { + optfeature "initialize repos with lfs files" dev-vcs/git-lfs +} |