commit: 6e034cfa5092c88254f1f1b6de3690e276dcdb84 Author: Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de> AuthorDate: Sat Jan 31 08:23:48 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Feb 11 03:28:00 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e034cfa
dev-db/litecli: add 1.17.1 Signed-off-by: Mario Haustein <mario.haustein <AT> hrz.tu-chemnitz.de> Part-of: https://github.com/gentoo/gentoo/pull/45589 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-db/litecli/Manifest | 1 + dev-db/litecli/litecli-1.17.1.ebuild | 40 ++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/dev-db/litecli/Manifest b/dev-db/litecli/Manifest index dfa258ac1367..e519fdbd66e1 100644 --- a/dev-db/litecli/Manifest +++ b/dev-db/litecli/Manifest @@ -1 +1,2 @@ DIST litecli-1.15.0.tar.gz 895268 BLAKE2B 5d712fdf84aed8df44852d42e155f9149c9e10df8e66752a0ccd2525704dfae53da7ddc61b2ad21222dc69aa6fb57b04f622e6a6077449279029734b6ca874fa SHA512 e11249440eb100a7d2d4658afdac0a4518bc77edb457e8bc028c2f7344f8f46a7fc91980c686d268346ec30f2a1f16a122347a6f3e2183f76e7379a5f474d5fc +DIST litecli-1.17.1.tar.gz 900258 BLAKE2B c66da74e1b2fd2506bc603793751305be5b46b7e4023c4d65d450304a00f3197be2aa9f534726c291eb7a49e2f09c299a4c75ee16b67813bd033cbce08532cc5 SHA512 67945258564e650d395c5d86bde92cc1f92132763557d63937de7b53cd447018d80f606f9aa8f581a02f5f46da6fd3491f532c26418973acbe507ef8db6dd69f diff --git a/dev-db/litecli/litecli-1.17.1.ebuild b/dev-db/litecli/litecli-1.17.1.ebuild new file mode 100644 index 000000000000..1c36d22fb277 --- /dev/null +++ b/dev-db/litecli/litecli-1.17.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) +PYTHON_REQ_USE="sqlite" +inherit distutils-r1 + +DESCRIPTION="CLI for SQLite with auto-completion and syntax highlighting" +HOMEPAGE="https://litecli.com/ https://github.com/dbcli/litecli" + +if [[ ${PV} == "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/dbcli/litecli.git" +else + inherit pypi + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="BSD" +SLOT="0" + +RDEPEND=" + >=dev-python/click-4.1[${PYTHON_USEDEP}] + >=dev-python/cli-helpers-2.2.1[${PYTHON_USEDEP}] + >=dev-python/configobj-5.0.5[${PYTHON_USEDEP}] + >=dev-python/prompt-toolkit-3.0.3[${PYTHON_USEDEP}] + <dev-python/prompt-toolkit-4.0.0[${PYTHON_USEDEP}] + >=dev-python/pygments-1.6[${PYTHON_USEDEP}] + >=dev-python/sqlparse-0.4.4[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest
