dev-util/repolite: drop 0.4.0

Closes: https://bugs.gentoo.org/929550
Signed-off-by: Filip Kobierski <fkobi@pm.me>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
Filip Kobierski
2024-08-24 21:52:02 +02:00
committed by Joonas Niilola
parent b595ffefd5
commit d90f9f481f
2 changed files with 0 additions and 52 deletions

View File

@@ -1,2 +1 @@
DIST repolite-0.4.0.tar.gz 29316 BLAKE2B 7843eee116de881e688d1ba7ef16113c0dd63d5c1a795d6c6c7b7c034e3dc5c82f5838049e33703cd8c16ea4a7d96c2ae365278be81df6267f2cb171b20dd059 SHA512 14990576f0cd5c77174318be023f0dc63b7dab957e2a896e2a021d5d24b8dccaefad7170ff75ef7e3308ed65ed72092bfc19dca2efdb14598b73722764d9a4dd
DIST repolite-0.6.2.tar.gz 59311 BLAKE2B a5fbce62f272181249f4374b16837780733e5cfb033a2812330a6c029e5881846181f68dc1537ab148395092eb181650f7eb03a9e6760ed47207f33abf689d40 SHA512 b4ec870eb11d8edfe9c103e5b8f4b78eab46d4739055d01b02560036da30b01178c2351fe7aafb1b676105f5e6b8bdc456081917fd4e84219cea37ee2acaa5c3

View File

@@ -1,51 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..11} )
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"
RESTRICT="test" # no tests :(
RDEPEND="
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/munch[${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
}