diff options
author | 2024-03-29 11:41:05 +0100 | |
---|---|---|
committer | 2024-05-09 16:00:53 +0300 | |
commit | e843e71bf5a8142a787095bea496e1c18979edd4 (patch) | |
tree | cfa74b5abaf18fe6c1e6440aea7cd2ac0cbfc4c9 /dev-db/litecli | |
parent | app-dicts/myspell-uk: add 6.4.4 (diff) | |
download | gentoo-e843e71bf5a8142a787095bea496e1c18979edd4.tar.gz gentoo-e843e71bf5a8142a787095bea496e1c18979edd4.tar.bz2 gentoo-e843e71bf5a8142a787095bea496e1c18979edd4.zip |
dev-db/litecli: add 1.10.1
Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Closes: https://github.com/gentoo/gentoo/pull/35981
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-db/litecli')
-rw-r--r-- | dev-db/litecli/Manifest | 1 | ||||
-rw-r--r-- | dev-db/litecli/litecli-1.10.1.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/dev-db/litecli/Manifest b/dev-db/litecli/Manifest index c5b049c04ec9..a0467c888fe4 100644 --- a/dev-db/litecli/Manifest +++ b/dev-db/litecli/Manifest @@ -1 +1,2 @@ DIST litecli-1.10.0.tar.gz 887727 BLAKE2B 141a13760ce24530a72d2a1fb1c896378f1f35a9354b8a6b553792607337b2ea861481f995f1ff016ac4fca1c7bde1aada4c193acd388fdf03095900b137c303 SHA512 aa497fe050f4e1135f2c63f4c0cbab736400158c546a0391f3eca956b38132349ad2eb46505beb52651f74bc5ff1a2ba9b0254e7a6a86d79e461fdd0508fb412 +DIST litecli-1.10.1.tar.gz 887832 BLAKE2B 304feead856a148726f729abd46d91fb2d0bbf7d99e05d437814c0e254f7e957f132317194e01e4dd62ddcdd2dda15c1fcba71c3086f286dd6aeb4aefe419f64 SHA512 f53c04a101f8abe52e81450309b6eab766742b0d26900608024ac8112efdc959787ea3c5997e9647529f65a17544ee31cc70f14b503a9ad3566d545568d822dd diff --git a/dev-db/litecli/litecli-1.10.1.ebuild b/dev-db/litecli/litecli-1.10.1.ebuild new file mode 100644 index 000000000000..ae7764cb1ede --- /dev/null +++ b/dev-db/litecli/litecli-1.10.1.ebuild @@ -0,0 +1,34 @@ +# 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} ) +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" +SRC_URI="https://github.com/dbcli/litecli/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +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.5[${PYTHON_USEDEP}] + dev-python/sqlparse[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest |