From 0f558761aa2dee1017b4751e4017205e015a9560 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 29 Jun 2022 12:04:12 +0100 Subject: gentoo resync : 29.12.2022 --- dev-db/pgcli/Manifest | 2 +- dev-db/pgcli/pgcli-3.3.1-r1.ebuild | 34 ++++++++++++++++++++++++++++++++++ dev-db/pgcli/pgcli-3.3.1.ebuild | 34 ---------------------------------- 3 files changed, 35 insertions(+), 35 deletions(-) create mode 100644 dev-db/pgcli/pgcli-3.3.1-r1.ebuild delete mode 100644 dev-db/pgcli/pgcli-3.3.1.ebuild (limited to 'dev-db/pgcli') diff --git a/dev-db/pgcli/Manifest b/dev-db/pgcli/Manifest index 99885df73722..0b5dfcd8965b 100644 --- a/dev-db/pgcli/Manifest +++ b/dev-db/pgcli/Manifest @@ -1,3 +1,3 @@ DIST pgcli-3.3.1.tar.gz 446637 BLAKE2B c7c946b905f72e18b06100012c32b332c278fcf6dab2bdd304972b5bd4936a2d3d2c1b2be23a9fd5f986afa14ed8a8f3b6a0a08703ec6142ee3bc3d1a2ece68d SHA512 01286ce62919a8845ca55b40851ad8c3832dba58d523ce2d953d555a60d2785b0129b76361e854574340cb1c0933c7b83eb03d7c2a7df81fbc4231dc42e45357 -EBUILD pgcli-3.3.1.ebuild 967 BLAKE2B 5b9934c3f324192635110b1125bfb128a7bb237a20b8504bbe770d1094bfca799485dff739037d87c5a40b2c92c9f6cf5382641bf7602022d64afc068cb83c6e SHA512 8c96d0bfb20a7d7cde0812b5a502b4a455ed632fd9ccd5a65e75e066fefc9a8667e6799c0e791b9b16e8e09de4d1d11098e0c8b715c6dc7cec8e66bf397c4ee1 +EBUILD pgcli-3.3.1-r1.ebuild 970 BLAKE2B 0c1b149eadbd8a22ac64777ab558703dcea1a76744f75fadab663b2d712a7fb681e6c731a3341fac9aca9cc8b7fc86d0e940785075213944eb5b0b51614072bb SHA512 2f7a9659a0b11fed34159bad5e8dbc21eb375854fe789ee34bb7dca69994bd7b80fcd0d00f71ea48a729f5011eeea895ea24e7d8d5f7228f3cd8d97b8a7c65cb MISC metadata.xml 359 BLAKE2B c8107f0af400492e5365311f645a91c0a56448f3f2983c470c8e8eb08126202f2b5895978971f5f77eec87bbe29e4f198d954dcd87b14b2cfa019fb98dbfe272 SHA512 bca1ac9cb841c4b17c07b6a581d54f860fe384ce139b9894fcdb442024f75ef7996ea55535be177472dc5149e1dd1cf4859181210bbcd637f6b82b8816334cc4 diff --git a/dev-db/pgcli/pgcli-3.3.1-r1.ebuild b/dev-db/pgcli/pgcli-3.3.1-r1.ebuild new file mode 100644 index 000000000000..90fbe7be5b70 --- /dev/null +++ b/dev-db/pgcli/pgcli-3.3.1-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="CLI for Postgres with auto-completion and syntax highlighting" +HOMEPAGE="https://www.pgcli.com https://github.com/dbcli/pgcli" +SRC_URI="https://github.com/dbcli/pgcli/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD MIT" +SLOT="0" +KEYWORDS="amd64 ~x86" + +RDEPEND=" + dev-python/click[${PYTHON_USEDEP}] + >=dev-python/cli_helpers-2.2.1[${PYTHON_USEDEP}] + dev-python/configobj[${PYTHON_USEDEP}] + dev-python/pendulum[${PYTHON_USEDEP}] + dev-python/pgspecial[${PYTHON_USEDEP}] + dev-python/prompt_toolkit[${PYTHON_USEDEP}] + dev-python/psycopg:2[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/setproctitle[${PYTHON_USEDEP}] + dev-python/sqlparse[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-db/postgresql + dev-python/mock[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest diff --git a/dev-db/pgcli/pgcli-3.3.1.ebuild b/dev-db/pgcli/pgcli-3.3.1.ebuild deleted file mode 100644 index 1878a36b4cf2..000000000000 --- a/dev-db/pgcli/pgcli-3.3.1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..9} ) -inherit distutils-r1 - -DESCRIPTION="CLI for Postgres with auto-completion and syntax highlighting" -HOMEPAGE="https://www.pgcli.com https://github.com/dbcli/pgcli" -SRC_URI="https://github.com/dbcli/pgcli/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD MIT" -SLOT="0" -KEYWORDS="amd64 ~x86" - -RDEPEND=" - dev-python/click[${PYTHON_USEDEP}] - >=dev-python/cli_helpers-2.2.1[${PYTHON_USEDEP}] - dev-python/configobj[${PYTHON_USEDEP}] - dev-python/pendulum[${PYTHON_USEDEP}] - dev-python/pgspecial[${PYTHON_USEDEP}] - dev-python/prompt_toolkit[${PYTHON_USEDEP}] - dev-python/psycopg[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}] - dev-python/setproctitle[${PYTHON_USEDEP}] - dev-python/sqlparse[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - dev-db/postgresql - dev-python/mock[${PYTHON_USEDEP}] - )" - -distutils_enable_tests pytest -- cgit v1.2.3