[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2024-06-15 Thread Michał Górny
commit: a7556fea8133111f05ff13c9ee2d171e188eeb38
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun 15 15:06:33 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun 15 17:32:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7556fea

dev-python/pgspecial: Enable py3.13

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/pgspecial-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-2.1.2.ebuild 
b/dev-python/pgspecial/pgspecial-2.1.2.ebuild
index 160c438e2316..4fa8bed1bfce 100644
--- a/dev-python/pgspecial/pgspecial-2.1.2.ebuild
+++ b/dev-python/pgspecial/pgspecial-2.1.2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1 pypi
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2024-06-01 Thread Michał Górny
commit: f6d2cbd85a9ce56c19c20c98ae205b0c5ab2b30b
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun  1 08:00:38 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun  1 08:09:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6d2cbd8

dev-python/pgspecial: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest   |  1 -
 dev-python/pgspecial/pgspecial-2.1.1.ebuild | 59 -
 2 files changed, 60 deletions(-)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index e19ef31ac83d..0831f7595432 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1,2 +1 @@
-DIST pgspecial-2.1.1.tar.gz 51017 BLAKE2B 
170db33ca1629244b2c8c2d23a5768528e474660dcaf73079c516d33624202cc05487a338b21ac5bab28780d127923bf24d86231e85cade2f82714add5bdd789
 SHA512 
4ab8596536b90837c2ed0a11b6bbfecd6e5dc487b073a58a1406e8e70028ebb7010430784963fe27a08a5cc48292785f6d02affb750f4a1b74cbe33a0e06a5f0
 DIST pgspecial-2.1.2.tar.gz 51057 BLAKE2B 
d164555363e421f716fd9a03653fa8ef6628fc15b71a03acb040c321a20d03e4193725ca3a809b3d4b8710e62005ba9637f35789795d7b4e195f653527617436
 SHA512 
3ef15c96b8ae84c2c346f44607360aad4bd0abe6f2dfec421af1ca176178b19c64d55baece118600038e105cacb4b5f9b9c3eebbd1e816a9e7a78877d2cb604c

diff --git a/dev-python/pgspecial/pgspecial-2.1.1.ebuild 
b/dev-python/pgspecial/pgspecial-2.1.1.ebuild
deleted file mode 100644
index f835abccdbc1..
--- a/dev-python/pgspecial/pgspecial-2.1.1.ebuild
+++ /dev/null
@@ -1,59 +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_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python implementation of PostgreSQL meta commands"
-HOMEPAGE="
-   https://github.com/dbcli/pgspecial/
-   https://pypi.org/project/pgspecial/
-"
-
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
-   >=dev-python/psycopg-3.0.10:0[${PYTHON_USEDEP}]
-   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   >=dev-db/postgresql-8.1[server]
-   )
-"
-
-distutils_enable_tests pytest
-
-DOCS=( License.txt README.rst changelog.rst  )
-
-EPYTEST_DESELECT=(
-   # assumes a very specific locale
-   tests/test_specials.py::test_slash_l
-   tests/test_specials.py::test_slash_l_pattern
-   # change in postgres? *shrug*
-   tests/test_specials.py::test_slash_d_view_verbose
-)
-
-src_test() {
-   local db=${T}/pgsql
-
-   initdb --username=postgres -D "${db}" || die
-   # TODO: random port
-   pg_ctl -w -D "${db}" start \
-   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
-   psql -h "${T}" -U postgres -d postgres \
-   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
-   createdb -h "${T}" -U postgres _test_db || die
-
-   distutils-r1_src_test
-
-   pg_ctl -w -D "${db}" stop || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2024-06-01 Thread Arthur Zamarin
commit: 8d82fe0fd990dd803ef8aa92ef2a940912717fb3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jun  1 07:25:03 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jun  1 07:25:03 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d82fe0f

dev-python/pgspecial: Stabilize 2.1.2 ALLARCHES, #97

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/pgspecial/pgspecial-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-2.1.2.ebuild 
b/dev-python/pgspecial/pgspecial-2.1.2.ebuild
index 899d00595aa4..160c438e2316 100644
--- a/dev-python/pgspecial/pgspecial-2.1.2.ebuild
+++ b/dev-python/pgspecial/pgspecial-2.1.2.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 x86"
 
 RDEPEND="
>=dev-python/click-4.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2024-05-15 Thread Michał Górny
commit: ef6568910296f79c95df4d577f8a4288aef0fcbf
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May 16 03:23:48 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May 16 03:27:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef656891

dev-python/pgspecial: Bump to 2.1.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest   |  1 +
 dev-python/pgspecial/pgspecial-2.1.2.ebuild | 60 +
 2 files changed, 61 insertions(+)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index b4b50f5ac035..e19ef31ac83d 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1 +1,2 @@
 DIST pgspecial-2.1.1.tar.gz 51017 BLAKE2B 
170db33ca1629244b2c8c2d23a5768528e474660dcaf73079c516d33624202cc05487a338b21ac5bab28780d127923bf24d86231e85cade2f82714add5bdd789
 SHA512 
4ab8596536b90837c2ed0a11b6bbfecd6e5dc487b073a58a1406e8e70028ebb7010430784963fe27a08a5cc48292785f6d02affb750f4a1b74cbe33a0e06a5f0
+DIST pgspecial-2.1.2.tar.gz 51057 BLAKE2B 
d164555363e421f716fd9a03653fa8ef6628fc15b71a03acb040c321a20d03e4193725ca3a809b3d4b8710e62005ba9637f35789795d7b4e195f653527617436
 SHA512 
3ef15c96b8ae84c2c346f44607360aad4bd0abe6f2dfec421af1ca176178b19c64d55baece118600038e105cacb4b5f9b9c3eebbd1e816a9e7a78877d2cb604c

diff --git a/dev-python/pgspecial/pgspecial-2.1.2.ebuild 
b/dev-python/pgspecial/pgspecial-2.1.2.ebuild
new file mode 100644
index ..899d00595aa4
--- /dev/null
+++ b/dev-python/pgspecial/pgspecial-2.1.2.ebuild
@@ -0,0 +1,60 @@
+# 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 pypi
+
+DESCRIPTION="Python implementation of PostgreSQL meta commands"
+HOMEPAGE="
+   https://github.com/dbcli/pgspecial/
+   https://pypi.org/project/pgspecial/
+"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+   >=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-3.0.10:0[${PYTHON_USEDEP}]
+   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   >=dev-db/postgresql-8.1[server]
+   )
+"
+
+distutils_enable_tests pytest
+
+DOCS=( License.txt README.rst changelog.rst  )
+
+EPYTEST_DESELECT=(
+   # assumes a very specific locale
+   tests/test_specials.py::test_slash_l
+   tests/test_specials.py::test_slash_l_pattern
+   # change in postgres? *shrug*
+   tests/test_specials.py::test_slash_d_view_verbose
+   tests/test_specials.py::test_slash_dn
+)
+
+src_test() {
+   local db=${T}/pgsql
+
+   initdb --username=postgres -D "${db}" || die
+   # TODO: random port
+   pg_ctl -w -D "${db}" start \
+   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
+   psql -h "${T}" -U postgres -d postgres \
+   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
+   createdb -h "${T}" -U postgres _test_db || die
+
+   distutils-r1_src_test
+
+   pg_ctl -w -D "${db}" stop || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2023-11-30 Thread Michał Górny
commit: 59def6df0b051aa6358fe3ac8d49e2e4c60b081d
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 30 14:42:38 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 30 14:42:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59def6df

dev-python/pgspecial: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest   |  1 -
 dev-python/pgspecial/pgspecial-2.1.0.ebuild | 57 -
 2 files changed, 58 deletions(-)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 986e37142784..b4b50f5ac035 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1,2 +1 @@
-DIST pgspecial-2.1.0.tar.gz 50495 BLAKE2B 
981f5a01ef32090eae7d477d23476fd8dd2a5bd3a5f3781e990cdbd28ebb24e5176653b7c8f9a1b7f1f01888a5c8278568257a709a5337f8b0d9838bfba8a21a
 SHA512 
5bbd53d21ad89698b6ca04c989aa1ed59f3b8adc9b876b5b7db35bca03b964f645df2af96d3ddf6e7718c8ee06953fcf8f3ca548e65d722eaf4ea0098fa126ad
 DIST pgspecial-2.1.1.tar.gz 51017 BLAKE2B 
170db33ca1629244b2c8c2d23a5768528e474660dcaf73079c516d33624202cc05487a338b21ac5bab28780d127923bf24d86231e85cade2f82714add5bdd789
 SHA512 
4ab8596536b90837c2ed0a11b6bbfecd6e5dc487b073a58a1406e8e70028ebb7010430784963fe27a08a5cc48292785f6d02affb750f4a1b74cbe33a0e06a5f0

diff --git a/dev-python/pgspecial/pgspecial-2.1.0.ebuild 
b/dev-python/pgspecial/pgspecial-2.1.0.ebuild
deleted file mode 100644
index 56d59aaa9449..
--- a/dev-python/pgspecial/pgspecial-2.1.0.ebuild
+++ /dev/null
@@ -1,57 +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_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python implementation of PostgreSQL meta commands"
-HOMEPAGE="
-   https://github.com/dbcli/pgspecial/
-   https://pypi.org/project/pgspecial/
-"
-
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
-   >=dev-python/psycopg-3.0.10:0[${PYTHON_USEDEP}]
-   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   >=dev-db/postgresql-8.1[server]
-   )
-"
-
-distutils_enable_tests pytest
-
-DOCS=( License.txt README.rst changelog.rst  )
-
-EPYTEST_DESELECT=(
-   # assumes a very specific locale
-   tests/test_specials.py::test_slash_l
-   tests/test_specials.py::test_slash_l_pattern
-)
-
-src_test() {
-   local db=${T}/pgsql
-
-   initdb --username=postgres -D "${db}" || die
-   # TODO: random port
-   pg_ctl -w -D "${db}" start \
-   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
-   psql -h "${T}" -U postgres -d postgres \
-   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
-   createdb -h "${T}" -U postgres _test_db || die
-
-   distutils-r1_src_test
-
-   pg_ctl -w -D "${db}" stop || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2023-11-30 Thread Michał Górny
commit: 9b820219c84f9853f0e01576447ce92b39e764fb
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 30 14:22:44 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 30 14:22:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b820219

dev-python/pgspecial: Stabilize 2.1.1 ALLARCHES, #918788

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/pgspecial-2.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-2.1.1.ebuild 
b/dev-python/pgspecial/pgspecial-2.1.1.ebuild
index f661b04d87a0..f835abccdbc1 100644
--- a/dev-python/pgspecial/pgspecial-2.1.1.ebuild
+++ b/dev-python/pgspecial/pgspecial-2.1.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 x86"
 
 RDEPEND="
>=dev-python/click-4.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2023-11-30 Thread Michał Górny
commit: 4917a421133c69910b73682617380d6223220598
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 30 14:21:18 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 30 14:21:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4917a421

dev-python/pgspecial: Keyword 2.1.1 arm64, #917992

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/pgspecial-2.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-2.1.1.ebuild 
b/dev-python/pgspecial/pgspecial-2.1.1.ebuild
index b653fdfe6f36..f661b04d87a0 100644
--- a/dev-python/pgspecial/pgspecial-2.1.1.ebuild
+++ b/dev-python/pgspecial/pgspecial-2.1.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 RDEPEND="
>=dev-python/click-4.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2023-11-30 Thread Michał Górny
commit: e808daa6885e2a4ede2aa6f05b89ab3d94b6e2dd
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 30 13:20:04 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 30 13:20:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e808daa6

dev-python/pgspecial: Deselect broken test

Bug: https://bugs.gentoo.org/917992
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/pgspecial-2.1.1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/pgspecial/pgspecial-2.1.1.ebuild 
b/dev-python/pgspecial/pgspecial-2.1.1.ebuild
index 0bfd1d36c343..b653fdfe6f36 100644
--- a/dev-python/pgspecial/pgspecial-2.1.1.ebuild
+++ b/dev-python/pgspecial/pgspecial-2.1.1.ebuild
@@ -38,6 +38,8 @@ EPYTEST_DESELECT=(
# assumes a very specific locale
tests/test_specials.py::test_slash_l
tests/test_specials.py::test_slash_l_pattern
+   # change in postgres? *shrug*
+   tests/test_specials.py::test_slash_d_view_verbose
 )
 
 src_test() {



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2023-10-30 Thread Michał Górny
commit: e8e5411ffe9657bc0feb31f22434a226676ac089
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 30 17:38:39 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 30 18:04:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8e5411f

dev-python/pgspecial: Bump to 2.1.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest   |  1 +
 dev-python/pgspecial/pgspecial-2.1.1.ebuild | 57 +
 2 files changed, 58 insertions(+)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 7da814a98290..986e37142784 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1 +1,2 @@
 DIST pgspecial-2.1.0.tar.gz 50495 BLAKE2B 
981f5a01ef32090eae7d477d23476fd8dd2a5bd3a5f3781e990cdbd28ebb24e5176653b7c8f9a1b7f1f01888a5c8278568257a709a5337f8b0d9838bfba8a21a
 SHA512 
5bbd53d21ad89698b6ca04c989aa1ed59f3b8adc9b876b5b7db35bca03b964f645df2af96d3ddf6e7718c8ee06953fcf8f3ca548e65d722eaf4ea0098fa126ad
+DIST pgspecial-2.1.1.tar.gz 51017 BLAKE2B 
170db33ca1629244b2c8c2d23a5768528e474660dcaf73079c516d33624202cc05487a338b21ac5bab28780d127923bf24d86231e85cade2f82714add5bdd789
 SHA512 
4ab8596536b90837c2ed0a11b6bbfecd6e5dc487b073a58a1406e8e70028ebb7010430784963fe27a08a5cc48292785f6d02affb750f4a1b74cbe33a0e06a5f0

diff --git a/dev-python/pgspecial/pgspecial-2.1.1.ebuild 
b/dev-python/pgspecial/pgspecial-2.1.1.ebuild
new file mode 100644
index ..0bfd1d36c343
--- /dev/null
+++ b/dev-python/pgspecial/pgspecial-2.1.1.ebuild
@@ -0,0 +1,57 @@
+# 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_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python implementation of PostgreSQL meta commands"
+HOMEPAGE="
+   https://github.com/dbcli/pgspecial/
+   https://pypi.org/project/pgspecial/
+"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-3.0.10:0[${PYTHON_USEDEP}]
+   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   >=dev-db/postgresql-8.1[server]
+   )
+"
+
+distutils_enable_tests pytest
+
+DOCS=( License.txt README.rst changelog.rst  )
+
+EPYTEST_DESELECT=(
+   # assumes a very specific locale
+   tests/test_specials.py::test_slash_l
+   tests/test_specials.py::test_slash_l_pattern
+)
+
+src_test() {
+   local db=${T}/pgsql
+
+   initdb --username=postgres -D "${db}" || die
+   # TODO: random port
+   pg_ctl -w -D "${db}" start \
+   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
+   psql -h "${T}" -U postgres -d postgres \
+   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
+   createdb -h "${T}" -U postgres _test_db || die
+
+   distutils-r1_src_test
+
+   pg_ctl -w -D "${db}" stop || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2023-06-03 Thread Michał Górny
commit: e93e7e22a3809ccd8ee63040c615c9d2046af407
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun  3 17:02:38 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun  3 17:45:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e93e7e22

dev-python/pgspecial: Enable py3.12

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/pgspecial-2.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-2.1.0.ebuild 
b/dev-python/pgspecial/pgspecial-2.1.0.ebuild
index 20d5d8a54dcc..56d59aaa9449 100644
--- a/dev-python/pgspecial/pgspecial-2.1.0.ebuild
+++ b/dev-python/pgspecial/pgspecial-2.1.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 pypi
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2023-05-02 Thread Michał Górny
commit: 6734f6e884aa7f0c2506cbd15d187ad26fc566a7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May  3 05:11:47 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May  3 05:11:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6734f6e8

dev-python/pgspecial: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest   |  1 -
 dev-python/pgspecial/pgspecial-2.0.1.ebuild | 55 -
 2 files changed, 56 deletions(-)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 0cb2253d4137..7da814a98290 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1,2 +1 @@
-DIST pgspecial-2.0.1.gh.tar.gz 50181 BLAKE2B 
6f3f9f8feba717c18d3985d80a432eb7d127c65f7436bfc792a44cb5d7aad08e6e3b931cc289a051fbfea43cd5d8d7db44ede6de89683d462d51635c5caf2e04
 SHA512 
e89e7cd0f7e849fe93b8e8e79e409ee73ba6c22f3d76279415f236184f732d12cdd8b6bb7722b24ec2bd665f3429c0bf4e6905cd24c9739aa78906b12f841f13
 DIST pgspecial-2.1.0.tar.gz 50495 BLAKE2B 
981f5a01ef32090eae7d477d23476fd8dd2a5bd3a5f3781e990cdbd28ebb24e5176653b7c8f9a1b7f1f01888a5c8278568257a709a5337f8b0d9838bfba8a21a
 SHA512 
5bbd53d21ad89698b6ca04c989aa1ed59f3b8adc9b876b5b7db35bca03b964f645df2af96d3ddf6e7718c8ee06953fcf8f3ca548e65d722eaf4ea0098fa126ad

diff --git a/dev-python/pgspecial/pgspecial-2.0.1.ebuild 
b/dev-python/pgspecial/pgspecial-2.0.1.ebuild
deleted file mode 100644
index d2105974bbd4..
--- a/dev-python/pgspecial/pgspecial-2.0.1.ebuild
+++ /dev/null
@@ -1,55 +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
-
-DESCRIPTION="Python implementation of PostgreSQL meta commands"
-HOMEPAGE="
-   https://github.com/dbcli/pgspecial/
-   https://pypi.org/project/pgspecial/
-"
-SRC_URI="
-   https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
-   >=dev-python/psycopg-3.0.10:0[${PYTHON_USEDEP}]
-   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   >=dev-db/postgresql-8.1[server]
-   )
-"
-
-distutils_enable_tests pytest
-
-DOCS=( License.txt README.rst changelog.rst  )
-
-src_test() {
-   local db=${T}/pgsql
-
-   initdb --username=postgres -D "${db}" || die
-   # TODO: random port
-   pg_ctl -w -D "${db}" start \
-   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
-   psql -h "${T}" -U postgres -d postgres \
-   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
-   createdb -h "${T}" -U postgres _test_db || die
-
-   distutils-r1_src_test
-
-   pg_ctl -w -D "${db}" stop || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2023-05-02 Thread Sam James
commit: db27a23d7f9d12081b199e926add0abb88089bd2
Author: Sam James  gentoo  org>
AuthorDate: Tue May  2 20:06:56 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  2 20:10:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db27a23d

dev-python/pgspecial: Stabilize 2.1.0 ALLARCHES, #905593

Signed-off-by: Sam James  gentoo.org>

 dev-python/pgspecial/pgspecial-2.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-2.1.0.ebuild 
b/dev-python/pgspecial/pgspecial-2.1.0.ebuild
index 3f8eac9c4b2d..20d5d8a54dcc 100644
--- a/dev-python/pgspecial/pgspecial-2.1.0.ebuild
+++ b/dev-python/pgspecial/pgspecial-2.1.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
>=dev-python/click-4.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2023-04-01 Thread Michał Górny
commit: eedfee2e38000cdeb62e0ef43b26a76ed93f44b0
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr  1 05:12:53 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr  1 06:13:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eedfee2e

dev-python/pgspecial: Bump to 2.1.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest   |  1 +
 dev-python/pgspecial/pgspecial-2.1.0.ebuild | 57 +
 2 files changed, 58 insertions(+)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index bbe4a17b757c..0cb2253d4137 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1 +1,2 @@
 DIST pgspecial-2.0.1.gh.tar.gz 50181 BLAKE2B 
6f3f9f8feba717c18d3985d80a432eb7d127c65f7436bfc792a44cb5d7aad08e6e3b931cc289a051fbfea43cd5d8d7db44ede6de89683d462d51635c5caf2e04
 SHA512 
e89e7cd0f7e849fe93b8e8e79e409ee73ba6c22f3d76279415f236184f732d12cdd8b6bb7722b24ec2bd665f3429c0bf4e6905cd24c9739aa78906b12f841f13
+DIST pgspecial-2.1.0.tar.gz 50495 BLAKE2B 
981f5a01ef32090eae7d477d23476fd8dd2a5bd3a5f3781e990cdbd28ebb24e5176653b7c8f9a1b7f1f01888a5c8278568257a709a5337f8b0d9838bfba8a21a
 SHA512 
5bbd53d21ad89698b6ca04c989aa1ed59f3b8adc9b876b5b7db35bca03b964f645df2af96d3ddf6e7718c8ee06953fcf8f3ca548e65d722eaf4ea0098fa126ad

diff --git a/dev-python/pgspecial/pgspecial-2.1.0.ebuild 
b/dev-python/pgspecial/pgspecial-2.1.0.ebuild
new file mode 100644
index ..3f8eac9c4b2d
--- /dev/null
+++ b/dev-python/pgspecial/pgspecial-2.1.0.ebuild
@@ -0,0 +1,57 @@
+# 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 pypi
+
+DESCRIPTION="Python implementation of PostgreSQL meta commands"
+HOMEPAGE="
+   https://github.com/dbcli/pgspecial/
+   https://pypi.org/project/pgspecial/
+"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-3.0.10:0[${PYTHON_USEDEP}]
+   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   >=dev-db/postgresql-8.1[server]
+   )
+"
+
+distutils_enable_tests pytest
+
+DOCS=( License.txt README.rst changelog.rst  )
+
+EPYTEST_DESELECT=(
+   # assumes a very specific locale
+   tests/test_specials.py::test_slash_l
+   tests/test_specials.py::test_slash_l_pattern
+)
+
+src_test() {
+   local db=${T}/pgsql
+
+   initdb --username=postgres -D "${db}" || die
+   # TODO: random port
+   pg_ctl -w -D "${db}" start \
+   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
+   psql -h "${T}" -U postgres -d postgres \
+   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
+   createdb -h "${T}" -U postgres _test_db || die
+
+   distutils-r1_src_test
+
+   pg_ctl -w -D "${db}" stop || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2023-03-16 Thread Michał Górny
commit: ee97c9fe704520de6bf885fddab17813dace8608
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 16 18:09:58 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 16 18:11:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee97c9fe

dev-python/pgspecial: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest   |  1 -
 dev-python/pgspecial/pgspecial-1.13.1-r1.ebuild | 47 -
 2 files changed, 48 deletions(-)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 5570a6d0d1d7..bbe4a17b757c 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1,2 +1 @@
-DIST pgspecial-1.13.1.tar.gz 50269 BLAKE2B 
0566a7c2d8ee1ea350e27a4283f56c4cb1360f23ac9fe0147358ff68f527907c47650466dd41ae9c68e8a1f8ba658e452a88db360a7066f5562b7f0c578b8b62
 SHA512 
4b8f0495451db40087327640edc4bf8c29997b4f501dc5af6d093ad880fc337050d651676ae8ff434da3564e773f9e89e6e7d6bf0d6cfb7b70d8b4beea73a347
 DIST pgspecial-2.0.1.gh.tar.gz 50181 BLAKE2B 
6f3f9f8feba717c18d3985d80a432eb7d127c65f7436bfc792a44cb5d7aad08e6e3b931cc289a051fbfea43cd5d8d7db44ede6de89683d462d51635c5caf2e04
 SHA512 
e89e7cd0f7e849fe93b8e8e79e409ee73ba6c22f3d76279415f236184f732d12cdd8b6bb7722b24ec2bd665f3429c0bf4e6905cd24c9739aa78906b12f841f13

diff --git a/dev-python/pgspecial/pgspecial-1.13.1-r1.ebuild 
b/dev-python/pgspecial/pgspecial-1.13.1-r1.ebuild
deleted file mode 100644
index baa7522af657..
--- a/dev-python/pgspecial/pgspecial-1.13.1-r1.ebuild
+++ /dev/null
@@ -1,47 +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..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python implementation of PostgreSQL meta commands"
-HOMEPAGE="https://github.com/dbcli/pgspecial;
-SRC_URI="https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
-   >=dev-python/psycopg-2.7.4:2[${PYTHON_USEDEP}]
-   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? ( >=dev-db/postgresql-8.1[server] )
-"
-
-distutils_enable_tests pytest
-
-DOCS=( License.txt README.rst changelog.rst  )
-
-src_test() {
-   local db=${T}/pgsql
-
-   initdb --username=postgres -D "${db}" || die
-   # TODO: random port
-   pg_ctl -w -D "${db}" start \
-   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
-   psql -h "${T}" -U postgres -d postgres \
-   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
-   createdb -h "${T}" -U postgres _test_db || die
-
-   distutils-r1_src_test
-
-   pg_ctl -w -D "${db}" stop || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2022-07-12 Thread Michał Górny
commit: 276caff9011eff66a579bec92f81e0d146c5deb5
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jul 12 07:10:53 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jul 12 07:10:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=276caff9

dev-python/pgspecial: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest   |  1 -
 dev-python/pgspecial/pgspecial-2.0.0.ebuild | 55 -
 2 files changed, 56 deletions(-)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 1e1b19bac4bf..5570a6d0d1d7 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1,3 +1,2 @@
 DIST pgspecial-1.13.1.tar.gz 50269 BLAKE2B 
0566a7c2d8ee1ea350e27a4283f56c4cb1360f23ac9fe0147358ff68f527907c47650466dd41ae9c68e8a1f8ba658e452a88db360a7066f5562b7f0c578b8b62
 SHA512 
4b8f0495451db40087327640edc4bf8c29997b4f501dc5af6d093ad880fc337050d651676ae8ff434da3564e773f9e89e6e7d6bf0d6cfb7b70d8b4beea73a347
-DIST pgspecial-2.0.0.gh.tar.gz 50098 BLAKE2B 
3e4c2b85c8d0e31bdd6d61fd1dd8e9a54b68fef23017e2a11238018d63fff8ba93ee5f8f5f4679321b1a757b4a504d86d9740bea91c95f0312a31cf0135378fa
 SHA512 
59dfbc83be3f263fdf9fdad425675624f2738357f2b3f29abc37b90df1bdae30bee6145faa65715a7a166a9e8ee66201cc5344e697ce0121ae7c6bf9bb3af012
 DIST pgspecial-2.0.1.gh.tar.gz 50181 BLAKE2B 
6f3f9f8feba717c18d3985d80a432eb7d127c65f7436bfc792a44cb5d7aad08e6e3b931cc289a051fbfea43cd5d8d7db44ede6de89683d462d51635c5caf2e04
 SHA512 
e89e7cd0f7e849fe93b8e8e79e409ee73ba6c22f3d76279415f236184f732d12cdd8b6bb7722b24ec2bd665f3429c0bf4e6905cd24c9739aa78906b12f841f13

diff --git a/dev-python/pgspecial/pgspecial-2.0.0.ebuild 
b/dev-python/pgspecial/pgspecial-2.0.0.ebuild
deleted file mode 100644
index 80daceb18f18..
--- a/dev-python/pgspecial/pgspecial-2.0.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python implementation of PostgreSQL meta commands"
-HOMEPAGE="
-   https://github.com/dbcli/pgspecial/
-   https://pypi.org/project/pgspecial/
-"
-SRC_URI="
-   https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
-   >=dev-python/psycopg-3.0.10:0[${PYTHON_USEDEP}]
-   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   >=dev-db/postgresql-8.1[server]
-   )
-"
-
-distutils_enable_tests pytest
-
-DOCS=( License.txt README.rst changelog.rst  )
-
-src_test() {
-   local db=${T}/pgsql
-
-   initdb --username=postgres -D "${db}" || die
-   # TODO: random port
-   pg_ctl -w -D "${db}" start \
-   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
-   psql -h "${T}" -U postgres -d postgres \
-   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
-   createdb -h "${T}" -U postgres _test_db || die
-
-   distutils-r1_src_test
-
-   pg_ctl -w -D "${db}" stop || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2022-07-11 Thread Sam James
commit: ad2b87d5a7845f97868bf0dc4b889c406b658558
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 12 00:00:38 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 12 00:00:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad2b87d5

dev-python/pgspecial: Stabilize 2.0.1 amd64, #857342

Signed-off-by: Sam James  gentoo.org>

 dev-python/pgspecial/pgspecial-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-2.0.1.ebuild 
b/dev-python/pgspecial/pgspecial-2.0.1.ebuild
index 3873d4fe47e4..16d50ef54118 100644
--- a/dev-python/pgspecial/pgspecial-2.0.1.ebuild
+++ b/dev-python/pgspecial/pgspecial-2.0.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="
>=dev-python/click-4.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2022-07-11 Thread Sam James
commit: 1dac1f8a658ae535146ba9bc51e2294a556c204f
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 12 00:01:13 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 12 00:01:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dac1f8a

dev-python/pgspecial: Stabilize 2.0.1 x86, #857342

Signed-off-by: Sam James  gentoo.org>

 dev-python/pgspecial/pgspecial-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-2.0.1.ebuild 
b/dev-python/pgspecial/pgspecial-2.0.1.ebuild
index 16d50ef54118..8d5b4e1cfbe0 100644
--- a/dev-python/pgspecial/pgspecial-2.0.1.ebuild
+++ b/dev-python/pgspecial/pgspecial-2.0.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
>=dev-python/click-4.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2022-06-18 Thread Michał Górny
commit: dabe4aae905043bccd66e8fb85979b8d9775121c
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun 18 04:25:42 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun 18 06:47:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dabe4aae

dev-python/pgspecial: Bump to 2.0.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest   |  1 +
 dev-python/pgspecial/pgspecial-2.0.1.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 1ab608246aad..1e1b19bac4bf 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1,2 +1,3 @@
 DIST pgspecial-1.13.1.tar.gz 50269 BLAKE2B 
0566a7c2d8ee1ea350e27a4283f56c4cb1360f23ac9fe0147358ff68f527907c47650466dd41ae9c68e8a1f8ba658e452a88db360a7066f5562b7f0c578b8b62
 SHA512 
4b8f0495451db40087327640edc4bf8c29997b4f501dc5af6d093ad880fc337050d651676ae8ff434da3564e773f9e89e6e7d6bf0d6cfb7b70d8b4beea73a347
 DIST pgspecial-2.0.0.gh.tar.gz 50098 BLAKE2B 
3e4c2b85c8d0e31bdd6d61fd1dd8e9a54b68fef23017e2a11238018d63fff8ba93ee5f8f5f4679321b1a757b4a504d86d9740bea91c95f0312a31cf0135378fa
 SHA512 
59dfbc83be3f263fdf9fdad425675624f2738357f2b3f29abc37b90df1bdae30bee6145faa65715a7a166a9e8ee66201cc5344e697ce0121ae7c6bf9bb3af012
+DIST pgspecial-2.0.1.gh.tar.gz 50181 BLAKE2B 
6f3f9f8feba717c18d3985d80a432eb7d127c65f7436bfc792a44cb5d7aad08e6e3b931cc289a051fbfea43cd5d8d7db44ede6de89683d462d51635c5caf2e04
 SHA512 
e89e7cd0f7e849fe93b8e8e79e409ee73ba6c22f3d76279415f236184f732d12cdd8b6bb7722b24ec2bd665f3429c0bf4e6905cd24c9739aa78906b12f841f13

diff --git a/dev-python/pgspecial/pgspecial-2.0.1.ebuild 
b/dev-python/pgspecial/pgspecial-2.0.1.ebuild
new file mode 100644
index ..3873d4fe47e4
--- /dev/null
+++ b/dev-python/pgspecial/pgspecial-2.0.1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of PostgreSQL meta commands"
+HOMEPAGE="
+   https://github.com/dbcli/pgspecial/
+   https://pypi.org/project/pgspecial/
+"
+SRC_URI="
+   https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-3.0.10:0[${PYTHON_USEDEP}]
+   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   >=dev-db/postgresql-8.1[server]
+   )
+"
+
+distutils_enable_tests pytest
+
+DOCS=( License.txt README.rst changelog.rst  )
+
+src_test() {
+   local db=${T}/pgsql
+
+   initdb --username=postgres -D "${db}" || die
+   # TODO: random port
+   pg_ctl -w -D "${db}" start \
+   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
+   psql -h "${T}" -U postgres -d postgres \
+   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
+   createdb -h "${T}" -U postgres _test_db || die
+
+   distutils-r1_src_test
+
+   pg_ctl -w -D "${db}" stop || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2022-06-04 Thread Michał Górny
commit: a4ce5a6b5b6dc68775248e8b123b4630857987b7
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun  5 05:31:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun  5 05:31:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ce5a6b

dev-python/pgspecial: Add python@ as maint.

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/metadata.xml 
b/dev-python/pgspecial/metadata.xml
index be3181917ee8..8b940410fbb3 100644
--- a/dev-python/pgspecial/metadata.xml
+++ b/dev-python/pgspecial/metadata.xml
@@ -1,7 +1,10 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   pyt...@gentoo.org
+   Python
+   

PGSpecial provides an API to execute meta-commands
(AKA "special", or "backslash commands") on PostgreSQL.



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2022-06-04 Thread Michał Górny
commit: 8eddf160109cc9865eb781eacec672aab98d7389
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun  4 07:07:28 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun  4 07:41:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eddf160

dev-python/pgspecial: Use slot for dev-python/psycopg

Signed-off-by: Michał Górny  gentoo.org>

 .../pgspecial/{pgspecial-1.13.1.ebuild => pgspecial-1.13.1-r1.ebuild}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-1.13.1.ebuild 
b/dev-python/pgspecial/pgspecial-1.13.1-r1.ebuild
similarity index 95%
rename from dev-python/pgspecial/pgspecial-1.13.1.ebuild
rename to dev-python/pgspecial/pgspecial-1.13.1-r1.ebuild
index b0b886f4c9c1..d853eb868079 100644
--- a/dev-python/pgspecial/pgspecial-1.13.1.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.13.1-r1.ebuild
@@ -19,7 +19,7 @@ KEYWORDS="amd64 x86"
 RDEPEND="
>=dev-python/click-4.1[${PYTHON_USEDEP}]
>=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
-   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-2.7.4:2[${PYTHON_USEDEP}]
>=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
 "
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2022-06-04 Thread Michał Górny
commit: 51f67a0fdced2bbb83b7e1d8391d7b9f5d2dd731
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun  4 07:12:59 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun  4 07:42:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51f67a0f

dev-python/pgspecial: Bump to 2.0.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest   |  1 +
 dev-python/pgspecial/pgspecial-2.0.0.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index c70d36a2e2a4..1ab608246aad 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1 +1,2 @@
 DIST pgspecial-1.13.1.tar.gz 50269 BLAKE2B 
0566a7c2d8ee1ea350e27a4283f56c4cb1360f23ac9fe0147358ff68f527907c47650466dd41ae9c68e8a1f8ba658e452a88db360a7066f5562b7f0c578b8b62
 SHA512 
4b8f0495451db40087327640edc4bf8c29997b4f501dc5af6d093ad880fc337050d651676ae8ff434da3564e773f9e89e6e7d6bf0d6cfb7b70d8b4beea73a347
+DIST pgspecial-2.0.0.gh.tar.gz 50098 BLAKE2B 
3e4c2b85c8d0e31bdd6d61fd1dd8e9a54b68fef23017e2a11238018d63fff8ba93ee5f8f5f4679321b1a757b4a504d86d9740bea91c95f0312a31cf0135378fa
 SHA512 
59dfbc83be3f263fdf9fdad425675624f2738357f2b3f29abc37b90df1bdae30bee6145faa65715a7a166a9e8ee66201cc5344e697ce0121ae7c6bf9bb3af012

diff --git a/dev-python/pgspecial/pgspecial-2.0.0.ebuild 
b/dev-python/pgspecial/pgspecial-2.0.0.ebuild
new file mode 100644
index ..80daceb18f18
--- /dev/null
+++ b/dev-python/pgspecial/pgspecial-2.0.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of PostgreSQL meta commands"
+HOMEPAGE="
+   https://github.com/dbcli/pgspecial/
+   https://pypi.org/project/pgspecial/
+"
+SRC_URI="
+   https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-3.0.10:0[${PYTHON_USEDEP}]
+   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   >=dev-db/postgresql-8.1[server]
+   )
+"
+
+distutils_enable_tests pytest
+
+DOCS=( License.txt README.rst changelog.rst  )
+
+src_test() {
+   local db=${T}/pgsql
+
+   initdb --username=postgres -D "${db}" || die
+   # TODO: random port
+   pg_ctl -w -D "${db}" start \
+   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
+   psql -h "${T}" -U postgres -d postgres \
+   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
+   createdb -h "${T}" -U postgres _test_db || die
+
+   distutils-r1_src_test
+
+   pg_ctl -w -D "${db}" stop || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2022-04-17 Thread Michał Górny
commit: 8afe94826ae7c960f6f58c2312809092a223cdab
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Apr 17 16:37:45 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Apr 17 16:53:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8afe9482

dev-python/pgspecial: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest|  1 -
 dev-python/pgspecial/pgspecial-1.13.0.ebuild | 43 
 2 files changed, 44 deletions(-)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 72487e3c92b0..c70d36a2e2a4 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1,2 +1 @@
-DIST pgspecial-1.13.0.tar.gz 49204 BLAKE2B 
7269fc94fc0672db1880ba4b76c8926b6a3c995aac3fca77add7ae6756fcc3295d8d32fcede37cd3fa2d82c82aebfc26d91ed50b4294c5206f04d4c72742b45b
 SHA512 
de2560106fbad14f2095ace468c8490cb325aedb772f649f20a0b5fe65f19afeed33f219d3a6eca683a63b418741a9906a01f7c4bdd8734868517faeba791026
 DIST pgspecial-1.13.1.tar.gz 50269 BLAKE2B 
0566a7c2d8ee1ea350e27a4283f56c4cb1360f23ac9fe0147358ff68f527907c47650466dd41ae9c68e8a1f8ba658e452a88db360a7066f5562b7f0c578b8b62
 SHA512 
4b8f0495451db40087327640edc4bf8c29997b4f501dc5af6d093ad880fc337050d651676ae8ff434da3564e773f9e89e6e7d6bf0d6cfb7b70d8b4beea73a347

diff --git a/dev-python/pgspecial/pgspecial-1.13.0.ebuild 
b/dev-python/pgspecial/pgspecial-1.13.0.ebuild
deleted file mode 100644
index 310237e74a19..
--- a/dev-python/pgspecial/pgspecial-1.13.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python implementation of PostgreSQL meta commands"
-HOMEPAGE="https://github.com/dbcli/pgspecial;
-SRC_URI="https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
-   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
-   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? ( >=dev-db/postgresql-8.1[server] )"
-
-distutils_enable_tests pytest
-DOCS=( License.txt README.rst changelog.rst  )
-
-src_test() {
-   local db=${T}/pgsql
-
-   initdb --username=postgres -D "${db}" || die
-   # TODO: random port
-   pg_ctl -w -D "${db}" start \
-   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
-   psql -h "${T}" -U postgres -d postgres \
-   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
-   createdb -h "${T}" -U postgres _test_db || die
-
-   distutils-r1_src_test
-
-   pg_ctl -w -D "${db}" stop || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2022-04-17 Thread Jakov Smolić
commit: b49a9b020046bf9791f1ba57ebb324d38bd97796
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Apr 17 08:06:20 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Apr 17 08:06:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b49a9b02

dev-python/pgspecial: Stabilize 1.13.1 ALLARCHES, #838571

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/pgspecial/pgspecial-1.13.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-1.13.1.ebuild 
b/dev-python/pgspecial/pgspecial-1.13.1.ebuild
index 6b76fd83565d..b0b886f4c9c1 100644
--- a/dev-python/pgspecial/pgspecial-1.13.1.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.13.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
>=dev-python/click-4.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2022-03-16 Thread Michał Górny
commit: 6b30bd97b6d8c774f3d4b27b799495cb3c7c733d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 16 09:40:45 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 16 09:54:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b30bd97

dev-python/pgspecial: Bump to 1.13.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest|  1 +
 dev-python/pgspecial/pgspecial-1.13.1.ebuild | 47 
 2 files changed, 48 insertions(+)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index f361a4ac9992..72487e3c92b0 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1 +1,2 @@
 DIST pgspecial-1.13.0.tar.gz 49204 BLAKE2B 
7269fc94fc0672db1880ba4b76c8926b6a3c995aac3fca77add7ae6756fcc3295d8d32fcede37cd3fa2d82c82aebfc26d91ed50b4294c5206f04d4c72742b45b
 SHA512 
de2560106fbad14f2095ace468c8490cb325aedb772f649f20a0b5fe65f19afeed33f219d3a6eca683a63b418741a9906a01f7c4bdd8734868517faeba791026
+DIST pgspecial-1.13.1.tar.gz 50269 BLAKE2B 
0566a7c2d8ee1ea350e27a4283f56c4cb1360f23ac9fe0147358ff68f527907c47650466dd41ae9c68e8a1f8ba658e452a88db360a7066f5562b7f0c578b8b62
 SHA512 
4b8f0495451db40087327640edc4bf8c29997b4f501dc5af6d093ad880fc337050d651676ae8ff434da3564e773f9e89e6e7d6bf0d6cfb7b70d8b4beea73a347

diff --git a/dev-python/pgspecial/pgspecial-1.13.1.ebuild 
b/dev-python/pgspecial/pgspecial-1.13.1.ebuild
new file mode 100644
index ..6b76fd83565d
--- /dev/null
+++ b/dev-python/pgspecial/pgspecial-1.13.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of PostgreSQL meta commands"
+HOMEPAGE="https://github.com/dbcli/pgspecial;
+SRC_URI="https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
+   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? ( >=dev-db/postgresql-8.1[server] )
+"
+
+distutils_enable_tests pytest
+
+DOCS=( License.txt README.rst changelog.rst  )
+
+src_test() {
+   local db=${T}/pgsql
+
+   initdb --username=postgres -D "${db}" || die
+   # TODO: random port
+   pg_ctl -w -D "${db}" start \
+   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
+   psql -h "${T}" -U postgres -d postgres \
+   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
+   createdb -h "${T}" -U postgres _test_db || die
+
+   distutils-r1_src_test
+
+   pg_ctl -w -D "${db}" stop || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2021-06-24 Thread Michał Górny
commit: eb4e534cd3d6e86f17d99168cd64c85e12d88a72
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun 24 08:01:14 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun 24 08:20:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb4e534c

dev-python/pgspecial: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest|  1 -
 dev-python/pgspecial/pgspecial-1.12.1.ebuild | 25 -
 2 files changed, 26 deletions(-)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 83f1275385e..f361a4ac999 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1,2 +1 @@
-DIST pgspecial-1.12.1.tar.gz 47945 BLAKE2B 
e189695a3689f76f6fd3afc3b5f7c412dfc0a79fcd2465f8bca29b81de1609e045f0237fcc6b63a75c7df1d9a31d4c04cd8fa227493d6cce4cd6863a4c36cd2a
 SHA512 
d1ef6462ab3d1cf5fe35f0dabc61698d7c2cf7e35b292c3cb540cce4bd613485d7dca53fd549a134209461c31c8144d72d1af1ee8aad5569766d9387b7e10e0b
 DIST pgspecial-1.13.0.tar.gz 49204 BLAKE2B 
7269fc94fc0672db1880ba4b76c8926b6a3c995aac3fca77add7ae6756fcc3295d8d32fcede37cd3fa2d82c82aebfc26d91ed50b4294c5206f04d4c72742b45b
 SHA512 
de2560106fbad14f2095ace468c8490cb325aedb772f649f20a0b5fe65f19afeed33f219d3a6eca683a63b418741a9906a01f7c4bdd8734868517faeba791026

diff --git a/dev-python/pgspecial/pgspecial-1.12.1.ebuild 
b/dev-python/pgspecial/pgspecial-1.12.1.ebuild
deleted file mode 100644
index 6c6f5cc1a94..000
--- a/dev-python/pgspecial/pgspecial-1.12.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-inherit distutils-r1
-
-DESCRIPTION="Python implementation of PostgreSQL meta commands"
-HOMEPAGE="https://github.com/dbcli/pgspecial;
-SRC_URI="https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
-   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
-   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-DOCS=( License.txt README.rst changelog.rst  )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2021-06-23 Thread Agostino Sarubbo
commit: 5b04c43ec53100dcc9b9c66f921e8b333d988938
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jun 24 04:22:40 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jun 24 04:22:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b04c43e

dev-python/pgspecial: amd64/x86 stable (ALLARCHES policy) wrt bug #797970

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/pgspecial/pgspecial-1.13.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-1.13.0.ebuild 
b/dev-python/pgspecial/pgspecial-1.13.0.ebuild
index a3365765f2b..310237e74a1 100644
--- a/dev-python/pgspecial/pgspecial-1.13.0.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.13.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
>=dev-python/click-4.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2021-05-22 Thread Michał Górny
commit: 09a88c92abba81c8c690819890d8e914794d31ce
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 22 09:14:51 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 22 09:30:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09a88c92

dev-python/pgspecial: Enable python3.10

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/pgspecial-1.13.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-1.13.0.ebuild 
b/dev-python/pgspecial/pgspecial-1.13.0.ebuild
index 9bf3d23fbd6..a3365765f2b 100644
--- a/dev-python/pgspecial/pgspecial-1.13.0.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.13.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{7..10} )
 inherit distutils-r1
 
 DESCRIPTION="Python implementation of PostgreSQL meta commands"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2021-05-22 Thread Michał Górny
commit: 05205acd4714a62ec0a311ff777494f8e1935f73
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 22 09:13:51 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 22 09:30:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05205acd

dev-python/pgspecial: Start a database server for tests

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/pgspecial-1.13.0.ebuild | 18 ++
 1 file changed, 18 insertions(+)

diff --git a/dev-python/pgspecial/pgspecial-1.13.0.ebuild 
b/dev-python/pgspecial/pgspecial-1.13.0.ebuild
index f83f61db75d..9bf3d23fbd6 100644
--- a/dev-python/pgspecial/pgspecial-1.13.0.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.13.0.ebuild
@@ -20,6 +20,24 @@ RDEPEND="
>=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
>=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
 "
+BDEPEND="
+   test? ( >=dev-db/postgresql-8.1[server] )"
 
 distutils_enable_tests pytest
 DOCS=( License.txt README.rst changelog.rst  )
+
+src_test() {
+   local db=${T}/pgsql
+
+   initdb --username=postgres -D "${db}" || die
+   # TODO: random port
+   pg_ctl -w -D "${db}" start \
+   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
+   psql -h "${T}" -U postgres -d postgres \
+   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
+   createdb -h "${T}" -U postgres _test_db || die
+
+   distutils-r1_src_test
+
+   pg_ctl -w -D "${db}" stop || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2021-05-22 Thread Michał Górny
commit: ad671bd5c81db2b46654312c6d2e6a305d867e47
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 22 07:21:19 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 22 07:58:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad671bd5

dev-python/pgspecial: Bump to 1.13.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest|  1 +
 dev-python/pgspecial/pgspecial-1.13.0.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 1ea7fa72cc1..83f1275385e 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1 +1,2 @@
 DIST pgspecial-1.12.1.tar.gz 47945 BLAKE2B 
e189695a3689f76f6fd3afc3b5f7c412dfc0a79fcd2465f8bca29b81de1609e045f0237fcc6b63a75c7df1d9a31d4c04cd8fa227493d6cce4cd6863a4c36cd2a
 SHA512 
d1ef6462ab3d1cf5fe35f0dabc61698d7c2cf7e35b292c3cb540cce4bd613485d7dca53fd549a134209461c31c8144d72d1af1ee8aad5569766d9387b7e10e0b
+DIST pgspecial-1.13.0.tar.gz 49204 BLAKE2B 
7269fc94fc0672db1880ba4b76c8926b6a3c995aac3fca77add7ae6756fcc3295d8d32fcede37cd3fa2d82c82aebfc26d91ed50b4294c5206f04d4c72742b45b
 SHA512 
de2560106fbad14f2095ace468c8490cb325aedb772f649f20a0b5fe65f19afeed33f219d3a6eca683a63b418741a9906a01f7c4bdd8734868517faeba791026

diff --git a/dev-python/pgspecial/pgspecial-1.13.0.ebuild 
b/dev-python/pgspecial/pgspecial-1.13.0.ebuild
new file mode 100644
index 000..f83f61db75d
--- /dev/null
+++ b/dev-python/pgspecial/pgspecial-1.13.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of PostgreSQL meta commands"
+HOMEPAGE="https://github.com/dbcli/pgspecial;
+SRC_URI="https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
+   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+DOCS=( License.txt README.rst changelog.rst  )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2021-03-25 Thread Michał Górny
commit: 278de15f779721d9d4f927f23441ed763bffa578
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 25 21:34:29 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 25 21:34:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=278de15f

dev-python/pgspecial: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest |  1 -
 dev-python/pgspecial/pgspecial-1.11.10.ebuild | 24 
 2 files changed, 25 deletions(-)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index d3991fe7daa..1ea7fa72cc1 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1,2 +1 @@
-DIST pgspecial-1.11.10.tar.gz 45560 BLAKE2B 
f4554eb812fadad984f746e8035a7a91f22480321df920bd15b96239c571c13cdf397ea38ea122f0a73167924a902955a1eb50dc865ba1e4445324358c3e3cef
 SHA512 
452f217055873d3d1acff6b9b5016a3e721bffd4349aaa975aefe3ae1e25ca576f90eab13e7f913ebbfb796ac7b81dd8ed63c8e6d055c2ad7f8fd9d72ca8c21a
 DIST pgspecial-1.12.1.tar.gz 47945 BLAKE2B 
e189695a3689f76f6fd3afc3b5f7c412dfc0a79fcd2465f8bca29b81de1609e045f0237fcc6b63a75c7df1d9a31d4c04cd8fa227493d6cce4cd6863a4c36cd2a
 SHA512 
d1ef6462ab3d1cf5fe35f0dabc61698d7c2cf7e35b292c3cb540cce4bd613485d7dca53fd549a134209461c31c8144d72d1af1ee8aad5569766d9387b7e10e0b

diff --git a/dev-python/pgspecial/pgspecial-1.11.10.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.10.ebuild
deleted file mode 100644
index 9825ad44a2f..000
--- a/dev-python/pgspecial/pgspecial-1.11.10.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-inherit distutils-r1
-
-DESCRIPTION="Python implementation of PostgreSQL meta commands"
-HOMEPAGE="https://github.com/dbcli/pgspecial;
-SRC_URI="https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
-   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-DOCS=( License.txt README.rst changelog.rst  )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2021-03-25 Thread Sam James
commit: bbdaebe88ad942285c80d097deecf77e8a547aa4
Author: Sam James  gentoo  org>
AuthorDate: Thu Mar 25 21:27:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar 25 21:27:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbdaebe8

dev-python/pgspecial: Stabilize 1.12.1 ALLARCHES, #777198

Signed-off-by: Sam James  gentoo.org>

 dev-python/pgspecial/pgspecial-1.12.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-1.12.1.ebuild 
b/dev-python/pgspecial/pgspecial-1.12.1.ebuild
index f83f61db75d..6c6f5cc1a94 100644
--- a/dev-python/pgspecial/pgspecial-1.12.1.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.12.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
>=dev-python/click-4.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2021-02-13 Thread Michał Górny
commit: a247202a2aac5d73f394b82c60ae6015709466cb
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb 13 07:53:18 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb 13 08:14:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a247202a

dev-python/pgspecial: Bump to 1.12.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest|  1 +
 dev-python/pgspecial/pgspecial-1.12.1.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 456cc942229..d3991fe7daa 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1 +1,2 @@
 DIST pgspecial-1.11.10.tar.gz 45560 BLAKE2B 
f4554eb812fadad984f746e8035a7a91f22480321df920bd15b96239c571c13cdf397ea38ea122f0a73167924a902955a1eb50dc865ba1e4445324358c3e3cef
 SHA512 
452f217055873d3d1acff6b9b5016a3e721bffd4349aaa975aefe3ae1e25ca576f90eab13e7f913ebbfb796ac7b81dd8ed63c8e6d055c2ad7f8fd9d72ca8c21a
+DIST pgspecial-1.12.1.tar.gz 47945 BLAKE2B 
e189695a3689f76f6fd3afc3b5f7c412dfc0a79fcd2465f8bca29b81de1609e045f0237fcc6b63a75c7df1d9a31d4c04cd8fa227493d6cce4cd6863a4c36cd2a
 SHA512 
d1ef6462ab3d1cf5fe35f0dabc61698d7c2cf7e35b292c3cb540cce4bd613485d7dca53fd549a134209461c31c8144d72d1af1ee8aad5569766d9387b7e10e0b

diff --git a/dev-python/pgspecial/pgspecial-1.12.1.ebuild 
b/dev-python/pgspecial/pgspecial-1.12.1.ebuild
new file mode 100644
index 000..f83f61db75d
--- /dev/null
+++ b/dev-python/pgspecial/pgspecial-1.12.1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of PostgreSQL meta commands"
+HOMEPAGE="https://github.com/dbcli/pgspecial;
+SRC_URI="https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
+   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+DOCS=( License.txt README.rst changelog.rst  )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2020-11-03 Thread Michał Górny
commit: ba97a06c1d933df2c44d43b7cebb8e37c67f8b8d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov  4 07:26:18 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov  4 07:34:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba97a06c

dev-python/pgspecial: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest|  1 -
 dev-python/pgspecial/pgspecial-1.11.9.ebuild | 24 
 2 files changed, 25 deletions(-)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index de95da9f449..456cc942229 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1,2 +1 @@
 DIST pgspecial-1.11.10.tar.gz 45560 BLAKE2B 
f4554eb812fadad984f746e8035a7a91f22480321df920bd15b96239c571c13cdf397ea38ea122f0a73167924a902955a1eb50dc865ba1e4445324358c3e3cef
 SHA512 
452f217055873d3d1acff6b9b5016a3e721bffd4349aaa975aefe3ae1e25ca576f90eab13e7f913ebbfb796ac7b81dd8ed63c8e6d055c2ad7f8fd9d72ca8c21a
-DIST pgspecial-1.11.9.tar.gz 45009 BLAKE2B 
3ae53d4225d448c3291d6701caf7388023d140678461a5811673c7cc7ed242fb0c18ea38427210366f58f1886894def348051469c23aff20be7abc5e5c96622f
 SHA512 
b07083ed715a6ac3d1b32ac954b83852fcb154f4b2757fae91ce7c35524576fa8caef5cb7201d313eac783bc956ea89c9d68f099a11c332486d677dfb185caca

diff --git a/dev-python/pgspecial/pgspecial-1.11.9.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.9.ebuild
deleted file mode 100644
index 1d69bbdadf4..000
--- a/dev-python/pgspecial/pgspecial-1.11.9.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-inherit distutils-r1
-
-DESCRIPTION="Python implementation of postgres meta commands"
-HOMEPAGE="https://github.com/dbcli/pgspecial;
-SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
-   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2020-11-03 Thread Sam James
commit: 49456cbbe305d736d1e0e36b8749cade82f88505
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov  4 01:02:26 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov  4 01:02:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49456cbb

dev-python/pgspecial: Stabilize 1.11.10 ALLARCHES, #752276

Signed-off-by: Sam James  gentoo.org>

 dev-python/pgspecial/pgspecial-1.11.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-1.11.10.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.10.ebuild
index 1f8952ae4e4..217bd0580fb 100644
--- a/dev-python/pgspecial/pgspecial-1.11.10.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.11.10.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
>=dev-python/click-4.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2020-11-02 Thread Michał Górny
commit: ac8485e1d36514cac2b746eff4a4dd322aef6ac5
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov  2 11:15:12 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Nov  2 11:19:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac8485e1

dev-python/pgspecial: Mark ALLARCHES

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/pgspecial/metadata.xml 
b/dev-python/pgspecial/metadata.xml
index aa7641b8040..8b85d401f4e 100644
--- a/dev-python/pgspecial/metadata.xml
+++ b/dev-python/pgspecial/metadata.xml
@@ -13,6 +13,7 @@
 PGSpecial provides an API to execute meta-commands
 (AKA "special", or "backslash commands") on PostgreSQL.
   
+  
   
 dbcli/pgspecial
   



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2020-10-13 Thread Agostino Sarubbo
commit: 9f0fb3ae9d5ec8129f2438097259f7fc9ced8d6c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Oct 13 10:00:37 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Oct 13 10:01:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f0fb3ae

dev-python/pgspecial: x86 stable wrt bug #747658

Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/pgspecial/pgspecial-1.11.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-1.11.9.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.9.ebuild
index 0a13bd8ec7a..1d69bbdadf4 100644
--- a/dev-python/pgspecial/pgspecial-1.11.9.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.11.9.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2020-10-13 Thread Agostino Sarubbo
commit: 43b9cb97f12d591d52abb53df8736c850a745bfd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Oct 13 09:23:49 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Oct 13 09:23:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43b9cb97

dev-python/pgspecial: amd64 stable wrt bug #747658

Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/pgspecial/pgspecial-1.11.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-1.11.9.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.9.ebuild
index 4f2e362cbe1..0a13bd8ec7a 100644
--- a/dev-python/pgspecial/pgspecial-1.11.9.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.11.9.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2020-09-30 Thread Joonas Niilola
commit: 78140c1736c90db47a6e1761810913d6f0a72ea1
Author: Jakov Smolic  sartura  hr>
AuthorDate: Wed Sep 30 08:17:45 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Sep 30 09:28:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78140c17

dev-python/pgspecial: bring back python 3.6

- Not sure why 3.6 was removed, but it's needed for revdeps.

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/17330
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pgspecial/pgspecial-1.11.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-1.11.10.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.10.ebuild
index c35d1714c4d..1f8952ae4e4 100644
--- a/dev-python/pgspecial/pgspecial-1.11.10.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.11.10.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{6..9} )
 inherit distutils-r1
 
 DESCRIPTION="Python implementation of PostgreSQL meta commands"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2020-09-30 Thread Joonas Niilola
commit: 5d8894e2ea1e0a4ab96af8f66790fefaf259
Author: Andrea Cerisara  gmail  com>
AuthorDate: Thu Sep  3 21:26:18 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Sep 30 07:54:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d889ccc

dev-python/pgspecial-1.11.10: version bump

Signed-off-by: Andrea Cerisara  gmail.com>
Bug: https://bugs.gentoo.org/739652
Package-Manager: Portage-3.0.4, Repoman-2.3.23
Closes: https://github.com/gentoo/gentoo/pull/17405
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pgspecial/Manifest |  1 +
 dev-python/pgspecial/metadata.xml | 13 -
 dev-python/pgspecial/pgspecial-1.11.10.ebuild | 24 
 3 files changed, 37 insertions(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 4da6ac0294c..de95da9f449 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1 +1,2 @@
+DIST pgspecial-1.11.10.tar.gz 45560 BLAKE2B 
f4554eb812fadad984f746e8035a7a91f22480321df920bd15b96239c571c13cdf397ea38ea122f0a73167924a902955a1eb50dc865ba1e4445324358c3e3cef
 SHA512 
452f217055873d3d1acff6b9b5016a3e721bffd4349aaa975aefe3ae1e25ca576f90eab13e7f913ebbfb796ac7b81dd8ed63c8e6d055c2ad7f8fd9d72ca8c21a
 DIST pgspecial-1.11.9.tar.gz 45009 BLAKE2B 
3ae53d4225d448c3291d6701caf7388023d140678461a5811673c7cc7ed242fb0c18ea38427210366f58f1886894def348051469c23aff20be7abc5e5c96622f
 SHA512 
b07083ed715a6ac3d1b32ac954b83852fcb154f4b2757fae91ce7c35524576fa8caef5cb7201d313eac783bc956ea89c9d68f099a11c332486d677dfb185caca

diff --git a/dev-python/pgspecial/metadata.xml 
b/dev-python/pgspecial/metadata.xml
index 7afccfdce85..aa7641b8040 100644
--- a/dev-python/pgspecial/metadata.xml
+++ b/dev-python/pgspecial/metadata.xml
@@ -1,7 +1,18 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
+  
+andreaceris...@gmail.com
+  Andrea Cerisara
+
+
+  proxy-ma...@gentoo.org
+  Proxy Maintainers
+  
+  
+PGSpecial provides an API to execute meta-commands
+(AKA "special", or "backslash commands") on PostgreSQL.
+  
   
 dbcli/pgspecial
   

diff --git a/dev-python/pgspecial/pgspecial-1.11.10.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.10.ebuild
new file mode 100644
index 000..c35d1714c4d
--- /dev/null
+++ b/dev-python/pgspecial/pgspecial-1.11.10.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of PostgreSQL meta commands"
+HOMEPAGE="https://github.com/dbcli/pgspecial;
+SRC_URI="https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
+   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+DOCS=( License.txt README.rst changelog.rst  )



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2020-08-30 Thread Joonas Niilola
commit: f42e436eb7219277f04078ff46f94ab643c0275d
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Aug 30 08:00:28 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Aug 30 08:18:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f42e436e

dev-python/pgspecial: drop to m-n

Closes: https://bugs.gentoo.org/687142
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pgspecial/metadata.xml | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/dev-python/pgspecial/metadata.xml 
b/dev-python/pgspecial/metadata.xml
index 97b02e36777..7afccfdce85 100644
--- a/dev-python/pgspecial/metadata.xml
+++ b/dev-python/pgspecial/metadata.xml
@@ -1,14 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-linder.gabr...@gmail.com
-Gabriel Linder
-  
-  
-proxy-ma...@gentoo.org
-Proxy Maintainers
-  
+  
   
 dbcli/pgspecial
   



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2020-03-28 Thread Michał Górny
commit: 272795b43230988e774d24a62096e4b537f90afb
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 28 11:47:13 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 28 11:59:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=272795b4

dev-python/pgspecial: Remove redundant versions

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/Manifest|  2 --
 dev-python/pgspecial/pgspecial-1.11.5.ebuild | 34 
 dev-python/pgspecial/pgspecial-1.11.7.ebuild | 33 ---
 3 files changed, 69 deletions(-)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 0b173c43718..4da6ac0294c 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1,3 +1 @@
-DIST pgspecial-1.11.5.tar.gz 43649 BLAKE2B 
f9b8956cfcd81bba946e0323d584668c82e6fc18a0aa08012c3236636d0ad801f10f786b71707daadafc1274d5733adecf9233871b13bded8fe8e8f41fad0fc9
 SHA512 
984a09a10a705d91d9b97142eb2502b44b2a79d95cc1ed8596dd2f7f31515028f4c34cc54383d762a73fdefd6e59418f677b020181740b82cebb5d8e77bbc234
-DIST pgspecial-1.11.7.tar.gz 44874 BLAKE2B 
2d3afd7983a31347a4b0f59fd095684c2fb83e85def027f633734a672c3df1ed21584e2620932efacbdc27a579ea35e810e727456191e02811c81e906373ac5b
 SHA512 
dbcfe996cb67af292c90bec431d918c3e78aa4fb90fcbfc9d5ef36ed0c5c7de58505704df277b586990efcc7110e1395af1476003aafaf359257f0665e4d9a19
 DIST pgspecial-1.11.9.tar.gz 45009 BLAKE2B 
3ae53d4225d448c3291d6701caf7388023d140678461a5811673c7cc7ed242fb0c18ea38427210366f58f1886894def348051469c23aff20be7abc5e5c96622f
 SHA512 
b07083ed715a6ac3d1b32ac954b83852fcb154f4b2757fae91ce7c35524576fa8caef5cb7201d313eac783bc956ea89c9d68f099a11c332486d677dfb185caca

diff --git a/dev-python/pgspecial/pgspecial-1.11.5.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.5.ebuild
deleted file mode 100644
index 05bc7d476ee..000
--- a/dev-python/pgspecial/pgspecial-1.11.5.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{3_6,3_7} )
-inherit distutils-r1
-
-DESCRIPTION="Python implementation of postgres meta commands"
-HOMEPAGE="https://github.com/dbcli/pgspecial;
-SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
-   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
-"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   ${RDEPEND}
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )"
-
-python_test() {
-   # tests/test_special.py require local postgres instance
-   pytest -vv tests/test_internal.py || die
-}

diff --git a/dev-python/pgspecial/pgspecial-1.11.7.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.7.ebuild
deleted file mode 100644
index 114ed95d1ae..000
--- a/dev-python/pgspecial/pgspecial-1.11.7.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{3_6,3_7} )
-inherit distutils-r1
-
-DESCRIPTION="Python implementation of postgres meta commands"
-HOMEPAGE="https://github.com/dbcli/pgspecial;
-SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
-   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
-"
-DEPEND="
-   test? (
-   ${RDEPEND}
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )"
-
-python_test() {
-   # tests/test_special.py require local postgres instance
-   pytest -vv tests/test_internal.py || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2020-02-05 Thread Michał Górny
commit: 87fd7de8f1a9cd6dc267f592fb19bcf85629164f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb  5 17:57:53 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb  5 17:57:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87fd7de8

dev-python/pgspecial: Remove py2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/pgspecial-1.11.5.ebuild | 2 +-
 dev-python/pgspecial/pgspecial-1.11.7.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pgspecial/pgspecial-1.11.5.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.5.ebuild
index 932fc9faffd..d41fd7f97d6 100644
--- a/dev-python/pgspecial/pgspecial-1.11.5.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.11.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7} )
 inherit distutils-r1
 
 DESCRIPTION="Python implementation of postgres meta commands"

diff --git a/dev-python/pgspecial/pgspecial-1.11.7.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.7.ebuild
index 323ce5614df..a0377b70a4b 100644
--- a/dev-python/pgspecial/pgspecial-1.11.7.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.11.7.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7} )
 inherit distutils-r1
 
 DESCRIPTION="Python implementation of postgres meta commands"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2019-12-13 Thread Joonas Niilola
commit: 38dd87ea0eb2d6eedd446725e45f2d1ccde8a043
Author: Gabriel Linder  gmail  com>
AuthorDate: Sun Dec  8 12:51:23 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Dec 13 13:48:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38dd87ea

dev-python/pgspecial: bump to version 1.11.9.

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Gabriel Linder  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pgspecial/Manifest|  1 +
 dev-python/pgspecial/pgspecial-1.11.9.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 3e29f80f793..0b173c43718 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1,2 +1,3 @@
 DIST pgspecial-1.11.5.tar.gz 43649 BLAKE2B 
f9b8956cfcd81bba946e0323d584668c82e6fc18a0aa08012c3236636d0ad801f10f786b71707daadafc1274d5733adecf9233871b13bded8fe8e8f41fad0fc9
 SHA512 
984a09a10a705d91d9b97142eb2502b44b2a79d95cc1ed8596dd2f7f31515028f4c34cc54383d762a73fdefd6e59418f677b020181740b82cebb5d8e77bbc234
 DIST pgspecial-1.11.7.tar.gz 44874 BLAKE2B 
2d3afd7983a31347a4b0f59fd095684c2fb83e85def027f633734a672c3df1ed21584e2620932efacbdc27a579ea35e810e727456191e02811c81e906373ac5b
 SHA512 
dbcfe996cb67af292c90bec431d918c3e78aa4fb90fcbfc9d5ef36ed0c5c7de58505704df277b586990efcc7110e1395af1476003aafaf359257f0665e4d9a19
+DIST pgspecial-1.11.9.tar.gz 45009 BLAKE2B 
3ae53d4225d448c3291d6701caf7388023d140678461a5811673c7cc7ed242fb0c18ea38427210366f58f1886894def348051469c23aff20be7abc5e5c96622f
 SHA512 
b07083ed715a6ac3d1b32ac954b83852fcb154f4b2757fae91ce7c35524576fa8caef5cb7201d313eac783bc956ea89c9d68f099a11c332486d677dfb185caca

diff --git a/dev-python/pgspecial/pgspecial-1.11.9.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.9.ebuild
new file mode 100644
index 000..274f62b7a91
--- /dev/null
+++ b/dev-python/pgspecial/pgspecial-1.11.9.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{5,6,7} )
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of postgres meta commands"
+HOMEPAGE="https://github.com/dbcli/pgspecial;
+SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   >=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
+   >=dev-python/python-sqlparse-0.1.19[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2019-11-29 Thread Joonas Niilola
commit: e97aa55358563ba4ed561fae1448988ca6c21738
Author: Gabriel Linder  gmail  com>
AuthorDate: Sat Oct  5 11:24:17 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Nov 30 07:48:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e97aa553

dev-python/pgspecial: bump to version 1.11.7.

Closes: https://bugs.gentoo.org/696642
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Gabriel Linder  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13154
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/pgspecial/Manifest|  1 +
 dev-python/pgspecial/pgspecial-1.11.7.ebuild | 33 
 2 files changed, 34 insertions(+)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index db2a65c0260..3e29f80f793 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1 +1,2 @@
 DIST pgspecial-1.11.5.tar.gz 43649 BLAKE2B 
f9b8956cfcd81bba946e0323d584668c82e6fc18a0aa08012c3236636d0ad801f10f786b71707daadafc1274d5733adecf9233871b13bded8fe8e8f41fad0fc9
 SHA512 
984a09a10a705d91d9b97142eb2502b44b2a79d95cc1ed8596dd2f7f31515028f4c34cc54383d762a73fdefd6e59418f677b020181740b82cebb5d8e77bbc234
+DIST pgspecial-1.11.7.tar.gz 44874 BLAKE2B 
2d3afd7983a31347a4b0f59fd095684c2fb83e85def027f633734a672c3df1ed21584e2620932efacbdc27a579ea35e810e727456191e02811c81e906373ac5b
 SHA512 
dbcfe996cb67af292c90bec431d918c3e78aa4fb90fcbfc9d5ef36ed0c5c7de58505704df277b586990efcc7110e1395af1476003aafaf359257f0665e4d9a19

diff --git a/dev-python/pgspecial/pgspecial-1.11.7.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.7.ebuild
new file mode 100644
index 000..06f5ead2917
--- /dev/null
+++ b/dev-python/pgspecial/pgspecial-1.11.7.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of postgres meta commands"
+HOMEPAGE="https://github.com/dbcli/pgspecial;
+SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
+   >=dev-python/python-sqlparse-0.1.19[${PYTHON_USEDEP}]
+"
+DEPEND="
+   test? (
+   ${RDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+python_test() {
+   # tests/test_special.py require local postgres instance
+   pytest -vv tests/test_internal.py || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2019-07-07 Thread Michał Górny
commit: fe5b5780214b61047aee4e7704920cbe60e6721e
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jul  7 13:28:24 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul  7 13:30:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe5b5780

dev-python/pgspecial: Enable py3.7

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/pgspecial-1.11.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-1.11.5.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.5.ebuild
index 4cd33f7650e..6318ec7b529 100644
--- a/dev-python/pgspecial/pgspecial-1.11.5.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.11.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
 inherit distutils-r1
 
 DESCRIPTION="Python implementation of postgres meta commands"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/

2019-07-07 Thread Michał Górny
commit: d3e1ccd13c9e964f1393446b4e0dc0a68ef433e6
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jul  7 13:28:12 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul  7 13:30:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e1ccd1

dev-python/pgspecial: Add tests, fix deps

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pgspecial/pgspecial-1.11.5.ebuild | 15 ++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/dev-python/pgspecial/pgspecial-1.11.5.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.5.ebuild
index edaec9de059..4cd33f7650e 100644
--- a/dev-python/pgspecial/pgspecial-1.11.5.ebuild
+++ b/dev-python/pgspecial/pgspecial-1.11.5.ebuild
@@ -13,9 +13,22 @@ 
SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="BSD MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="
>=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
>=dev-python/python-sqlparse-0.1.19[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
 "
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+python_test() {
+   # tests/test_special.py require local postgres instance
+   pytest -vv tests/test_internal.py || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/, dev-db/pgcli/

2019-04-09 Thread Patrice Clement
commit: 825384b761a664272eab3e467f7f6bc17ea0841b
Author: Gabriel Linder  gmail  com>
AuthorDate: Fri Mar 15 20:31:52 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Apr  9 12:52:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=825384b7

dev-db/pgcli: new package.

Pgcli is an enhanced command line interface for Postgres, with
auto-completion and syntax highlighting.

Signed-off-by: Gabriel Linder  gmail.com>
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Closes: https://github.com/gentoo/gentoo/pull/11378
Signed-off-by: Patrice Clement  gentoo.org>

 dev-db/pgcli/Manifest|  1 +
 dev-db/pgcli/metadata.xml| 15 +
 dev-db/pgcli/pgcli-2.0.2.ebuild  | 33 
 dev-python/pgspecial/Manifest|  1 +
 dev-python/pgspecial/metadata.xml| 15 +
 dev-python/pgspecial/pgspecial-1.11.5.ebuild | 21 ++
 6 files changed, 86 insertions(+)

diff --git a/dev-db/pgcli/Manifest b/dev-db/pgcli/Manifest
new file mode 100644
index 000..2e35d371fc6
--- /dev/null
+++ b/dev-db/pgcli/Manifest
@@ -0,0 +1 @@
+DIST pgcli-2.0.2.tar.gz 432325 BLAKE2B 
5cbe2be05910d9bfa64e7ac908d636a39ed11f994e0e81cd06afce97510e02be335837b2587653df716beee0d30076f07489ac8e4fb05fbc579bceee8636a470
 SHA512 
5681effcb36101ce408f7c4dcc881984686d63a6e593bd4f5c2bb3b2d870362c787094895ece027a3ba27d3a4524498b27082da0f25b1b77f23e54b2df6c0501

diff --git a/dev-db/pgcli/metadata.xml b/dev-db/pgcli/metadata.xml
new file mode 100644
index 000..6f3a86a539c
--- /dev/null
+++ b/dev-db/pgcli/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+linder.gabr...@gmail.com
+Gabriel Linder
+  
+  
+proxy-ma...@gentoo.org
+Proxy Maintainers
+  
+  
+dbcli/pgcli
+  
+

diff --git a/dev-db/pgcli/pgcli-2.0.2.ebuild b/dev-db/pgcli/pgcli-2.0.2.ebuild
new file mode 100644
index 000..e8b5fdac566
--- /dev/null
+++ b/dev-db/pgcli/pgcli-2.0.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+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/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   =dev-python/cli_helpers-1.0.1[${PYTHON_USEDEP}]
+   >=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
+   >=dev-python/humanize-0.5.1[${PYTHON_USEDEP}]
+   >=dev-python/keyring-12.2.0[${PYTHON_USEDEP}]
+   >=dev-python/pgspecial-1.11.5[${PYTHON_USEDEP}]
+   >=dev-python/prompt_toolkit-2.0.6[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
+   >=dev-python/pygments-2.0[${PYTHON_USEDEP}]
+   >=dev-python/python-sqlparse-0.2.2[${PYTHON_USEDEP}]
+   >=dev-python/setproctitle-1.1.9[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
new file mode 100644
index 000..db2a65c0260
--- /dev/null
+++ b/dev-python/pgspecial/Manifest
@@ -0,0 +1 @@
+DIST pgspecial-1.11.5.tar.gz 43649 BLAKE2B 
f9b8956cfcd81bba946e0323d584668c82e6fc18a0aa08012c3236636d0ad801f10f786b71707daadafc1274d5733adecf9233871b13bded8fe8e8f41fad0fc9
 SHA512 
984a09a10a705d91d9b97142eb2502b44b2a79d95cc1ed8596dd2f7f31515028f4c34cc54383d762a73fdefd6e59418f677b020181740b82cebb5d8e77bbc234

diff --git a/dev-python/pgspecial/metadata.xml 
b/dev-python/pgspecial/metadata.xml
new file mode 100644
index 000..97b02e36777
--- /dev/null
+++ b/dev-python/pgspecial/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+linder.gabr...@gmail.com
+Gabriel Linder
+  
+  
+proxy-ma...@gentoo.org
+Proxy Maintainers
+  
+  
+dbcli/pgspecial
+  
+

diff --git a/dev-python/pgspecial/pgspecial-1.11.5.ebuild 
b/dev-python/pgspecial/pgspecial-1.11.5.ebuild
new file mode 100644
index 000..e147eeaeb5b
--- /dev/null
+++ b/dev-python/pgspecial/pgspecial-1.11.5.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of postgres meta commands"
+HOMEPAGE="https://github.com/dbcli/pgspecial;
+SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/click-4.1[${PYTHON_USEDEP}]
+   >=dev-python/python-sqlparse-0.1.19[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"