[gentoo-commits] repo/gentoo:master commit in: dev-python/alembic/files/, dev-python/alembic/

2024-04-01 Thread Michał Górny
commit: bc1c06b215faefb5e78238d70fd9d72312a42640
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Apr  1 14:42:14 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Apr  1 14:44:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc1c06b2

dev-python/alembic: Backport pytest-8 fix

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

 dev-python/alembic/alembic-1.13.1.ebuild   |  5 ++
 .../alembic/files/alembic-1.13.1-pytest-8.patch| 68 ++
 2 files changed, 73 insertions(+)

diff --git a/dev-python/alembic/alembic-1.13.1.ebuild 
b/dev-python/alembic/alembic-1.13.1.ebuild
index d30bacd5aaea..e8a5a9d46409 100644
--- a/dev-python/alembic/alembic-1.13.1.ebuild
+++ b/dev-python/alembic/alembic-1.13.1.ebuild
@@ -34,6 +34,11 @@ BDEPEND="
 EPYTEST_XDIST=1
 distutils_enable_tests pytest
 
+PATCHES=(
+   # 
https://github.com/sqlalchemy/alembic/commit/6bdb9043868d4bd04ebe3fe8a4991735d5f87ed3
+   "${FILESDIR}/${P}-pytest-8.patch"
+)
+
 python_test() {
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
# setup.cfg contains -p no:warnings in addopts which triggers

diff --git a/dev-python/alembic/files/alembic-1.13.1-pytest-8.patch 
b/dev-python/alembic/files/alembic-1.13.1-pytest-8.patch
new file mode 100644
index ..a681645e02ec
--- /dev/null
+++ b/dev-python/alembic/files/alembic-1.13.1-pytest-8.patch
@@ -0,0 +1,68 @@
+From 6bdb9043868d4bd04ebe3fe8a4991735d5f87ed3 Mon Sep 17 00:00:00 2001
+From: Mike Bayer 
+Date: Sun, 3 Mar 2024 23:11:50 -0500
+Subject: [PATCH] use SQLAlchemy's xdist methods
+
+Fixes to support pytest 8.1 for the test suite.
+
+the use of teardown() was based on pytest's nose
+compat, which is removed.  their xdist style tests use the name
+"setup_method()" and "teardown_method()" now.
+
+We have SQLAlchemy's pytestplugin in use which uses pytest fixtures
+to invoke our own xdist style setUp and tearDown methods, which we
+are already using here, so use those for this one test.
+
+Fixes: #1435
+Change-Id: I4c49e81fca6bfa957594714009531fe12691ace5
+---
+ docs/build/unreleased/1435.rst |  5 +
+ tests/test_command.py  | 15 +++
+ tox.ini|  2 +-
+ 3 files changed, 13 insertions(+), 9 deletions(-)
+ create mode 100644 docs/build/unreleased/1435.rst
+
+diff --git a/tests/test_command.py b/tests/test_command.py
+index c665f95..04a624a 100644
+--- a/tests/test_command.py
 b/tests/test_command.py
+@@ -64,7 +64,7 @@ class HistoryTest(_BufMixin, TestBase):
+ def teardown_class(cls):
+ clear_staging_env()
+ 
+-def teardown(self):
++def tearDown(self):
+ self.cfg.set_main_option("revision_environment", "false")
+ 
+ @classmethod
+@@ -206,13 +206,12 @@ finally:
+ 
+ 
+ class RevisionEnvironmentTest(_BufMixin, TestBase):
+-@classmethod
+-def setup(cls):
+-cls.env = staging_env()
+-cls.cfg = _sqlite_testing_config()
+-cls._setup_env_file()
++def setUp(self):
++self.env = staging_env()
++self.cfg = _sqlite_testing_config()
++self._setup_env_file()
+ 
+-def teardown(self):
++def tearDown(self):
+ self.cfg.set_main_option("revision_environment", "false")
+ clear_staging_env()
+ 
+@@ -1144,7 +1143,7 @@ class CommandLineTest(TestBase):
+ cls.cfg = _sqlite_testing_config()
+ cls.a, cls.b, cls.c = three_rev_fixture(cls.cfg)
+ 
+-def teardown(self):
++def tearDown(self):
+ os.environ.pop("ALEMBIC_CONFIG", None)
+ 
+ @classmethod
+-- 
+2.44.0
+



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

2024-01-27 Thread Michał Górny
commit: e96d05ae1bb5ae78ebcf0258d8b31c8b426c731a
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan 27 12:04:05 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan 27 12:10:36 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e96d05ae

dev-python/alembic: Add a test dep on sys-libs/timezone-data

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

 dev-python/alembic/alembic-1.13.1.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/dev-python/alembic/alembic-1.13.1.ebuild 
b/dev-python/alembic/alembic-1.13.1.ebuild
index 4ad4d6d36240..d30bacd5aaea 100644
--- a/dev-python/alembic/alembic-1.13.1.ebuild
+++ b/dev-python/alembic/alembic-1.13.1.ebuild
@@ -25,6 +25,11 @@ RDEPEND="
>=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
>=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
 "
+BDEPEND="
+   test? (
+   sys-libs/timezone-data
+   )
+"
 
 EPYTEST_XDIST=1
 distutils_enable_tests pytest



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

2024-01-06 Thread Michał Górny
commit: 54bb9a201a1580e8dbdba4fa329cf54a86c293ca
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan  6 10:29:37 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan  6 10:29:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54bb9a20

dev-python/alembic: Remove old

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

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

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 26a56827a911..6134cdfa83d2 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1 @@
-DIST alembic-1.13.0.tar.gz 1208438 BLAKE2B 
e5e3040eecd74e6095062dac51138f91b79197af6410a451f7a7ac699f8d31d12ab4e381f8b1e9ce04fd8c897339d5074493e4ef95f294276ea5d67403504229
 SHA512 
c9a014fc3a09fa69e7a56cb591000443317d0cc3576fd6bd70cab7cec29906fa48d57e40dcf12d7dd93762de0d6f395fb37c9d5c1780664555757f387262
 DIST alembic-1.13.1.tar.gz 1213288 BLAKE2B 
12c01f60a564c3021b3d2ae61f220822a0ca644af5097b72a826f48d04225c441f580204680674410e6e2570b5c7ee24053024863162d7d43bc423a86cddcea6
 SHA512 
2a5826461bec22c2efc244dd8394d34d39ed6e3511a32e8e460057ab34f9e559d28dda4ea7e34ccd30628e889a3cb37cb156596e37dba748c12a0195d78aa678

diff --git a/dev-python/alembic/alembic-1.13.0.ebuild 
b/dev-python/alembic/alembic-1.13.0.ebuild
deleted file mode 100644
index 856f3fe8ba25..
--- a/dev-python/alembic/alembic-1.13.0.ebuild
+++ /dev/null
@@ -1,42 +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=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
-"
-
-EPYTEST_XDIST=1
-distutils_enable_tests pytest
-
-python_test() {
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   # setup.cfg contains -p no:warnings in addopts which triggers
-   # datetime.utcfromtimestamp() deprecation warning as an error in py3.12
-   epytest -o addopts=
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}



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

2024-01-06 Thread Michał Górny
commit: f1fe02554227058c266ba97c771b0f987a7388e1
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan  6 10:29:12 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan  6 10:29:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1fe0255

dev-python/alembic: Stabilize 1.13.1 ALLARCHES, #921462

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

 dev-python/alembic/alembic-1.13.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/alembic/alembic-1.13.1.ebuild 
b/dev-python/alembic/alembic-1.13.1.ebuild
index 5d610b87ddda..4ad4d6d36240 100644
--- a/dev-python/alembic/alembic-1.13.1.ebuild
+++ b/dev-python/alembic/alembic-1.13.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2023-12-20 Thread Michał Górny
commit: ae8b1161c4cf795df7f7c73a43bdb08a70cf22b7
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 21 04:24:11 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 21 04:24:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae8b1161

dev-python/alembic: Bump to 1.13.1

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

 dev-python/alembic/Manifest  |  1 +
 dev-python/alembic/alembic-1.13.1.ebuild | 42 
 2 files changed, 43 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 64e242aa53d0..26a56827a911 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.13.0.tar.gz 1208438 BLAKE2B 
e5e3040eecd74e6095062dac51138f91b79197af6410a451f7a7ac699f8d31d12ab4e381f8b1e9ce04fd8c897339d5074493e4ef95f294276ea5d67403504229
 SHA512 
c9a014fc3a09fa69e7a56cb591000443317d0cc3576fd6bd70cab7cec29906fa48d57e40dcf12d7dd93762de0d6f395fb37c9d5c1780664555757f387262
+DIST alembic-1.13.1.tar.gz 1213288 BLAKE2B 
12c01f60a564c3021b3d2ae61f220822a0ca644af5097b72a826f48d04225c441f580204680674410e6e2570b5c7ee24053024863162d7d43bc423a86cddcea6
 SHA512 
2a5826461bec22c2efc244dd8394d34d39ed6e3511a32e8e460057ab34f9e559d28dda4ea7e34ccd30628e889a3cb37cb156596e37dba748c12a0195d78aa678

diff --git a/dev-python/alembic/alembic-1.13.1.ebuild 
b/dev-python/alembic/alembic-1.13.1.ebuild
new file mode 100644
index ..5d610b87ddda
--- /dev/null
+++ b/dev-python/alembic/alembic-1.13.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
+"
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   # setup.cfg contains -p no:warnings in addopts which triggers
+   # datetime.utcfromtimestamp() deprecation warning as an error in py3.12
+   epytest -o addopts=
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-12-20 Thread Michał Górny
commit: f9f12a2fa8e7fb1508f8133e386a6fd15a0e3fb1
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Dec 20 15:59:51 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Dec 20 15:59:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9f12a2f

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest  |  1 -
 dev-python/alembic/alembic-1.12.1.ebuild | 41 
 2 files changed, 42 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index c106247e9568..64e242aa53d0 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1 @@
-DIST alembic-1.12.1.tar.gz 1200204 BLAKE2B 
640435e09ee7d33c7fa375b6fa784e2ef4097b50074753341717bc21fa8bd838ca00ced6c5cc9e3d82eca494270ffe84bc4b74dc96ed01cb9aded77f21e33520
 SHA512 
c76bae8f22dcbb4b2d235a17059a756c33bf40d4ea62b937373a29dab7c4f6e36eef0030a721222663c191eba565530299d28726f06e0c40d74daec1d3e03b33
 DIST alembic-1.13.0.tar.gz 1208438 BLAKE2B 
e5e3040eecd74e6095062dac51138f91b79197af6410a451f7a7ac699f8d31d12ab4e381f8b1e9ce04fd8c897339d5074493e4ef95f294276ea5d67403504229
 SHA512 
c9a014fc3a09fa69e7a56cb591000443317d0cc3576fd6bd70cab7cec29906fa48d57e40dcf12d7dd93762de0d6f395fb37c9d5c1780664555757f387262

diff --git a/dev-python/alembic/alembic-1.12.1.ebuild 
b/dev-python/alembic/alembic-1.12.1.ebuild
deleted file mode 100644
index 1f596377813f..
--- a/dev-python/alembic/alembic-1.12.1.ebuild
+++ /dev/null
@@ -1,41 +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=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-   # setup.cfg contains -p no:warnings in addopts which triggers
-   # datetime.utcfromtimestamp() deprecation warning as an error in py3.12
-   epytest -o addopts=
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}



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

2023-12-20 Thread Michał Górny
commit: 9cd1b510dbb53a0868f2e8a859c13c6aa5e6d903
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Dec 20 15:56:39 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Dec 20 15:56:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cd1b510

dev-python/alembic: Stabilize 1.13.0 ALLARCHES, #920388

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

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

diff --git a/dev-python/alembic/alembic-1.13.0.ebuild 
b/dev-python/alembic/alembic-1.13.0.ebuild
index 5d610b87ddda..856f3fe8ba25 100644
--- a/dev-python/alembic/alembic-1.13.0.ebuild
+++ b/dev-python/alembic/alembic-1.13.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2023-12-01 Thread Michał Górny
commit: c762f90e2c2f61d1dcfea70d5a0f606e3c648278
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Dec  2 06:57:05 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Dec  2 07:04:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c762f90e

dev-python/alembic: Bump to 1.13.0

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

 dev-python/alembic/Manifest  |  1 +
 dev-python/alembic/alembic-1.13.0.ebuild | 42 
 2 files changed, 43 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index a668b93572e1..c106247e9568 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.12.1.tar.gz 1200204 BLAKE2B 
640435e09ee7d33c7fa375b6fa784e2ef4097b50074753341717bc21fa8bd838ca00ced6c5cc9e3d82eca494270ffe84bc4b74dc96ed01cb9aded77f21e33520
 SHA512 
c76bae8f22dcbb4b2d235a17059a756c33bf40d4ea62b937373a29dab7c4f6e36eef0030a721222663c191eba565530299d28726f06e0c40d74daec1d3e03b33
+DIST alembic-1.13.0.tar.gz 1208438 BLAKE2B 
e5e3040eecd74e6095062dac51138f91b79197af6410a451f7a7ac699f8d31d12ab4e381f8b1e9ce04fd8c897339d5074493e4ef95f294276ea5d67403504229
 SHA512 
c9a014fc3a09fa69e7a56cb591000443317d0cc3576fd6bd70cab7cec29906fa48d57e40dcf12d7dd93762de0d6f395fb37c9d5c1780664555757f387262

diff --git a/dev-python/alembic/alembic-1.13.0.ebuild 
b/dev-python/alembic/alembic-1.13.0.ebuild
new file mode 100644
index ..5d610b87ddda
--- /dev/null
+++ b/dev-python/alembic/alembic-1.13.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
+"
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   # setup.cfg contains -p no:warnings in addopts which triggers
+   # datetime.utcfromtimestamp() deprecation warning as an error in py3.12
+   epytest -o addopts=
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-11-29 Thread Michał Górny
commit: 1b30240fa9604aa9db0042b73eddf854afb04190
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 29 10:26:58 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 29 10:26:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b30240f

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest  |  1 -
 dev-python/alembic/alembic-1.12.0.ebuild | 41 
 2 files changed, 42 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 810dddeff139..a668b93572e1 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1 @@
-DIST alembic-1.12.0.tar.gz 1196597 BLAKE2B 
ff4bc1b94a32ab510b617befb039cb373f266fc891d355a1166a5559d4c053c57a834d9509a05bd5fbcb53a6ac0348038b2314907249ea9139a00c378b293bcb
 SHA512 
170031efe7864835234f55123bff7496337ed1ce666fdaaa8a5040353dc23f98a0e2e6eaf95791f8be052b675015acb7e59b58436a470df9b4ce803c1ac5296b
 DIST alembic-1.12.1.tar.gz 1200204 BLAKE2B 
640435e09ee7d33c7fa375b6fa784e2ef4097b50074753341717bc21fa8bd838ca00ced6c5cc9e3d82eca494270ffe84bc4b74dc96ed01cb9aded77f21e33520
 SHA512 
c76bae8f22dcbb4b2d235a17059a756c33bf40d4ea62b937373a29dab7c4f6e36eef0030a721222663c191eba565530299d28726f06e0c40d74daec1d3e03b33

diff --git a/dev-python/alembic/alembic-1.12.0.ebuild 
b/dev-python/alembic/alembic-1.12.0.ebuild
deleted file mode 100644
index 1f596377813f..
--- a/dev-python/alembic/alembic-1.12.0.ebuild
+++ /dev/null
@@ -1,41 +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=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-   # setup.cfg contains -p no:warnings in addopts which triggers
-   # datetime.utcfromtimestamp() deprecation warning as an error in py3.12
-   epytest -o addopts=
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}



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

2023-11-29 Thread Michał Górny
commit: 9315274563238aae09cdc1a3be76b6fe86deb303
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 29 10:26:06 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 29 10:26:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93152745

dev-python/alembic: Stabilize 1.12.1 ALLARCHES, #918722

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

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

diff --git a/dev-python/alembic/alembic-1.12.1.ebuild 
b/dev-python/alembic/alembic-1.12.1.ebuild
index 0fb0d2348c60..1f596377813f 100644
--- a/dev-python/alembic/alembic-1.12.1.ebuild
+++ b/dev-python/alembic/alembic-1.12.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2023-11-24 Thread Arthur Zamarin
commit: d4f61482b69789568e40db8d10164bf19f79c169
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Nov 24 15:04:45 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Nov 24 15:04:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4f61482

dev-python/alembic: Stabilize 1.12.0 arm64, #918130

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

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

diff --git a/dev-python/alembic/alembic-1.12.0.ebuild 
b/dev-python/alembic/alembic-1.12.0.ebuild
index 5e88fa80c9a4..1f596377813f 100644
--- a/dev-python/alembic/alembic-1.12.0.ebuild
+++ b/dev-python/alembic/alembic-1.12.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2023-10-26 Thread Michał Górny
commit: fbfe41ada4c4d236f26647818a618a7645f0aa9e
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct 27 02:16:55 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 27 02:44:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbfe41ad

dev-python/alembic: Bump to 1.12.1

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

 dev-python/alembic/Manifest  |  1 +
 dev-python/alembic/alembic-1.12.1.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index c265cf2a38d7..810dddeff139 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.12.0.tar.gz 1196597 BLAKE2B 
ff4bc1b94a32ab510b617befb039cb373f266fc891d355a1166a5559d4c053c57a834d9509a05bd5fbcb53a6ac0348038b2314907249ea9139a00c378b293bcb
 SHA512 
170031efe7864835234f55123bff7496337ed1ce666fdaaa8a5040353dc23f98a0e2e6eaf95791f8be052b675015acb7e59b58436a470df9b4ce803c1ac5296b
+DIST alembic-1.12.1.tar.gz 1200204 BLAKE2B 
640435e09ee7d33c7fa375b6fa784e2ef4097b50074753341717bc21fa8bd838ca00ced6c5cc9e3d82eca494270ffe84bc4b74dc96ed01cb9aded77f21e33520
 SHA512 
c76bae8f22dcbb4b2d235a17059a756c33bf40d4ea62b937373a29dab7c4f6e36eef0030a721222663c191eba565530299d28726f06e0c40d74daec1d3e03b33

diff --git a/dev-python/alembic/alembic-1.12.1.ebuild 
b/dev-python/alembic/alembic-1.12.1.ebuild
new file mode 100644
index ..0fb0d2348c60
--- /dev/null
+++ b/dev-python/alembic/alembic-1.12.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   # setup.cfg contains -p no:warnings in addopts which triggers
+   # datetime.utcfromtimestamp() deprecation warning as an error in py3.12
+   epytest -o addopts=
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-10-06 Thread Michał Górny
commit: 441887422471000d81cdd84a1026cd874c7e6010
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct  6 15:02:49 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct  6 15:07:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44188742

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest  |  1 -
 dev-python/alembic/alembic-1.11.3.ebuild | 41 
 2 files changed, 42 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 5035a296dfdc..c265cf2a38d7 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1 @@
-DIST alembic-1.11.3.tar.gz 1192079 BLAKE2B 
40608e1a98aee47128ddebfbb05527cebe8d7799c65da84333bfccb92c0cf314f12646b5be61bd489fe7084197e7918cc992a6edde57baf2afaa741452110135
 SHA512 
66939932ab0e07595a0d97ae1591c73b90d193e9a392489e2e6059e702c7471c12ac6408e6425413a89dccd5f54ba00f1a50cede0fadbbd808caca864c5101fa
 DIST alembic-1.12.0.tar.gz 1196597 BLAKE2B 
ff4bc1b94a32ab510b617befb039cb373f266fc891d355a1166a5559d4c053c57a834d9509a05bd5fbcb53a6ac0348038b2314907249ea9139a00c378b293bcb
 SHA512 
170031efe7864835234f55123bff7496337ed1ce666fdaaa8a5040353dc23f98a0e2e6eaf95791f8be052b675015acb7e59b58436a470df9b4ce803c1ac5296b

diff --git a/dev-python/alembic/alembic-1.11.3.ebuild 
b/dev-python/alembic/alembic-1.11.3.ebuild
deleted file mode 100644
index 5e88fa80c9a4..
--- a/dev-python/alembic/alembic-1.11.3.ebuild
+++ /dev/null
@@ -1,41 +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=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-   # setup.cfg contains -p no:warnings in addopts which triggers
-   # datetime.utcfromtimestamp() deprecation warning as an error in py3.12
-   epytest -o addopts=
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}



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

2023-10-06 Thread Sam James
commit: 71042f53c6df736fb673af99bf3c4b8f50ce475c
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct  6 14:31:00 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct  6 14:31:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71042f53

dev-python/alembic: Stabilize 1.12.0 ALLARCHES, #915261

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

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

diff --git a/dev-python/alembic/alembic-1.12.0.ebuild 
b/dev-python/alembic/alembic-1.12.0.ebuild
index 0fb0d2348c60..5e88fa80c9a4 100644
--- a/dev-python/alembic/alembic-1.12.0.ebuild
+++ b/dev-python/alembic/alembic-1.12.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2023-09-07 Thread Michał Górny
commit: 9dceda65d2503abcd7f983637bcd8546057bf173
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Sep  8 04:51:38 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Sep  8 04:53:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dceda65

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest  |  2 --
 dev-python/alembic/alembic-1.11.1.ebuild | 41 
 dev-python/alembic/alembic-1.11.2.ebuild | 41 
 3 files changed, 84 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 06397f4fab38..5035a296dfdc 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,4 +1,2 @@
-DIST alembic-1.11.1.tar.gz 1176522 BLAKE2B 
5a4185cb59b48301d350db3c44487408ca6c8d88b47ddd22e4c19fad57d0961cb3968652ba15986cf42adb9bb38542a79b11ddd980c9841a071844d26fed56fd
 SHA512 
d068d581df952c2d304534218bd8f948407e288005514501816e60600b186bf03bcc60f485c4c6d5c80caf718210c2bf619f1758327bc592663f160c3bd21e65
-DIST alembic-1.11.2.tar.gz 1192900 BLAKE2B 
47919a02bfabc51caf13b70d7598bd54c63e2f3deea0a6547677433cb4dfab2fea7b199ad5288109c970386a3f318bf29ac2d931d2299dfed63883c3c4dde179
 SHA512 
7a3c2c723134d7d3048596dc7a98993edf737e09cea0b7df5cf5a05fbc37b9c7eb7fa28e4f1ce2adbb9c4683f838227b760feae148fbc617bc9fdd8e52c667c1
 DIST alembic-1.11.3.tar.gz 1192079 BLAKE2B 
40608e1a98aee47128ddebfbb05527cebe8d7799c65da84333bfccb92c0cf314f12646b5be61bd489fe7084197e7918cc992a6edde57baf2afaa741452110135
 SHA512 
66939932ab0e07595a0d97ae1591c73b90d193e9a392489e2e6059e702c7471c12ac6408e6425413a89dccd5f54ba00f1a50cede0fadbbd808caca864c5101fa
 DIST alembic-1.12.0.tar.gz 1196597 BLAKE2B 
ff4bc1b94a32ab510b617befb039cb373f266fc891d355a1166a5559d4c053c57a834d9509a05bd5fbcb53a6ac0348038b2314907249ea9139a00c378b293bcb
 SHA512 
170031efe7864835234f55123bff7496337ed1ce666fdaaa8a5040353dc23f98a0e2e6eaf95791f8be052b675015acb7e59b58436a470df9b4ce803c1ac5296b

diff --git a/dev-python/alembic/alembic-1.11.1.ebuild 
b/dev-python/alembic/alembic-1.11.1.ebuild
deleted file mode 100644
index 5e88fa80c9a4..
--- a/dev-python/alembic/alembic-1.11.1.ebuild
+++ /dev/null
@@ -1,41 +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=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-   # setup.cfg contains -p no:warnings in addopts which triggers
-   # datetime.utcfromtimestamp() deprecation warning as an error in py3.12
-   epytest -o addopts=
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/alembic/alembic-1.11.2.ebuild 
b/dev-python/alembic/alembic-1.11.2.ebuild
deleted file mode 100644
index 0fb0d2348c60..
--- a/dev-python/alembic/alembic-1.11.2.ebuild
+++ /dev/null
@@ -1,41 +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=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-   # setup.cfg contains -p no:warnings in addopts which triggers
-   # datetime.utcfromtimestamp() deprecation warning as an error in py3.12
-   epytest -o addopts=
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}



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

2023-09-07 Thread Sam James
commit: 2807864c4cf930f4d0fc32c72f89a4ec7dc65bdd
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep  7 19:51:05 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  7 19:51:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2807864c

dev-python/alembic: Stabilize 1.11.3 ALLARCHES, #913783

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

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

diff --git a/dev-python/alembic/alembic-1.11.3.ebuild 
b/dev-python/alembic/alembic-1.11.3.ebuild
index 0fb0d2348c60..5e88fa80c9a4 100644
--- a/dev-python/alembic/alembic-1.11.3.ebuild
+++ b/dev-python/alembic/alembic-1.11.3.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2023-08-31 Thread Michał Górny
commit: 6de81d81ec1d27db57a91a16ae37c0a375470ce1
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Sep  1 04:38:08 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Sep  1 05:06:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6de81d81

dev-python/alembic: Bump to 1.12.0

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

 dev-python/alembic/Manifest  |  1 +
 dev-python/alembic/alembic-1.12.0.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 41d8e24f2a32..06397f4fab38 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1,4 @@
 DIST alembic-1.11.1.tar.gz 1176522 BLAKE2B 
5a4185cb59b48301d350db3c44487408ca6c8d88b47ddd22e4c19fad57d0961cb3968652ba15986cf42adb9bb38542a79b11ddd980c9841a071844d26fed56fd
 SHA512 
d068d581df952c2d304534218bd8f948407e288005514501816e60600b186bf03bcc60f485c4c6d5c80caf718210c2bf619f1758327bc592663f160c3bd21e65
 DIST alembic-1.11.2.tar.gz 1192900 BLAKE2B 
47919a02bfabc51caf13b70d7598bd54c63e2f3deea0a6547677433cb4dfab2fea7b199ad5288109c970386a3f318bf29ac2d931d2299dfed63883c3c4dde179
 SHA512 
7a3c2c723134d7d3048596dc7a98993edf737e09cea0b7df5cf5a05fbc37b9c7eb7fa28e4f1ce2adbb9c4683f838227b760feae148fbc617bc9fdd8e52c667c1
 DIST alembic-1.11.3.tar.gz 1192079 BLAKE2B 
40608e1a98aee47128ddebfbb05527cebe8d7799c65da84333bfccb92c0cf314f12646b5be61bd489fe7084197e7918cc992a6edde57baf2afaa741452110135
 SHA512 
66939932ab0e07595a0d97ae1591c73b90d193e9a392489e2e6059e702c7471c12ac6408e6425413a89dccd5f54ba00f1a50cede0fadbbd808caca864c5101fa
+DIST alembic-1.12.0.tar.gz 1196597 BLAKE2B 
ff4bc1b94a32ab510b617befb039cb373f266fc891d355a1166a5559d4c053c57a834d9509a05bd5fbcb53a6ac0348038b2314907249ea9139a00c378b293bcb
 SHA512 
170031efe7864835234f55123bff7496337ed1ce666fdaaa8a5040353dc23f98a0e2e6eaf95791f8be052b675015acb7e59b58436a470df9b4ce803c1ac5296b

diff --git a/dev-python/alembic/alembic-1.12.0.ebuild 
b/dev-python/alembic/alembic-1.12.0.ebuild
new file mode 100644
index ..0fb0d2348c60
--- /dev/null
+++ b/dev-python/alembic/alembic-1.12.0.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   # setup.cfg contains -p no:warnings in addopts which triggers
+   # datetime.utcfromtimestamp() deprecation warning as an error in py3.12
+   epytest -o addopts=
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-08-17 Thread Michał Górny
commit: 3f5781af292cdab1978b6a2302e57cb13392a59e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 17 07:56:29 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 17 08:36:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f5781af

dev-python/alembic: Bump to 1.11.3

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

 dev-python/alembic/Manifest  |  1 +
 dev-python/alembic/alembic-1.11.3.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 14f432b04706..41d8e24f2a32 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.11.1.tar.gz 1176522 BLAKE2B 
5a4185cb59b48301d350db3c44487408ca6c8d88b47ddd22e4c19fad57d0961cb3968652ba15986cf42adb9bb38542a79b11ddd980c9841a071844d26fed56fd
 SHA512 
d068d581df952c2d304534218bd8f948407e288005514501816e60600b186bf03bcc60f485c4c6d5c80caf718210c2bf619f1758327bc592663f160c3bd21e65
 DIST alembic-1.11.2.tar.gz 1192900 BLAKE2B 
47919a02bfabc51caf13b70d7598bd54c63e2f3deea0a6547677433cb4dfab2fea7b199ad5288109c970386a3f318bf29ac2d931d2299dfed63883c3c4dde179
 SHA512 
7a3c2c723134d7d3048596dc7a98993edf737e09cea0b7df5cf5a05fbc37b9c7eb7fa28e4f1ce2adbb9c4683f838227b760feae148fbc617bc9fdd8e52c667c1
+DIST alembic-1.11.3.tar.gz 1192079 BLAKE2B 
40608e1a98aee47128ddebfbb05527cebe8d7799c65da84333bfccb92c0cf314f12646b5be61bd489fe7084197e7918cc992a6edde57baf2afaa741452110135
 SHA512 
66939932ab0e07595a0d97ae1591c73b90d193e9a392489e2e6059e702c7471c12ac6408e6425413a89dccd5f54ba00f1a50cede0fadbbd808caca864c5101fa

diff --git a/dev-python/alembic/alembic-1.11.3.ebuild 
b/dev-python/alembic/alembic-1.11.3.ebuild
new file mode 100644
index ..0fb0d2348c60
--- /dev/null
+++ b/dev-python/alembic/alembic-1.11.3.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   # setup.cfg contains -p no:warnings in addopts which triggers
+   # datetime.utcfromtimestamp() deprecation warning as an error in py3.12
+   epytest -o addopts=
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-08-04 Thread Michał Górny
commit: eb366d25f6f9aed0906770c0c6913eaab5321b92
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Aug  5 05:14:41 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Aug  5 05:30:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb366d25

dev-python/alembic: Bump to 1.11.2

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

 dev-python/alembic/Manifest  |  1 +
 dev-python/alembic/alembic-1.11.2.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index fcba7f15e7e0..14f432b04706 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.11.1.tar.gz 1176522 BLAKE2B 
5a4185cb59b48301d350db3c44487408ca6c8d88b47ddd22e4c19fad57d0961cb3968652ba15986cf42adb9bb38542a79b11ddd980c9841a071844d26fed56fd
 SHA512 
d068d581df952c2d304534218bd8f948407e288005514501816e60600b186bf03bcc60f485c4c6d5c80caf718210c2bf619f1758327bc592663f160c3bd21e65
+DIST alembic-1.11.2.tar.gz 1192900 BLAKE2B 
47919a02bfabc51caf13b70d7598bd54c63e2f3deea0a6547677433cb4dfab2fea7b199ad5288109c970386a3f318bf29ac2d931d2299dfed63883c3c4dde179
 SHA512 
7a3c2c723134d7d3048596dc7a98993edf737e09cea0b7df5cf5a05fbc37b9c7eb7fa28e4f1ce2adbb9c4683f838227b760feae148fbc617bc9fdd8e52c667c1

diff --git a/dev-python/alembic/alembic-1.11.2.ebuild 
b/dev-python/alembic/alembic-1.11.2.ebuild
new file mode 100644
index ..0fb0d2348c60
--- /dev/null
+++ b/dev-python/alembic/alembic-1.11.2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   # setup.cfg contains -p no:warnings in addopts which triggers
+   # datetime.utcfromtimestamp() deprecation warning as an error in py3.12
+   epytest -o addopts=
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-06-18 Thread Michał Górny
commit: 9709637be4443e403aea837cfadc1b976f4bc0b1
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 18 17:14:13 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 18 17:14:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9709637b

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest  |  2 --
 dev-python/alembic/alembic-1.10.4.ebuild | 35 
 dev-python/alembic/alembic-1.11.0.ebuild | 35 
 3 files changed, 72 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index a69a02ed3fb1..fcba7f15e7e0 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1 @@
-DIST alembic-1.10.4.tar.gz 1152769 BLAKE2B 
f940dec295f362cdb63bdb0326c5438734189518188e9de01d2aa164b3d51ac6d00ca960bae9fc539ac19b2c82982e907fa705efd02d30cd08d5a9f8d0ab2ae3
 SHA512 
bf49aff7d04fbbc966df351451dacd921c3b292313c1077d6b02a2679aeeef086313cd11ede8880c056950f8359bd9ab6e3f5219ae859e48d0298aeb8ea9e398
-DIST alembic-1.11.0.tar.gz 1172377 BLAKE2B 
ec29af312516a6d2cf9168994efbfa89e2bc3d11294573138f5e145c51587f1ab5dd07f9da95ae7d8885de2618159b5566dbfbdec9c64495cc086d0d157c9105
 SHA512 
d3d38887835a632e3129e8fde1449f91c60ffba575b7e0c568303ac4e1fd6ddeecf8c93540b65fd827ce2c08e377820278ed8ce1a80df69968145fc16267e266
 DIST alembic-1.11.1.tar.gz 1176522 BLAKE2B 
5a4185cb59b48301d350db3c44487408ca6c8d88b47ddd22e4c19fad57d0961cb3968652ba15986cf42adb9bb38542a79b11ddd980c9841a071844d26fed56fd
 SHA512 
d068d581df952c2d304534218bd8f948407e288005514501816e60600b186bf03bcc60f485c4c6d5c80caf718210c2bf619f1758327bc592663f160c3bd21e65

diff --git a/dev-python/alembic/alembic-1.10.4.ebuild 
b/dev-python/alembic/alembic-1.10.4.ebuild
deleted file mode 100644
index 12254ece8bc6..
--- a/dev-python/alembic/alembic-1.10.4.ebuild
+++ /dev/null
@@ -1,35 +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=( pypy3 python3_{9..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/alembic/alembic-1.11.0.ebuild 
b/dev-python/alembic/alembic-1.11.0.ebuild
deleted file mode 100644
index 8abd48cc9bb7..
--- a/dev-python/alembic/alembic-1.11.0.ebuild
+++ /dev/null
@@ -1,35 +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=( pypy3 python3_{10..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}



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

2023-06-18 Thread Sam James
commit: 5f64709ee35ee5f49f9e529dc2aff072f3938ba1
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 18 15:13:13 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 18 15:13:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f64709e

dev-python/alembic: Stabilize 1.11.1 ALLARCHES, #908767

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

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

diff --git a/dev-python/alembic/alembic-1.11.1.ebuild 
b/dev-python/alembic/alembic-1.11.1.ebuild
index 0fb0d2348c60..5e88fa80c9a4 100644
--- a/dev-python/alembic/alembic-1.11.1.ebuild
+++ b/dev-python/alembic/alembic-1.11.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2023-06-07 Thread Sam James
commit: 347973cbe734396089c895e940cb8044dd1ca40f
Author: Petr Vaněk  atlas  cz>
AuthorDate: Wed Jun  7 08:48:25 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun  7 09:26:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=347973cb

dev-python/alembic: enable py3.12

Signed-off-by: Petr Vaněk  atlas.cz>
Signed-off-by: Sam James  gentoo.org>

 dev-python/alembic/alembic-1.11.1.ebuild | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-python/alembic/alembic-1.11.1.ebuild 
b/dev-python/alembic/alembic-1.11.1.ebuild
index 8abd48cc9bb7..0fb0d2348c60 100644
--- a/dev-python/alembic/alembic-1.11.1.ebuild
+++ b/dev-python/alembic/alembic-1.11.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{10..11} )
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
 
 inherit distutils-r1 pypi
 
@@ -29,6 +29,12 @@ RDEPEND="
 
 distutils_enable_tests pytest
 
+python_test() {
+   # setup.cfg contains -p no:warnings in addopts which triggers
+   # datetime.utcfromtimestamp() deprecation warning as an error in py3.12
+   epytest -o addopts=
+}
+
 python_install_all() {
use doc && local HTML_DOCS=( docs/. )
distutils-r1_python_install_all



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

2023-05-17 Thread Michał Górny
commit: 59fdc43bcbc8bee10c1a0ab3ff42bdb5e258c690
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May 18 02:51:55 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May 18 03:14:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59fdc43b

dev-python/alembic: Bump to 1.11.1

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

 dev-python/alembic/Manifest  |  1 +
 dev-python/alembic/alembic-1.11.1.ebuild | 35 
 2 files changed, 36 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index ea406378864d..a69a02ed3fb1 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.10.4.tar.gz 1152769 BLAKE2B 
f940dec295f362cdb63bdb0326c5438734189518188e9de01d2aa164b3d51ac6d00ca960bae9fc539ac19b2c82982e907fa705efd02d30cd08d5a9f8d0ab2ae3
 SHA512 
bf49aff7d04fbbc966df351451dacd921c3b292313c1077d6b02a2679aeeef086313cd11ede8880c056950f8359bd9ab6e3f5219ae859e48d0298aeb8ea9e398
 DIST alembic-1.11.0.tar.gz 1172377 BLAKE2B 
ec29af312516a6d2cf9168994efbfa89e2bc3d11294573138f5e145c51587f1ab5dd07f9da95ae7d8885de2618159b5566dbfbdec9c64495cc086d0d157c9105
 SHA512 
d3d38887835a632e3129e8fde1449f91c60ffba575b7e0c568303ac4e1fd6ddeecf8c93540b65fd827ce2c08e377820278ed8ce1a80df69968145fc16267e266
+DIST alembic-1.11.1.tar.gz 1176522 BLAKE2B 
5a4185cb59b48301d350db3c44487408ca6c8d88b47ddd22e4c19fad57d0961cb3968652ba15986cf42adb9bb38542a79b11ddd980c9841a071844d26fed56fd
 SHA512 
d068d581df952c2d304534218bd8f948407e288005514501816e60600b186bf03bcc60f485c4c6d5c80caf718210c2bf619f1758327bc592663f160c3bd21e65

diff --git a/dev-python/alembic/alembic-1.11.1.ebuild 
b/dev-python/alembic/alembic-1.11.1.ebuild
new file mode 100644
index ..8abd48cc9bb7
--- /dev/null
+++ b/dev-python/alembic/alembic-1.11.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-05-15 Thread Michał Górny
commit: 3ba80ba8015bbc10fd475e9db4155924ec8731fc
Author: Michał Górny  gentoo  org>
AuthorDate: Tue May 16 04:32:42 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue May 16 05:04:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ba80ba8

dev-python/alembic: Bump to 1.11.0

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

 dev-python/alembic/Manifest  |  1 +
 dev-python/alembic/alembic-1.11.0.ebuild | 35 
 2 files changed, 36 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 7c0d5abe..ea406378864d 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.10.4.tar.gz 1152769 BLAKE2B 
f940dec295f362cdb63bdb0326c5438734189518188e9de01d2aa164b3d51ac6d00ca960bae9fc539ac19b2c82982e907fa705efd02d30cd08d5a9f8d0ab2ae3
 SHA512 
bf49aff7d04fbbc966df351451dacd921c3b292313c1077d6b02a2679aeeef086313cd11ede8880c056950f8359bd9ab6e3f5219ae859e48d0298aeb8ea9e398
+DIST alembic-1.11.0.tar.gz 1172377 BLAKE2B 
ec29af312516a6d2cf9168994efbfa89e2bc3d11294573138f5e145c51587f1ab5dd07f9da95ae7d8885de2618159b5566dbfbdec9c64495cc086d0d157c9105
 SHA512 
d3d38887835a632e3129e8fde1449f91c60ffba575b7e0c568303ac4e1fd6ddeecf8c93540b65fd827ce2c08e377820278ed8ce1a80df69968145fc16267e266

diff --git a/dev-python/alembic/alembic-1.11.0.ebuild 
b/dev-python/alembic/alembic-1.11.0.ebuild
new file mode 100644
index ..8abd48cc9bb7
--- /dev/null
+++ b/dev-python/alembic/alembic-1.11.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-05-06 Thread Michał Górny
commit: d10ee15c8a1d6f1f3610d89e8f1096281b8941f7
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May  6 13:56:57 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May  6 13:59:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d10ee15c

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest  |  2 --
 dev-python/alembic/alembic-1.10.2.ebuild | 35 
 dev-python/alembic/alembic-1.10.3.ebuild | 35 
 3 files changed, 72 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 51d3e290de0d..7c0d5abe 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1 @@
-DIST alembic-1.10.2.tar.gz 1148340 BLAKE2B 
e6882982d0c7f10aadce3118e0d7ec84de9ecd123b55351922876fedcd5e1debe8aacac57a4db25a0296c585569d6118b95aa5dc601841f5c4247f21fcfd917f
 SHA512 
a0ebff90521a4358257892b840d3e623d35bc2c32408759b7d5ae25839a5314e58ea40457f79e766d1cfad467ebe8b663e073aebd89141e11aee1992b40ee1e9
-DIST alembic-1.10.3.tar.gz 1151146 BLAKE2B 
3b84ca71431b0a55c91413f4586f85e5e7c8f8d107755fca7694dca431b96c6e6a9abc9b67a8d86c348cb194e18553761bb8d4a3957a6479cfc57cb92de8b490
 SHA512 
5665ae9429a6b828b6357bde170e011ef5a18cb5642c5b5ade123046dfbad307c238c0188b4c35db59217c7921f43b2b92192b84b51ee269a39766957ca0be7f
 DIST alembic-1.10.4.tar.gz 1152769 BLAKE2B 
f940dec295f362cdb63bdb0326c5438734189518188e9de01d2aa164b3d51ac6d00ca960bae9fc539ac19b2c82982e907fa705efd02d30cd08d5a9f8d0ab2ae3
 SHA512 
bf49aff7d04fbbc966df351451dacd921c3b292313c1077d6b02a2679aeeef086313cd11ede8880c056950f8359bd9ab6e3f5219ae859e48d0298aeb8ea9e398

diff --git a/dev-python/alembic/alembic-1.10.2.ebuild 
b/dev-python/alembic/alembic-1.10.2.ebuild
deleted file mode 100644
index 12254ece8bc6..
--- a/dev-python/alembic/alembic-1.10.2.ebuild
+++ /dev/null
@@ -1,35 +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=( pypy3 python3_{9..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/alembic/alembic-1.10.3.ebuild 
b/dev-python/alembic/alembic-1.10.3.ebuild
deleted file mode 100644
index 65822a6ad910..
--- a/dev-python/alembic/alembic-1.10.3.ebuild
+++ /dev/null
@@ -1,35 +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=( pypy3 python3_{9..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}



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

2023-05-06 Thread Sam James
commit: 93109963271f3c2ed05bc6e12dab7e644f44db75
Author: Sam James  gentoo  org>
AuthorDate: Sat May  6 12:00:53 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat May  6 12:00:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93109963

dev-python/alembic: Stabilize 1.10.4 ALLARCHES, #905808

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

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

diff --git a/dev-python/alembic/alembic-1.10.4.ebuild 
b/dev-python/alembic/alembic-1.10.4.ebuild
index 65822a6ad910..12254ece8bc6 100644
--- a/dev-python/alembic/alembic-1.10.4.ebuild
+++ b/dev-python/alembic/alembic-1.10.4.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2023-04-24 Thread Michał Górny
commit: 1b17d3526beb2e0671ff5dc25c2934b1166a0d31
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr 25 01:44:13 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr 25 02:02:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b17d352

dev-python/alembic: Bump to 1.10.4

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

 dev-python/alembic/Manifest  |  1 +
 dev-python/alembic/alembic-1.10.4.ebuild | 35 
 2 files changed, 36 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 66b0a66c7f2b..51d3e290de0d 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.10.2.tar.gz 1148340 BLAKE2B 
e6882982d0c7f10aadce3118e0d7ec84de9ecd123b55351922876fedcd5e1debe8aacac57a4db25a0296c585569d6118b95aa5dc601841f5c4247f21fcfd917f
 SHA512 
a0ebff90521a4358257892b840d3e623d35bc2c32408759b7d5ae25839a5314e58ea40457f79e766d1cfad467ebe8b663e073aebd89141e11aee1992b40ee1e9
 DIST alembic-1.10.3.tar.gz 1151146 BLAKE2B 
3b84ca71431b0a55c91413f4586f85e5e7c8f8d107755fca7694dca431b96c6e6a9abc9b67a8d86c348cb194e18553761bb8d4a3957a6479cfc57cb92de8b490
 SHA512 
5665ae9429a6b828b6357bde170e011ef5a18cb5642c5b5ade123046dfbad307c238c0188b4c35db59217c7921f43b2b92192b84b51ee269a39766957ca0be7f
+DIST alembic-1.10.4.tar.gz 1152769 BLAKE2B 
f940dec295f362cdb63bdb0326c5438734189518188e9de01d2aa164b3d51ac6d00ca960bae9fc539ac19b2c82982e907fa705efd02d30cd08d5a9f8d0ab2ae3
 SHA512 
bf49aff7d04fbbc966df351451dacd921c3b292313c1077d6b02a2679aeeef086313cd11ede8880c056950f8359bd9ab6e3f5219ae859e48d0298aeb8ea9e398

diff --git a/dev-python/alembic/alembic-1.10.4.ebuild 
b/dev-python/alembic/alembic-1.10.4.ebuild
new file mode 100644
index ..65822a6ad910
--- /dev/null
+++ b/dev-python/alembic/alembic-1.10.4.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-04-08 Thread Michał Górny
commit: e17f761377cfa317a4a7cad11ba1a652eae52d8e
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr  8 12:22:01 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr  8 12:22:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e17f7613

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  1 -
 dev-python/alembic/alembic-1.9.4.ebuild | 34 -
 2 files changed, 35 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 687555373680..66b0a66c7f2b 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1,2 @@
 DIST alembic-1.10.2.tar.gz 1148340 BLAKE2B 
e6882982d0c7f10aadce3118e0d7ec84de9ecd123b55351922876fedcd5e1debe8aacac57a4db25a0296c585569d6118b95aa5dc601841f5c4247f21fcfd917f
 SHA512 
a0ebff90521a4358257892b840d3e623d35bc2c32408759b7d5ae25839a5314e58ea40457f79e766d1cfad467ebe8b663e073aebd89141e11aee1992b40ee1e9
 DIST alembic-1.10.3.tar.gz 1151146 BLAKE2B 
3b84ca71431b0a55c91413f4586f85e5e7c8f8d107755fca7694dca431b96c6e6a9abc9b67a8d86c348cb194e18553761bb8d4a3957a6479cfc57cb92de8b490
 SHA512 
5665ae9429a6b828b6357bde170e011ef5a18cb5642c5b5ade123046dfbad307c238c0188b4c35db59217c7921f43b2b92192b84b51ee269a39766957ca0be7f
-DIST alembic-1.9.4.tar.gz 1139210 BLAKE2B 
5b740803b6bf5b715e9572a91d87d5403d64e665647776d28511704fa17ed81825fe6f5cdab2cec77a0806abb02ef2a7acf5f9702ff87639b90e74d9e22a4b1a
 SHA512 
76e6f86e789cecff78f8e86c34d22a70615158833bc24a26f38fe2d0d5ccd098920e0fe4cbebaadd2c9a4a2e63152720945645000d46a2b6b8b6696ce873f899

diff --git a/dev-python/alembic/alembic-1.9.4.ebuild 
b/dev-python/alembic/alembic-1.9.4.ebuild
deleted file mode 100644
index 393bbbe27933..
--- a/dev-python/alembic/alembic-1.9.4.ebuild
+++ /dev/null
@@ -1,34 +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=( pypy3 python3_{9..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}



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

2023-04-08 Thread Arthur Zamarin
commit: b71187e50fe884ca2ff5a27965699ca06014060b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 08:42:10 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 08:42:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b71187e5

dev-python/alembic: Stabilize 1.10.2 ALLARCHES, #903992

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

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

diff --git a/dev-python/alembic/alembic-1.10.2.ebuild 
b/dev-python/alembic/alembic-1.10.2.ebuild
index 65822a6ad910..12254ece8bc6 100644
--- a/dev-python/alembic/alembic-1.10.2.ebuild
+++ b/dev-python/alembic/alembic-1.10.2.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2023-04-05 Thread Michał Górny
commit: 37ad614f5684f56a202e7afebdb4095c25222c16
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr  6 02:25:43 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr  6 03:07:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37ad614f

dev-python/alembic: Bump to 1.10.3

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

 dev-python/alembic/Manifest  |  1 +
 dev-python/alembic/alembic-1.10.3.ebuild | 35 
 2 files changed, 36 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 9d1e1e08843a..687555373680 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.10.2.tar.gz 1148340 BLAKE2B 
e6882982d0c7f10aadce3118e0d7ec84de9ecd123b55351922876fedcd5e1debe8aacac57a4db25a0296c585569d6118b95aa5dc601841f5c4247f21fcfd917f
 SHA512 
a0ebff90521a4358257892b840d3e623d35bc2c32408759b7d5ae25839a5314e58ea40457f79e766d1cfad467ebe8b663e073aebd89141e11aee1992b40ee1e9
+DIST alembic-1.10.3.tar.gz 1151146 BLAKE2B 
3b84ca71431b0a55c91413f4586f85e5e7c8f8d107755fca7694dca431b96c6e6a9abc9b67a8d86c348cb194e18553761bb8d4a3957a6479cfc57cb92de8b490
 SHA512 
5665ae9429a6b828b6357bde170e011ef5a18cb5642c5b5ade123046dfbad307c238c0188b4c35db59217c7921f43b2b92192b84b51ee269a39766957ca0be7f
 DIST alembic-1.9.4.tar.gz 1139210 BLAKE2B 
5b740803b6bf5b715e9572a91d87d5403d64e665647776d28511704fa17ed81825fe6f5cdab2cec77a0806abb02ef2a7acf5f9702ff87639b90e74d9e22a4b1a
 SHA512 
76e6f86e789cecff78f8e86c34d22a70615158833bc24a26f38fe2d0d5ccd098920e0fe4cbebaadd2c9a4a2e63152720945645000d46a2b6b8b6696ce873f899

diff --git a/dev-python/alembic/alembic-1.10.3.ebuild 
b/dev-python/alembic/alembic-1.10.3.ebuild
new file mode 100644
index ..65822a6ad910
--- /dev/null
+++ b/dev-python/alembic/alembic-1.10.3.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-03-17 Thread Michał Górny
commit: b105429ccdde81a0b7064d5beca8fc546684562a
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar 17 17:15:45 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 17 17:18:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b105429c

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest|  4 
 dev-python/alembic/alembic-1.10.0.ebuild   | 35 --
 dev-python/alembic/alembic-1.10.1.ebuild   | 35 --
 dev-python/alembic/alembic-1.9.2-r1.ebuild | 35 --
 dev-python/alembic/alembic-1.9.3-r1.ebuild | 34 -
 5 files changed, 143 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index dde6f28c7ef2..9d1e1e08843a 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,6 +1,2 @@
-DIST alembic-1.10.0.tar.gz 1146577 BLAKE2B 
9063a62a10e3c8a2fc5c7b78d285d6526dd0a4b97775db7881e28667752ac9154a4867b7213ca9dde7df51c97317104cb66a8e42dde22d8678ac2da7b4e8994a
 SHA512 
39deb7182660a4afbcfac4b32c1607ff7d97fe599fa99dc74c6dea41c26e298d3fa0618dbd7c3c8984264d54f6f2b00a0e9bde66dc1aa76a2a64eccc81e85a03
-DIST alembic-1.10.1.tar.gz 1147979 BLAKE2B 
5fbcde2f86ad034e0d15825d02d8d1eddbea638953830f16ca9a4f54cb9ea7d1d2332651308c3437ad9bd5040e02749d940ae1d9da2fa3c6c2b8c50a13a4b8f1
 SHA512 
7b26752e8ac6236bf69d379b5852251c9508886a99e36730200dfe085b7d1af7157ef0b66c46c82ec97f22c10e5dbafa9ec135ead0656604401b4fa646ad2359
 DIST alembic-1.10.2.tar.gz 1148340 BLAKE2B 
e6882982d0c7f10aadce3118e0d7ec84de9ecd123b55351922876fedcd5e1debe8aacac57a4db25a0296c585569d6118b95aa5dc601841f5c4247f21fcfd917f
 SHA512 
a0ebff90521a4358257892b840d3e623d35bc2c32408759b7d5ae25839a5314e58ea40457f79e766d1cfad467ebe8b663e073aebd89141e11aee1992b40ee1e9
-DIST alembic-1.9.2.tar.gz 1136929 BLAKE2B 
26c4ad3185bc274aa4321a0860dc357566625abb51c951f2d0151bfd109f0e0bf7a37075d07ad2f0975127bdd327579f2d9a700f3cc130fbdd1c6458127b2e50
 SHA512 
d878d48d140be68facdaf0ec25f8582c9e10a369b23e9ee035ae63f8f2ad52d50464c5b8e9c666307edd1a797b6a2c495e56fa890f7dc8f46b3d75a726905ded
-DIST alembic-1.9.3.tar.gz 1137492 BLAKE2B 
17dbc5513b7e15daa51f623bfa90febf356caad8d13e215c6007fd0330e569ea4ffddd374c1ab9b7954e38a136c27d2e5d0ff5db026a6c2ad04d242b3cfdbe7f
 SHA512 
dcbde51c26a81f88b102979aa000c17d0af065e96c51484c94c138fc08099e229deb06f5934d499058f25ef87eb5a5de765225fb890a76eb030d1ad6649e57a4
 DIST alembic-1.9.4.tar.gz 1139210 BLAKE2B 
5b740803b6bf5b715e9572a91d87d5403d64e665647776d28511704fa17ed81825fe6f5cdab2cec77a0806abb02ef2a7acf5f9702ff87639b90e74d9e22a4b1a
 SHA512 
76e6f86e789cecff78f8e86c34d22a70615158833bc24a26f38fe2d0d5ccd098920e0fe4cbebaadd2c9a4a2e63152720945645000d46a2b6b8b6696ce873f899

diff --git a/dev-python/alembic/alembic-1.10.0.ebuild 
b/dev-python/alembic/alembic-1.10.0.ebuild
deleted file mode 100644
index 65822a6ad910..
--- a/dev-python/alembic/alembic-1.10.0.ebuild
+++ /dev/null
@@ -1,35 +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=( pypy3 python3_{9..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/alembic/alembic-1.10.1.ebuild 
b/dev-python/alembic/alembic-1.10.1.ebuild
deleted file mode 100644
index 65822a6ad910..
--- a/dev-python/alembic/alembic-1.10.1.ebuild
+++ /dev/null
@@ -1,35 +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=( pypy3 python3_{9..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
-"
-

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

2023-03-17 Thread Sam James
commit: 1dc797af7b6bb415defdb483dbc43ad07de0023d
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 17 16:03:08 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 17 16:03:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dc797af

dev-python/alembic: Stabilize 1.9.4 ALLARCHES, #901849

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

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

diff --git a/dev-python/alembic/alembic-1.9.4.ebuild 
b/dev-python/alembic/alembic-1.9.4.ebuild
index c7ecdc042007..393bbbe27933 100644
--- a/dev-python/alembic/alembic-1.9.4.ebuild
+++ b/dev-python/alembic/alembic-1.9.4.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2023-03-08 Thread Michał Górny
commit: 2587aba4b1f56c4820d89b0511ca3a53be1393fd
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar  9 05:20:51 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar  9 05:58:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2587aba4

dev-python/alembic: Bump to 1.10.2

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

 dev-python/alembic/Manifest  |  1 +
 dev-python/alembic/alembic-1.10.2.ebuild | 35 
 2 files changed, 36 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 5e91551a440c..dde6f28c7ef2 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,5 +1,6 @@
 DIST alembic-1.10.0.tar.gz 1146577 BLAKE2B 
9063a62a10e3c8a2fc5c7b78d285d6526dd0a4b97775db7881e28667752ac9154a4867b7213ca9dde7df51c97317104cb66a8e42dde22d8678ac2da7b4e8994a
 SHA512 
39deb7182660a4afbcfac4b32c1607ff7d97fe599fa99dc74c6dea41c26e298d3fa0618dbd7c3c8984264d54f6f2b00a0e9bde66dc1aa76a2a64eccc81e85a03
 DIST alembic-1.10.1.tar.gz 1147979 BLAKE2B 
5fbcde2f86ad034e0d15825d02d8d1eddbea638953830f16ca9a4f54cb9ea7d1d2332651308c3437ad9bd5040e02749d940ae1d9da2fa3c6c2b8c50a13a4b8f1
 SHA512 
7b26752e8ac6236bf69d379b5852251c9508886a99e36730200dfe085b7d1af7157ef0b66c46c82ec97f22c10e5dbafa9ec135ead0656604401b4fa646ad2359
+DIST alembic-1.10.2.tar.gz 1148340 BLAKE2B 
e6882982d0c7f10aadce3118e0d7ec84de9ecd123b55351922876fedcd5e1debe8aacac57a4db25a0296c585569d6118b95aa5dc601841f5c4247f21fcfd917f
 SHA512 
a0ebff90521a4358257892b840d3e623d35bc2c32408759b7d5ae25839a5314e58ea40457f79e766d1cfad467ebe8b663e073aebd89141e11aee1992b40ee1e9
 DIST alembic-1.9.2.tar.gz 1136929 BLAKE2B 
26c4ad3185bc274aa4321a0860dc357566625abb51c951f2d0151bfd109f0e0bf7a37075d07ad2f0975127bdd327579f2d9a700f3cc130fbdd1c6458127b2e50
 SHA512 
d878d48d140be68facdaf0ec25f8582c9e10a369b23e9ee035ae63f8f2ad52d50464c5b8e9c666307edd1a797b6a2c495e56fa890f7dc8f46b3d75a726905ded
 DIST alembic-1.9.3.tar.gz 1137492 BLAKE2B 
17dbc5513b7e15daa51f623bfa90febf356caad8d13e215c6007fd0330e569ea4ffddd374c1ab9b7954e38a136c27d2e5d0ff5db026a6c2ad04d242b3cfdbe7f
 SHA512 
dcbde51c26a81f88b102979aa000c17d0af065e96c51484c94c138fc08099e229deb06f5934d499058f25ef87eb5a5de765225fb890a76eb030d1ad6649e57a4
 DIST alembic-1.9.4.tar.gz 1139210 BLAKE2B 
5b740803b6bf5b715e9572a91d87d5403d64e665647776d28511704fa17ed81825fe6f5cdab2cec77a0806abb02ef2a7acf5f9702ff87639b90e74d9e22a4b1a
 SHA512 
76e6f86e789cecff78f8e86c34d22a70615158833bc24a26f38fe2d0d5ccd098920e0fe4cbebaadd2c9a4a2e63152720945645000d46a2b6b8b6696ce873f899

diff --git a/dev-python/alembic/alembic-1.10.2.ebuild 
b/dev-python/alembic/alembic-1.10.2.ebuild
new file mode 100644
index ..65822a6ad910
--- /dev/null
+++ b/dev-python/alembic/alembic-1.10.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-03-06 Thread Michał Górny
commit: 172182e031f4b27511385d114861761340ca40dd
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar  7 05:26:07 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar  7 07:06:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=172182e0

dev-python/alembic: Bump to 1.10.1

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

 dev-python/alembic/Manifest  |  1 +
 dev-python/alembic/alembic-1.10.1.ebuild | 35 
 2 files changed, 36 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 51964ef919f1..5e91551a440c 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,4 +1,5 @@
 DIST alembic-1.10.0.tar.gz 1146577 BLAKE2B 
9063a62a10e3c8a2fc5c7b78d285d6526dd0a4b97775db7881e28667752ac9154a4867b7213ca9dde7df51c97317104cb66a8e42dde22d8678ac2da7b4e8994a
 SHA512 
39deb7182660a4afbcfac4b32c1607ff7d97fe599fa99dc74c6dea41c26e298d3fa0618dbd7c3c8984264d54f6f2b00a0e9bde66dc1aa76a2a64eccc81e85a03
+DIST alembic-1.10.1.tar.gz 1147979 BLAKE2B 
5fbcde2f86ad034e0d15825d02d8d1eddbea638953830f16ca9a4f54cb9ea7d1d2332651308c3437ad9bd5040e02749d940ae1d9da2fa3c6c2b8c50a13a4b8f1
 SHA512 
7b26752e8ac6236bf69d379b5852251c9508886a99e36730200dfe085b7d1af7157ef0b66c46c82ec97f22c10e5dbafa9ec135ead0656604401b4fa646ad2359
 DIST alembic-1.9.2.tar.gz 1136929 BLAKE2B 
26c4ad3185bc274aa4321a0860dc357566625abb51c951f2d0151bfd109f0e0bf7a37075d07ad2f0975127bdd327579f2d9a700f3cc130fbdd1c6458127b2e50
 SHA512 
d878d48d140be68facdaf0ec25f8582c9e10a369b23e9ee035ae63f8f2ad52d50464c5b8e9c666307edd1a797b6a2c495e56fa890f7dc8f46b3d75a726905ded
 DIST alembic-1.9.3.tar.gz 1137492 BLAKE2B 
17dbc5513b7e15daa51f623bfa90febf356caad8d13e215c6007fd0330e569ea4ffddd374c1ab9b7954e38a136c27d2e5d0ff5db026a6c2ad04d242b3cfdbe7f
 SHA512 
dcbde51c26a81f88b102979aa000c17d0af065e96c51484c94c138fc08099e229deb06f5934d499058f25ef87eb5a5de765225fb890a76eb030d1ad6649e57a4
 DIST alembic-1.9.4.tar.gz 1139210 BLAKE2B 
5b740803b6bf5b715e9572a91d87d5403d64e665647776d28511704fa17ed81825fe6f5cdab2cec77a0806abb02ef2a7acf5f9702ff87639b90e74d9e22a4b1a
 SHA512 
76e6f86e789cecff78f8e86c34d22a70615158833bc24a26f38fe2d0d5ccd098920e0fe4cbebaadd2c9a4a2e63152720945645000d46a2b6b8b6696ce873f899

diff --git a/dev-python/alembic/alembic-1.10.1.ebuild 
b/dev-python/alembic/alembic-1.10.1.ebuild
new file mode 100644
index ..65822a6ad910
--- /dev/null
+++ b/dev-python/alembic/alembic-1.10.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-03-06 Thread Michał Górny
commit: 3695ccb1787d0e2c8ffd590faa2fb3757617065b
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar  6 13:23:49 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar  6 14:04:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3695ccb1

dev-python/alembic: Bump to 1.10.0

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

 dev-python/alembic/Manifest  |  1 +
 dev-python/alembic/alembic-1.10.0.ebuild | 35 
 2 files changed, 36 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 4a4a4be50199..51964ef919f1 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1,4 @@
+DIST alembic-1.10.0.tar.gz 1146577 BLAKE2B 
9063a62a10e3c8a2fc5c7b78d285d6526dd0a4b97775db7881e28667752ac9154a4867b7213ca9dde7df51c97317104cb66a8e42dde22d8678ac2da7b4e8994a
 SHA512 
39deb7182660a4afbcfac4b32c1607ff7d97fe599fa99dc74c6dea41c26e298d3fa0618dbd7c3c8984264d54f6f2b00a0e9bde66dc1aa76a2a64eccc81e85a03
 DIST alembic-1.9.2.tar.gz 1136929 BLAKE2B 
26c4ad3185bc274aa4321a0860dc357566625abb51c951f2d0151bfd109f0e0bf7a37075d07ad2f0975127bdd327579f2d9a700f3cc130fbdd1c6458127b2e50
 SHA512 
d878d48d140be68facdaf0ec25f8582c9e10a369b23e9ee035ae63f8f2ad52d50464c5b8e9c666307edd1a797b6a2c495e56fa890f7dc8f46b3d75a726905ded
 DIST alembic-1.9.3.tar.gz 1137492 BLAKE2B 
17dbc5513b7e15daa51f623bfa90febf356caad8d13e215c6007fd0330e569ea4ffddd374c1ab9b7954e38a136c27d2e5d0ff5db026a6c2ad04d242b3cfdbe7f
 SHA512 
dcbde51c26a81f88b102979aa000c17d0af065e96c51484c94c138fc08099e229deb06f5934d499058f25ef87eb5a5de765225fb890a76eb030d1ad6649e57a4
 DIST alembic-1.9.4.tar.gz 1139210 BLAKE2B 
5b740803b6bf5b715e9572a91d87d5403d64e665647776d28511704fa17ed81825fe6f5cdab2cec77a0806abb02ef2a7acf5f9702ff87639b90e74d9e22a4b1a
 SHA512 
76e6f86e789cecff78f8e86c34d22a70615158833bc24a26f38fe2d0d5ccd098920e0fe4cbebaadd2c9a4a2e63152720945645000d46a2b6b8b6696ce873f899

diff --git a/dev-python/alembic/alembic-1.10.0.ebuild 
b/dev-python/alembic/alembic-1.10.0.ebuild
new file mode 100644
index ..65822a6ad910
--- /dev/null
+++ b/dev-python/alembic/alembic-1.10.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-02-16 Thread Michał Górny
commit: 7a72f0e25bc3eaa10b657e35a0d1ccb5d666044e
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:56:13 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 07:38:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a72f0e2

dev-python/alembic: Bump to 1.9.4

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.9.4.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index b5eae2faee2b..4a4a4be50199 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.9.2.tar.gz 1136929 BLAKE2B 
26c4ad3185bc274aa4321a0860dc357566625abb51c951f2d0151bfd109f0e0bf7a37075d07ad2f0975127bdd327579f2d9a700f3cc130fbdd1c6458127b2e50
 SHA512 
d878d48d140be68facdaf0ec25f8582c9e10a369b23e9ee035ae63f8f2ad52d50464c5b8e9c666307edd1a797b6a2c495e56fa890f7dc8f46b3d75a726905ded
 DIST alembic-1.9.3.tar.gz 1137492 BLAKE2B 
17dbc5513b7e15daa51f623bfa90febf356caad8d13e215c6007fd0330e569ea4ffddd374c1ab9b7954e38a136c27d2e5d0ff5db026a6c2ad04d242b3cfdbe7f
 SHA512 
dcbde51c26a81f88b102979aa000c17d0af065e96c51484c94c138fc08099e229deb06f5934d499058f25ef87eb5a5de765225fb890a76eb030d1ad6649e57a4
+DIST alembic-1.9.4.tar.gz 1139210 BLAKE2B 
5b740803b6bf5b715e9572a91d87d5403d64e665647776d28511704fa17ed81825fe6f5cdab2cec77a0806abb02ef2a7acf5f9702ff87639b90e74d9e22a4b1a
 SHA512 
76e6f86e789cecff78f8e86c34d22a70615158833bc24a26f38fe2d0d5ccd098920e0fe4cbebaadd2c9a4a2e63152720945645000d46a2b6b8b6696ce873f899

diff --git a/dev-python/alembic/alembic-1.9.4.ebuild 
b/dev-python/alembic/alembic-1.9.4.ebuild
new file mode 100644
index ..c7ecdc042007
--- /dev/null
+++ b/dev-python/alembic/alembic-1.9.4.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-02-16 Thread Michał Górny
commit: a84bda9286ce6bf205b5d4f7f7c7d5c6af640e55
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb 16 14:14:38 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb 16 14:14:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a84bda92

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest|  1 -
 dev-python/alembic/alembic-1.8.1-r1.ebuild | 35 --
 2 files changed, 36 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 6f52f6fb737d..b5eae2faee2b 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1,2 @@
-DIST alembic-1.8.1.tar.gz 1255927 BLAKE2B 
dbf40f9ca12171d99ad46bec6bf1841799226887a55a815db5c7a69cbcb7d861ede774aa35e1018e1a57bec26a8ddf7ee311e0b4396ebddd5477c67a4ad11876
 SHA512 
51f210447172d08eb94c41a962ddecc593a665790aa6f5badb771dccc882e0d653dcf153ebb04b9824dabcaeb1ac08e3747c2e3c74d8584a24b35662778de8dd
 DIST alembic-1.9.2.tar.gz 1136929 BLAKE2B 
26c4ad3185bc274aa4321a0860dc357566625abb51c951f2d0151bfd109f0e0bf7a37075d07ad2f0975127bdd327579f2d9a700f3cc130fbdd1c6458127b2e50
 SHA512 
d878d48d140be68facdaf0ec25f8582c9e10a369b23e9ee035ae63f8f2ad52d50464c5b8e9c666307edd1a797b6a2c495e56fa890f7dc8f46b3d75a726905ded
 DIST alembic-1.9.3.tar.gz 1137492 BLAKE2B 
17dbc5513b7e15daa51f623bfa90febf356caad8d13e215c6007fd0330e569ea4ffddd374c1ab9b7954e38a136c27d2e5d0ff5db026a6c2ad04d242b3cfdbe7f
 SHA512 
dcbde51c26a81f88b102979aa000c17d0af065e96c51484c94c138fc08099e229deb06f5934d499058f25ef87eb5a5de765225fb890a76eb030d1ad6649e57a4

diff --git a/dev-python/alembic/alembic-1.8.1-r1.ebuild 
b/dev-python/alembic/alembic-1.8.1-r1.ebuild
deleted file mode 100644
index fb2a745913fd..
--- a/dev-python/alembic/alembic-1.8.1-r1.ebuild
+++ /dev/null
@@ -1,35 +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=( pypy3 python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}



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

2023-02-16 Thread Sam James
commit: 359c71e16c6b378bdd97734c3fb888e89823677a
Author: Sam James  gentoo  org>
AuthorDate: Thu Feb 16 10:01:00 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Feb 16 10:01:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=359c71e1

dev-python/alembic: Stabilize 1.9.2-r1 ALLARCHES, #894118

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

 dev-python/alembic/alembic-1.9.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/alembic/alembic-1.9.2-r1.ebuild 
b/dev-python/alembic/alembic-1.9.2-r1.ebuild
index 9980718d9e05..fb2a745913fd 100644
--- a/dev-python/alembic/alembic-1.9.2-r1.ebuild
+++ b/dev-python/alembic/alembic-1.9.2-r1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2023-02-14 Thread Michał Górny
commit: 48506ac74e638b77b41937cb6edb19bac965a259
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Feb 14 19:56:40 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Feb 14 21:05:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48506ac7

dev-python/alembic: Remove stale dep on importlib_resources

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

 dev-python/alembic/{alembic-1.8.1.ebuild => alembic-1.8.1-r1.ebuild} | 4 
 dev-python/alembic/{alembic-1.9.2.ebuild => alembic-1.9.2-r1.ebuild} | 4 
 dev-python/alembic/{alembic-1.9.3.ebuild => alembic-1.9.3-r1.ebuild} | 4 
 3 files changed, 12 deletions(-)

diff --git a/dev-python/alembic/alembic-1.8.1.ebuild 
b/dev-python/alembic/alembic-1.8.1-r1.ebuild
similarity index 84%
rename from dev-python/alembic/alembic-1.8.1.ebuild
rename to dev-python/alembic/alembic-1.8.1-r1.ebuild
index 52d87f1c49ba..fb2a745913fd 100644
--- a/dev-python/alembic/alembic-1.8.1.ebuild
+++ b/dev-python/alembic/alembic-1.8.1-r1.ebuild
@@ -25,10 +25,6 @@ RDEPEND="
dev-python/mako[${PYTHON_USEDEP}]
>=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   dev-python/importlib_resources[${PYTHON_USEDEP}]
-   ' pypy3 python3_8)
 "
 
 distutils_enable_tests pytest

diff --git a/dev-python/alembic/alembic-1.9.2.ebuild 
b/dev-python/alembic/alembic-1.9.2-r1.ebuild
similarity index 84%
rename from dev-python/alembic/alembic-1.9.2.ebuild
rename to dev-python/alembic/alembic-1.9.2-r1.ebuild
index fd33bb44b171..9980718d9e05 100644
--- a/dev-python/alembic/alembic-1.9.2.ebuild
+++ b/dev-python/alembic/alembic-1.9.2-r1.ebuild
@@ -25,10 +25,6 @@ RDEPEND="
dev-python/mako[${PYTHON_USEDEP}]
>=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   dev-python/importlib_resources[${PYTHON_USEDEP}]
-   ' pypy3 python3_8)
 "
 
 distutils_enable_tests pytest

diff --git a/dev-python/alembic/alembic-1.9.3.ebuild 
b/dev-python/alembic/alembic-1.9.3-r1.ebuild
similarity index 84%
rename from dev-python/alembic/alembic-1.9.3.ebuild
rename to dev-python/alembic/alembic-1.9.3-r1.ebuild
index 73c9337ef797..c7ecdc042007 100644
--- a/dev-python/alembic/alembic-1.9.3.ebuild
+++ b/dev-python/alembic/alembic-1.9.3-r1.ebuild
@@ -24,10 +24,6 @@ RDEPEND="
dev-python/mako[${PYTHON_USEDEP}]
>=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   dev-python/importlib_resources[${PYTHON_USEDEP}]
-   ' pypy3 python3_8)
 "
 
 distutils_enable_tests pytest



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

2023-02-14 Thread Michał Górny
commit: 5b682171ea47a9f86232874ec68ac8412cd8536d
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Feb 14 19:54:07 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Feb 14 21:05:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b682171

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  2 --
 dev-python/alembic/alembic-1.9.0.ebuild | 39 -
 dev-python/alembic/alembic-1.9.1.ebuild | 39 -
 3 files changed, 80 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 2606774c8d7f..6f52f6fb737d 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,5 +1,3 @@
 DIST alembic-1.8.1.tar.gz 1255927 BLAKE2B 
dbf40f9ca12171d99ad46bec6bf1841799226887a55a815db5c7a69cbcb7d861ede774aa35e1018e1a57bec26a8ddf7ee311e0b4396ebddd5477c67a4ad11876
 SHA512 
51f210447172d08eb94c41a962ddecc593a665790aa6f5badb771dccc882e0d653dcf153ebb04b9824dabcaeb1ac08e3747c2e3c74d8584a24b35662778de8dd
-DIST alembic-1.9.0.tar.gz 1278832 BLAKE2B 
59131c5a53d051905c13e466c58ad5c1759e0e0f557bcb78bbe80e2ca8f3f7d791a1d8be017cd9227d6baf8b7416d0c6d89ec9e9e56f7440f6d1455577ed8676
 SHA512 
3c040ee07ce2f40af28a63f129dee886f7d8458b762a28cf2165ac10dd2f2f732b73da2ae2c9687b66e8872b75d85d95933847eb6a1190ad55e550e6bb120a04
-DIST alembic-1.9.1.tar.gz 1280020 BLAKE2B 
2355b265a7cb42091f51e2d291dd2e620134f9f7ef96c101db7161e1a8667b44ddb61b6d01f46a0db4227b44dcc1821c9bd6923f8510c4235e26f3d482e4298a
 SHA512 
143a62bab08c654c5846ff7ba1021dfb96d3a4b0e699d9c4bd692fda250f47b0ee10cb3238b769e8117b09ac495bdd97a6dbd290b29659b5121754be9a161331
 DIST alembic-1.9.2.tar.gz 1136929 BLAKE2B 
26c4ad3185bc274aa4321a0860dc357566625abb51c951f2d0151bfd109f0e0bf7a37075d07ad2f0975127bdd327579f2d9a700f3cc130fbdd1c6458127b2e50
 SHA512 
d878d48d140be68facdaf0ec25f8582c9e10a369b23e9ee035ae63f8f2ad52d50464c5b8e9c666307edd1a797b6a2c495e56fa890f7dc8f46b3d75a726905ded
 DIST alembic-1.9.3.tar.gz 1137492 BLAKE2B 
17dbc5513b7e15daa51f623bfa90febf356caad8d13e215c6007fd0330e569ea4ffddd374c1ab9b7954e38a136c27d2e5d0ff5db026a6c2ad04d242b3cfdbe7f
 SHA512 
dcbde51c26a81f88b102979aa000c17d0af065e96c51484c94c138fc08099e229deb06f5934d499058f25ef87eb5a5de765225fb890a76eb030d1ad6649e57a4

diff --git a/dev-python/alembic/alembic-1.9.0.ebuild 
b/dev-python/alembic/alembic-1.9.0.ebuild
deleted file mode 100644
index fd33bb44b171..
--- a/dev-python/alembic/alembic-1.9.0.ebuild
+++ /dev/null
@@ -1,39 +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=( pypy3 python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   dev-python/importlib_resources[${PYTHON_USEDEP}]
-   ' pypy3 python3_8)
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/alembic/alembic-1.9.1.ebuild 
b/dev-python/alembic/alembic-1.9.1.ebuild
deleted file mode 100644
index fd33bb44b171..
--- a/dev-python/alembic/alembic-1.9.1.ebuild
+++ /dev/null
@@ -1,39 +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=( pypy3 python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="
-   https://github.com/sqlalchemy/alembic/
-   https://pypi.org/project/alembic/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   dev-python/importlib_resources[${PYTHON_USEDEP}]
-   ' pypy3 python3_8)
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all

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

2023-02-07 Thread Michał Górny
commit: 68c410e0971745ea3c38f18865653da790aac684
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb  8 05:21:25 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb  8 06:27:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68c410e0

dev-python/alembic: Bump to 1.9.3

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.9.3.ebuild | 38 +
 2 files changed, 39 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index b25d4a39eac5..2606774c8d7f 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -2,3 +2,4 @@ DIST alembic-1.8.1.tar.gz 1255927 BLAKE2B 
dbf40f9ca12171d99ad46bec6bf18417992268
 DIST alembic-1.9.0.tar.gz 1278832 BLAKE2B 
59131c5a53d051905c13e466c58ad5c1759e0e0f557bcb78bbe80e2ca8f3f7d791a1d8be017cd9227d6baf8b7416d0c6d89ec9e9e56f7440f6d1455577ed8676
 SHA512 
3c040ee07ce2f40af28a63f129dee886f7d8458b762a28cf2165ac10dd2f2f732b73da2ae2c9687b66e8872b75d85d95933847eb6a1190ad55e550e6bb120a04
 DIST alembic-1.9.1.tar.gz 1280020 BLAKE2B 
2355b265a7cb42091f51e2d291dd2e620134f9f7ef96c101db7161e1a8667b44ddb61b6d01f46a0db4227b44dcc1821c9bd6923f8510c4235e26f3d482e4298a
 SHA512 
143a62bab08c654c5846ff7ba1021dfb96d3a4b0e699d9c4bd692fda250f47b0ee10cb3238b769e8117b09ac495bdd97a6dbd290b29659b5121754be9a161331
 DIST alembic-1.9.2.tar.gz 1136929 BLAKE2B 
26c4ad3185bc274aa4321a0860dc357566625abb51c951f2d0151bfd109f0e0bf7a37075d07ad2f0975127bdd327579f2d9a700f3cc130fbdd1c6458127b2e50
 SHA512 
d878d48d140be68facdaf0ec25f8582c9e10a369b23e9ee035ae63f8f2ad52d50464c5b8e9c666307edd1a797b6a2c495e56fa890f7dc8f46b3d75a726905ded
+DIST alembic-1.9.3.tar.gz 1137492 BLAKE2B 
17dbc5513b7e15daa51f623bfa90febf356caad8d13e215c6007fd0330e569ea4ffddd374c1ab9b7954e38a136c27d2e5d0ff5db026a6c2ad04d242b3cfdbe7f
 SHA512 
dcbde51c26a81f88b102979aa000c17d0af065e96c51484c94c138fc08099e229deb06f5934d499058f25ef87eb5a5de765225fb890a76eb030d1ad6649e57a4

diff --git a/dev-python/alembic/alembic-1.9.3.ebuild 
b/dev-python/alembic/alembic-1.9.3.ebuild
new file mode 100644
index ..73c9337ef797
--- /dev/null
+++ b/dev-python/alembic/alembic-1.9.3.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_metadata[${PYTHON_USEDEP}]
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-01-14 Thread Michał Górny
commit: a95b74cf7bd6e61bb2fb59d1908350d10ddf6492
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jan 15 05:59:25 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jan 15 07:02:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a95b74cf

dev-python/alembic: Bump to 1.9.2

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.9.2.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index c8be98e3dc00..b25d4a39eac5 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1,4 @@
 DIST alembic-1.8.1.tar.gz 1255927 BLAKE2B 
dbf40f9ca12171d99ad46bec6bf1841799226887a55a815db5c7a69cbcb7d861ede774aa35e1018e1a57bec26a8ddf7ee311e0b4396ebddd5477c67a4ad11876
 SHA512 
51f210447172d08eb94c41a962ddecc593a665790aa6f5badb771dccc882e0d653dcf153ebb04b9824dabcaeb1ac08e3747c2e3c74d8584a24b35662778de8dd
 DIST alembic-1.9.0.tar.gz 1278832 BLAKE2B 
59131c5a53d051905c13e466c58ad5c1759e0e0f557bcb78bbe80e2ca8f3f7d791a1d8be017cd9227d6baf8b7416d0c6d89ec9e9e56f7440f6d1455577ed8676
 SHA512 
3c040ee07ce2f40af28a63f129dee886f7d8458b762a28cf2165ac10dd2f2f732b73da2ae2c9687b66e8872b75d85d95933847eb6a1190ad55e550e6bb120a04
 DIST alembic-1.9.1.tar.gz 1280020 BLAKE2B 
2355b265a7cb42091f51e2d291dd2e620134f9f7ef96c101db7161e1a8667b44ddb61b6d01f46a0db4227b44dcc1821c9bd6923f8510c4235e26f3d482e4298a
 SHA512 
143a62bab08c654c5846ff7ba1021dfb96d3a4b0e699d9c4bd692fda250f47b0ee10cb3238b769e8117b09ac495bdd97a6dbd290b29659b5121754be9a161331
+DIST alembic-1.9.2.tar.gz 1136929 BLAKE2B 
26c4ad3185bc274aa4321a0860dc357566625abb51c951f2d0151bfd109f0e0bf7a37075d07ad2f0975127bdd327579f2d9a700f3cc130fbdd1c6458127b2e50
 SHA512 
d878d48d140be68facdaf0ec25f8582c9e10a369b23e9ee035ae63f8f2ad52d50464c5b8e9c666307edd1a797b6a2c495e56fa890f7dc8f46b3d75a726905ded

diff --git a/dev-python/alembic/alembic-1.9.2.ebuild 
b/dev-python/alembic/alembic-1.9.2.ebuild
new file mode 100644
index ..fd33bb44b171
--- /dev/null
+++ b/dev-python/alembic/alembic-1.9.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{9..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_metadata[${PYTHON_USEDEP}]
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2022-12-23 Thread Michał Górny
commit: 0df03eddf3da922d961369666560a47c7abe7046
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Dec 24 07:19:28 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Dec 24 07:41:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0df03edd

dev-python/alembic: Bump to 1.9.1

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.9.1.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index d5733e4aeeb1..c8be98e3dc00 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.8.1.tar.gz 1255927 BLAKE2B 
dbf40f9ca12171d99ad46bec6bf1841799226887a55a815db5c7a69cbcb7d861ede774aa35e1018e1a57bec26a8ddf7ee311e0b4396ebddd5477c67a4ad11876
 SHA512 
51f210447172d08eb94c41a962ddecc593a665790aa6f5badb771dccc882e0d653dcf153ebb04b9824dabcaeb1ac08e3747c2e3c74d8584a24b35662778de8dd
 DIST alembic-1.9.0.tar.gz 1278832 BLAKE2B 
59131c5a53d051905c13e466c58ad5c1759e0e0f557bcb78bbe80e2ca8f3f7d791a1d8be017cd9227d6baf8b7416d0c6d89ec9e9e56f7440f6d1455577ed8676
 SHA512 
3c040ee07ce2f40af28a63f129dee886f7d8458b762a28cf2165ac10dd2f2f732b73da2ae2c9687b66e8872b75d85d95933847eb6a1190ad55e550e6bb120a04
+DIST alembic-1.9.1.tar.gz 1280020 BLAKE2B 
2355b265a7cb42091f51e2d291dd2e620134f9f7ef96c101db7161e1a8667b44ddb61b6d01f46a0db4227b44dcc1821c9bd6923f8510c4235e26f3d482e4298a
 SHA512 
143a62bab08c654c5846ff7ba1021dfb96d3a4b0e699d9c4bd692fda250f47b0ee10cb3238b769e8117b09ac495bdd97a6dbd290b29659b5121754be9a161331

diff --git a/dev-python/alembic/alembic-1.9.1.ebuild 
b/dev-python/alembic/alembic-1.9.1.ebuild
new file mode 100644
index ..be24ef80d028
--- /dev/null
+++ b/dev-python/alembic/alembic-1.9.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_metadata[${PYTHON_USEDEP}]
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2022-12-16 Thread Michał Górny
commit: 740cc7d2a6ba28412fcc7fa7a5dd40d6a9f08daf
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Dec 16 10:08:23 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Dec 16 11:31:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=740cc7d2

dev-python/alembic: Bump to 1.9.0

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.9.0.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index e0995d34cb47..d5733e4aeeb1 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.8.1.tar.gz 1255927 BLAKE2B 
dbf40f9ca12171d99ad46bec6bf1841799226887a55a815db5c7a69cbcb7d861ede774aa35e1018e1a57bec26a8ddf7ee311e0b4396ebddd5477c67a4ad11876
 SHA512 
51f210447172d08eb94c41a962ddecc593a665790aa6f5badb771dccc882e0d653dcf153ebb04b9824dabcaeb1ac08e3747c2e3c74d8584a24b35662778de8dd
+DIST alembic-1.9.0.tar.gz 1278832 BLAKE2B 
59131c5a53d051905c13e466c58ad5c1759e0e0f557bcb78bbe80e2ca8f3f7d791a1d8be017cd9227d6baf8b7416d0c6d89ec9e9e56f7440f6d1455577ed8676
 SHA512 
3c040ee07ce2f40af28a63f129dee886f7d8458b762a28cf2165ac10dd2f2f732b73da2ae2c9687b66e8872b75d85d95933847eb6a1190ad55e550e6bb120a04

diff --git a/dev-python/alembic/alembic-1.9.0.ebuild 
b/dev-python/alembic/alembic-1.9.0.ebuild
new file mode 100644
index ..be24ef80d028
--- /dev/null
+++ b/dev-python/alembic/alembic-1.9.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_metadata[${PYTHON_USEDEP}]
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2022-08-15 Thread Michał Górny
commit: 4b99ac4e04208b3eb102a3885aa9b150c756e242
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Aug 15 08:06:09 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Aug 15 08:06:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b99ac4e

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  1 -
 dev-python/alembic/alembic-1.8.0.ebuild | 36 -
 2 files changed, 37 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 8a37f7d89600..e0995d34cb47 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1 @@
-DIST alembic-1.8.0.tar.gz 1252636 BLAKE2B 
dfe6130a08a8bfcdeb10e02187a9f597bb55de8194c91909ab06d72f5df4c7154570a141a82be8568195d8f5f76db661f1dd192b92a5991434ade1a389ed
 SHA512 
601366f21bcadaef1a5b7f7d4a1edfd9c146340f8a5d07b41e3b381e1e00866e79520d8393330e4a80369664b36b549c9d5ab3ea13ad7aa8010b165e73038bcd
 DIST alembic-1.8.1.tar.gz 1255927 BLAKE2B 
dbf40f9ca12171d99ad46bec6bf1841799226887a55a815db5c7a69cbcb7d861ede774aa35e1018e1a57bec26a8ddf7ee311e0b4396ebddd5477c67a4ad11876
 SHA512 
51f210447172d08eb94c41a962ddecc593a665790aa6f5badb771dccc882e0d653dcf153ebb04b9824dabcaeb1ac08e3747c2e3c74d8584a24b35662778de8dd

diff --git a/dev-python/alembic/alembic-1.8.0.ebuild 
b/dev-python/alembic/alembic-1.8.0.ebuild
deleted file mode 100644
index dbad78231a74..
--- a/dev-python/alembic/alembic-1.8.0.ebuild
+++ /dev/null
@@ -1,36 +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=( pypy3 python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   dev-python/importlib_resources[${PYTHON_USEDEP}]
-   ' pypy3 python3_8)
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}



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

2022-08-15 Thread Agostino Sarubbo
commit: 980427ff79ce58106d762c286d38f6cffe94342a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Aug 15 07:38:10 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Aug 15 07:38:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=980427ff

dev-python/alembic: amd64/x86 stable (ALLARCHES policy) wrt bug #865087

Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/alembic/alembic-1.8.1.ebuild 
b/dev-python/alembic/alembic-1.8.1.ebuild
index be24ef80d028..5f64796c198f 100644
--- a/dev-python/alembic/alembic-1.8.1.ebuild
+++ b/dev-python/alembic/alembic-1.8.1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2022-07-14 Thread Michał Górny
commit: b18001e86cac6dc1035ec9311aa9a6b9d6f3a3d1
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 14 06:47:28 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 14 07:31:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b18001e8

dev-python/alembic: Bump to 1.8.1

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.8.1.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 96dd6cefc897..8a37f7d89600 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.8.0.tar.gz 1252636 BLAKE2B 
dfe6130a08a8bfcdeb10e02187a9f597bb55de8194c91909ab06d72f5df4c7154570a141a82be8568195d8f5f76db661f1dd192b92a5991434ade1a389ed
 SHA512 
601366f21bcadaef1a5b7f7d4a1edfd9c146340f8a5d07b41e3b381e1e00866e79520d8393330e4a80369664b36b549c9d5ab3ea13ad7aa8010b165e73038bcd
+DIST alembic-1.8.1.tar.gz 1255927 BLAKE2B 
dbf40f9ca12171d99ad46bec6bf1841799226887a55a815db5c7a69cbcb7d861ede774aa35e1018e1a57bec26a8ddf7ee311e0b4396ebddd5477c67a4ad11876
 SHA512 
51f210447172d08eb94c41a962ddecc593a665790aa6f5badb771dccc882e0d653dcf153ebb04b9824dabcaeb1ac08e3747c2e3c74d8584a24b35662778de8dd

diff --git a/dev-python/alembic/alembic-1.8.1.ebuild 
b/dev-python/alembic/alembic-1.8.1.ebuild
new file mode 100644
index ..be24ef80d028
--- /dev/null
+++ b/dev-python/alembic/alembic-1.8.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_metadata[${PYTHON_USEDEP}]
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2022-07-02 Thread Michał Górny
commit: 0ba990d6215a564464c2ccb2f656184906518d00
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jul  2 17:47:34 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jul  2 17:47:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba990d6

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  1 -
 dev-python/alembic/alembic-1.7.7.ebuild | 36 -
 2 files changed, 37 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index d655fd44f7a9..96dd6cefc897 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1 @@
-DIST alembic-1.7.7.tar.gz 1247590 BLAKE2B 
9906a266b71d658bd66b00b237bc21bb092646077584ddb5c245f73709087f0e476e86eb022bf041e57a68e16ee89e5a3a047dc7ec2d43ffa941b2e803aef0fe
 SHA512 
dcb4ba2faafc3ee789981931e0548f7328c1118938150789218e720f39386fd5e7e2543ab241838bcc1faaf36db07900fd065963496e68ced0896a5f4795d63d
 DIST alembic-1.8.0.tar.gz 1252636 BLAKE2B 
dfe6130a08a8bfcdeb10e02187a9f597bb55de8194c91909ab06d72f5df4c7154570a141a82be8568195d8f5f76db661f1dd192b92a5991434ade1a389ed
 SHA512 
601366f21bcadaef1a5b7f7d4a1edfd9c146340f8a5d07b41e3b381e1e00866e79520d8393330e4a80369664b36b549c9d5ab3ea13ad7aa8010b165e73038bcd

diff --git a/dev-python/alembic/alembic-1.7.7.ebuild 
b/dev-python/alembic/alembic-1.7.7.ebuild
deleted file mode 100644
index dbad78231a74..
--- a/dev-python/alembic/alembic-1.7.7.ebuild
+++ /dev/null
@@ -1,36 +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=( pypy3 python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   dev-python/importlib_resources[${PYTHON_USEDEP}]
-   ' pypy3 python3_8)
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}



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

2022-07-02 Thread Jakov Smolić
commit: 203610c9040bbf5bf8bf7f946c7d558305e53c03
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Jul  2 16:05:14 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sat Jul  2 16:05:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=203610c9

dev-python/alembic: Stabilize 1.8.0 ALLARCHES, #855854

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

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

diff --git a/dev-python/alembic/alembic-1.8.0.ebuild 
b/dev-python/alembic/alembic-1.8.0.ebuild
index 6e1e5735a059..dbad78231a74 100644
--- a/dev-python/alembic/alembic-1.8.0.ebuild
+++ b/dev-python/alembic/alembic-1.8.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2022-06-01 Thread Michał Górny
commit: ad27c9513f03284a4966d43621292b9abec4722c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun  1 06:36:12 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun  1 07:21:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad27c951

dev-python/alembic: Bump to 1.8.0

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.8.0.ebuild | 36 +
 2 files changed, 37 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 1aff1af3d6e1..d655fd44f7a9 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.7.7.tar.gz 1247590 BLAKE2B 
9906a266b71d658bd66b00b237bc21bb092646077584ddb5c245f73709087f0e476e86eb022bf041e57a68e16ee89e5a3a047dc7ec2d43ffa941b2e803aef0fe
 SHA512 
dcb4ba2faafc3ee789981931e0548f7328c1118938150789218e720f39386fd5e7e2543ab241838bcc1faaf36db07900fd065963496e68ced0896a5f4795d63d
+DIST alembic-1.8.0.tar.gz 1252636 BLAKE2B 
dfe6130a08a8bfcdeb10e02187a9f597bb55de8194c91909ab06d72f5df4c7154570a141a82be8568195d8f5f76db661f1dd192b92a5991434ade1a389ed
 SHA512 
601366f21bcadaef1a5b7f7d4a1edfd9c146340f8a5d07b41e3b381e1e00866e79520d8393330e4a80369664b36b549c9d5ab3ea13ad7aa8010b165e73038bcd

diff --git a/dev-python/alembic/alembic-1.8.0.ebuild 
b/dev-python/alembic/alembic-1.8.0.ebuild
new file mode 100644
index ..6e1e5735a059
--- /dev/null
+++ b/dev-python/alembic/alembic-1.8.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_metadata[${PYTHON_USEDEP}]
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2022-04-16 Thread Michał Górny
commit: 0a65d5de8e3ec218c9f1c2d986eb24f90a94b60d
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 16 15:55:36 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 16 15:55:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a65d5de

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  1 -
 dev-python/alembic/alembic-1.7.6.ebuild | 36 -
 2 files changed, 37 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index cde968566651..1aff1af3d6e1 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1 @@
-DIST alembic-1.7.6.tar.gz 1235649 BLAKE2B 
5e12cf09927c7851ad5c95b7047865eec6ca01d3ce94045be3601855370e1cce8371d16ee4141a953a8ea0ffaafaa68c08499416283c7996b086b7b5967c8790
 SHA512 
dca97722ac70654dfa23d673b776d064af13bf1e59219131d7716d7ce183508361bad713d7d0986c8a56dd66c58a59fafc1c3b3ef80507eaf6368e48f9c1a059
 DIST alembic-1.7.7.tar.gz 1247590 BLAKE2B 
9906a266b71d658bd66b00b237bc21bb092646077584ddb5c245f73709087f0e476e86eb022bf041e57a68e16ee89e5a3a047dc7ec2d43ffa941b2e803aef0fe
 SHA512 
dcb4ba2faafc3ee789981931e0548f7328c1118938150789218e720f39386fd5e7e2543ab241838bcc1faaf36db07900fd065963496e68ced0896a5f4795d63d

diff --git a/dev-python/alembic/alembic-1.7.6.ebuild 
b/dev-python/alembic/alembic-1.7.6.ebuild
deleted file mode 100644
index dbad78231a74..
--- a/dev-python/alembic/alembic-1.7.6.ebuild
+++ /dev/null
@@ -1,36 +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=( pypy3 python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   dev-python/importlib_resources[${PYTHON_USEDEP}]
-   ' pypy3 python3_8)
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}



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

2022-04-16 Thread Sam James
commit: f00d13a4c3bbd7f1a5c0b8186f245a39a38aadca
Author: Sam James  gentoo  org>
AuthorDate: Sat Apr 16 07:35:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Apr 16 07:35:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f00d13a4

dev-python/alembic: Stabilize 1.7.7 ALLARCHES, #838652

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

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

diff --git a/dev-python/alembic/alembic-1.7.7.ebuild 
b/dev-python/alembic/alembic-1.7.7.ebuild
index 6e1e5735a059..dbad78231a74 100644
--- a/dev-python/alembic/alembic-1.7.7.ebuild
+++ b/dev-python/alembic/alembic-1.7.7.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2022-03-19 Thread Michał Górny
commit: 9b189ec18a649ffcc81eef75a69e50ba19b84574
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 19 08:51:11 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 19 09:36:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b189ec1

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  1 -
 dev-python/alembic/alembic-1.7.5.ebuild | 35 -
 2 files changed, 36 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 321e2a233865..cde968566651 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1,2 @@
-DIST alembic-1.7.5.tar.gz 1229596 BLAKE2B 
dbedcc43f60b2b28adc17b1c0c753b22993127acd5aab04bbf4a47920e11894498618d353eb544b48c0c5698d7cf6f96fba39a98df723a611810e71e24809b0e
 SHA512 
4223116c3610f3196335c1fb2032a9a236c3e6ec4e4ca5cb85ccc3667d614e77d51d9fee1ee0173a32451198929428c1fcf39afd90b6df32584b076e0a4ab1a4
 DIST alembic-1.7.6.tar.gz 1235649 BLAKE2B 
5e12cf09927c7851ad5c95b7047865eec6ca01d3ce94045be3601855370e1cce8371d16ee4141a953a8ea0ffaafaa68c08499416283c7996b086b7b5967c8790
 SHA512 
dca97722ac70654dfa23d673b776d064af13bf1e59219131d7716d7ce183508361bad713d7d0986c8a56dd66c58a59fafc1c3b3ef80507eaf6368e48f9c1a059
 DIST alembic-1.7.7.tar.gz 1247590 BLAKE2B 
9906a266b71d658bd66b00b237bc21bb092646077584ddb5c245f73709087f0e476e86eb022bf041e57a68e16ee89e5a3a047dc7ec2d43ffa941b2e803aef0fe
 SHA512 
dcb4ba2faafc3ee789981931e0548f7328c1118938150789218e720f39386fd5e7e2543ab241838bcc1faaf36db07900fd065963496e68ced0896a5f4795d63d

diff --git a/dev-python/alembic/alembic-1.7.5.ebuild 
b/dev-python/alembic/alembic-1.7.5.ebuild
deleted file mode 100644
index 618a39cb8b85..
--- a/dev-python/alembic/alembic-1.7.5.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   dev-python/importlib_resources[${PYTHON_USEDEP}]
-   ' pypy3 python3_8)
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}



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

2022-03-19 Thread Agostino Sarubbo
commit: c26714a57d18e8b051371605bb47be621e86bd50
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Mar 19 07:50:15 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Mar 19 07:50:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c26714a5

dev-python/alembic: amd64/x86 stable (ALLARCHES policy) wrt bug #835549

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

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

diff --git a/dev-python/alembic/alembic-1.7.6.ebuild 
b/dev-python/alembic/alembic-1.7.6.ebuild
index 6e1e5735a059..dbad78231a74 100644
--- a/dev-python/alembic/alembic-1.7.6.ebuild
+++ b/dev-python/alembic/alembic-1.7.6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
 IUSE="doc"
 
 RDEPEND="



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

2022-03-14 Thread Michał Górny
commit: 3fd7c0f3509756099db2a15850008027d1d02722
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar 14 22:00:44 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar 14 22:39:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fd7c0f3

dev-python/alembic: Bump to 1.7.7

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.7.7.ebuild | 36 +
 2 files changed, 37 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 996e9c984c52..321e2a233865 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.7.5.tar.gz 1229596 BLAKE2B 
dbedcc43f60b2b28adc17b1c0c753b22993127acd5aab04bbf4a47920e11894498618d353eb544b48c0c5698d7cf6f96fba39a98df723a611810e71e24809b0e
 SHA512 
4223116c3610f3196335c1fb2032a9a236c3e6ec4e4ca5cb85ccc3667d614e77d51d9fee1ee0173a32451198929428c1fcf39afd90b6df32584b076e0a4ab1a4
 DIST alembic-1.7.6.tar.gz 1235649 BLAKE2B 
5e12cf09927c7851ad5c95b7047865eec6ca01d3ce94045be3601855370e1cce8371d16ee4141a953a8ea0ffaafaa68c08499416283c7996b086b7b5967c8790
 SHA512 
dca97722ac70654dfa23d673b776d064af13bf1e59219131d7716d7ce183508361bad713d7d0986c8a56dd66c58a59fafc1c3b3ef80507eaf6368e48f9c1a059
+DIST alembic-1.7.7.tar.gz 1247590 BLAKE2B 
9906a266b71d658bd66b00b237bc21bb092646077584ddb5c245f73709087f0e476e86eb022bf041e57a68e16ee89e5a3a047dc7ec2d43ffa941b2e803aef0fe
 SHA512 
dcb4ba2faafc3ee789981931e0548f7328c1118938150789218e720f39386fd5e7e2543ab241838bcc1faaf36db07900fd065963496e68ced0896a5f4795d63d

diff --git a/dev-python/alembic/alembic-1.7.7.ebuild 
b/dev-python/alembic/alembic-1.7.7.ebuild
new file mode 100644
index ..6e1e5735a059
--- /dev/null
+++ b/dev-python/alembic/alembic-1.7.7.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_metadata[${PYTHON_USEDEP}]
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2022-02-01 Thread Michał Górny
commit: f4ffed9a9f9da337e95db62f812146e23799929e
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Feb  1 21:06:50 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Feb  1 22:03:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4ffed9a

dev-python/alembic: Bump to 1.7.6

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.7.6.ebuild | 36 +
 2 files changed, 37 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index c51742404f3f..996e9c984c52 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.7.5.tar.gz 1229596 BLAKE2B 
dbedcc43f60b2b28adc17b1c0c753b22993127acd5aab04bbf4a47920e11894498618d353eb544b48c0c5698d7cf6f96fba39a98df723a611810e71e24809b0e
 SHA512 
4223116c3610f3196335c1fb2032a9a236c3e6ec4e4ca5cb85ccc3667d614e77d51d9fee1ee0173a32451198929428c1fcf39afd90b6df32584b076e0a4ab1a4
+DIST alembic-1.7.6.tar.gz 1235649 BLAKE2B 
5e12cf09927c7851ad5c95b7047865eec6ca01d3ce94045be3601855370e1cce8371d16ee4141a953a8ea0ffaafaa68c08499416283c7996b086b7b5967c8790
 SHA512 
dca97722ac70654dfa23d673b776d064af13bf1e59219131d7716d7ce183508361bad713d7d0986c8a56dd66c58a59fafc1c3b3ef80507eaf6368e48f9c1a059

diff --git a/dev-python/alembic/alembic-1.7.6.ebuild 
b/dev-python/alembic/alembic-1.7.6.ebuild
new file mode 100644
index ..9e34986e5995
--- /dev/null
+++ b/dev-python/alembic/alembic-1.7.6.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_metadata[${PYTHON_USEDEP}]
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2021-12-12 Thread Michał Górny
commit: 823b59f42c4b574cc0b0353b622f81e92efe7e93
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Dec 12 21:29:42 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Dec 12 21:32:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=823b59f4

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  1 -
 dev-python/alembic/alembic-1.7.4.ebuild | 35 -
 2 files changed, 36 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 22583bbafc5e..c51742404f3f 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1 @@
-DIST alembic-1.7.4.tar.gz 1227696 BLAKE2B 
1bd11a9dc870dbf861b5c09262dbb0edcb413d6e8f86e6ddcd60d8aceebeb4bfeea9ef7ac6a389c10bded0e9cf478df313c7913ad5995580b88cdf9499e89f18
 SHA512 
7e3fea729d389c01a4c7756d83d54dacad7ff5b485e80e450da6584f8def14c478e5701bd97290c76894151aada5d4ae2b2cea360c3ff8e48f25a95fa1d19d79
 DIST alembic-1.7.5.tar.gz 1229596 BLAKE2B 
dbedcc43f60b2b28adc17b1c0c753b22993127acd5aab04bbf4a47920e11894498618d353eb544b48c0c5698d7cf6f96fba39a98df723a611810e71e24809b0e
 SHA512 
4223116c3610f3196335c1fb2032a9a236c3e6ec4e4ca5cb85ccc3667d614e77d51d9fee1ee0173a32451198929428c1fcf39afd90b6df32584b076e0a4ab1a4

diff --git a/dev-python/alembic/alembic-1.7.4.ebuild 
b/dev-python/alembic/alembic-1.7.4.ebuild
deleted file mode 100644
index 618a39cb8b85..
--- a/dev-python/alembic/alembic-1.7.4.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   dev-python/importlib_resources[${PYTHON_USEDEP}]
-   ' pypy3 python3_8)
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}



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

2021-12-12 Thread Jakov Smolić
commit: 086eb547e42e202334f9f084f47bf7c62427bccf
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Dec 12 20:01:55 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Dec 12 20:01:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=086eb547

dev-python/alembic: Stabilize 1.7.5 ALLARCHES, #829018

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

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

diff --git a/dev-python/alembic/alembic-1.7.5.ebuild 
b/dev-python/alembic/alembic-1.7.5.ebuild
index 41da578d7e6a..618a39cb8b85 100644
--- a/dev-python/alembic/alembic-1.7.5.ebuild
+++ b/dev-python/alembic/alembic-1.7.5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc"
 
 RDEPEND="



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

2021-11-12 Thread Michał Górny
commit: fb8fbaea16d759102695f10075a83e6df2e8d626
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov 12 08:37:57 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 12 09:40:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb8fbaea

dev-python/alembic: Bump to 1.7.5

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.7.5.ebuild | 35 +
 2 files changed, 36 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index a19fe03c6ad..22583bbafc5 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.7.4.tar.gz 1227696 BLAKE2B 
1bd11a9dc870dbf861b5c09262dbb0edcb413d6e8f86e6ddcd60d8aceebeb4bfeea9ef7ac6a389c10bded0e9cf478df313c7913ad5995580b88cdf9499e89f18
 SHA512 
7e3fea729d389c01a4c7756d83d54dacad7ff5b485e80e450da6584f8def14c478e5701bd97290c76894151aada5d4ae2b2cea360c3ff8e48f25a95fa1d19d79
+DIST alembic-1.7.5.tar.gz 1229596 BLAKE2B 
dbedcc43f60b2b28adc17b1c0c753b22993127acd5aab04bbf4a47920e11894498618d353eb544b48c0c5698d7cf6f96fba39a98df723a611810e71e24809b0e
 SHA512 
4223116c3610f3196335c1fb2032a9a236c3e6ec4e4ca5cb85ccc3667d614e77d51d9fee1ee0173a32451198929428c1fcf39afd90b6df32584b076e0a4ab1a4

diff --git a/dev-python/alembic/alembic-1.7.5.ebuild 
b/dev-python/alembic/alembic-1.7.5.ebuild
new file mode 100644
index 000..41da578d7e6
--- /dev/null
+++ b/dev-python/alembic/alembic-1.7.5.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_metadata[${PYTHON_USEDEP}]
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-10-24 Thread Michał Górny
commit: 3300ecb8a00fab913af679a1f4689ecdeba043e3
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct 24 08:42:02 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct 24 08:43:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3300ecb8

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  2 --
 dev-python/alembic/alembic-1.7.1.ebuild | 37 -
 dev-python/alembic/alembic-1.7.3.ebuild | 37 -
 3 files changed, 76 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 909ad67cabf..a19fe03c6ad 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1 @@
-DIST alembic-1.7.1.tar.gz 1225157 BLAKE2B 
f107c1d787bf9025dc7c092a650449cb911e327fb501f6e4717285f627c455ad43765ca229522a605ac8345f754bbd6808485d77b99576b691ac04185263db51
 SHA512 
222a643363f89077b7d30068e0abeb8d8dc373778dd6e4364b559d8a63428f0fe3617505207f431c30a1bd43745dd95fd679dfb1401222f20068327805c2309c
-DIST alembic-1.7.3.tar.gz 1226799 BLAKE2B 
209ccb03b5745eda2dd54a9a6376ab62dfd5902b497a86cde460c258c87917a534bbe5a028be58444fcbf3acb9c7d84ce5f26798a636089b5d869a238bc2f23b
 SHA512 
cf6d6dd0913d1552ed82ceefc6254af3ef9aea46c08a2d0879a941e7807e5ed41195f5d0b98d108f77a2db5a3c502115af1ce4c9c76618f8c720255dbe58bcad
 DIST alembic-1.7.4.tar.gz 1227696 BLAKE2B 
1bd11a9dc870dbf861b5c09262dbb0edcb413d6e8f86e6ddcd60d8aceebeb4bfeea9ef7ac6a389c10bded0e9cf478df313c7913ad5995580b88cdf9499e89f18
 SHA512 
7e3fea729d389c01a4c7756d83d54dacad7ff5b485e80e450da6584f8def14c478e5701bd97290c76894151aada5d4ae2b2cea360c3ff8e48f25a95fa1d19d79

diff --git a/dev-python/alembic/alembic-1.7.1.ebuild 
b/dev-python/alembic/alembic-1.7.1.ebuild
deleted file mode 100644
index 653f1ccc7b7..000
--- a/dev-python/alembic/alembic-1.7.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   ' pypy3)
-   $(python_gen_cond_dep '
-   dev-python/importlib_resources[${PYTHON_USEDEP}]
-   ' pypy3 python3_8)
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/alembic/alembic-1.7.3.ebuild 
b/dev-python/alembic/alembic-1.7.3.ebuild
deleted file mode 100644
index 08c9b69bc08..000
--- a/dev-python/alembic/alembic-1.7.3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   ' pypy3)
-   $(python_gen_cond_dep '
-   dev-python/importlib_resources[${PYTHON_USEDEP}]
-   ' pypy3 python3_8)
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}



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

2021-10-23 Thread Sam James
commit: e24ec62cf47fdec6fc3479bcda377a45500e8d2b
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 24 00:16:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 24 00:16:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e24ec62c

dev-python/alembic: Stabilize 1.7.4 ALLARCHES, #819798

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

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

diff --git a/dev-python/alembic/alembic-1.7.4.ebuild 
b/dev-python/alembic/alembic-1.7.4.ebuild
index 41da578d7e6..618a39cb8b8 100644
--- a/dev-python/alembic/alembic-1.7.4.ebuild
+++ b/dev-python/alembic/alembic-1.7.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc"
 
 RDEPEND="



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

2021-10-07 Thread Michał Górny
commit: 69574d5c3e9474c057d4f490643810990f2b2392
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct  7 06:34:15 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct  7 07:21:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69574d5c

dev-python/alembic: Bump to 1.7.4

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.7.4.ebuild | 35 +
 2 files changed, 36 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 77c652fc708..909ad67cabf 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.7.1.tar.gz 1225157 BLAKE2B 
f107c1d787bf9025dc7c092a650449cb911e327fb501f6e4717285f627c455ad43765ca229522a605ac8345f754bbd6808485d77b99576b691ac04185263db51
 SHA512 
222a643363f89077b7d30068e0abeb8d8dc373778dd6e4364b559d8a63428f0fe3617505207f431c30a1bd43745dd95fd679dfb1401222f20068327805c2309c
 DIST alembic-1.7.3.tar.gz 1226799 BLAKE2B 
209ccb03b5745eda2dd54a9a6376ab62dfd5902b497a86cde460c258c87917a534bbe5a028be58444fcbf3acb9c7d84ce5f26798a636089b5d869a238bc2f23b
 SHA512 
cf6d6dd0913d1552ed82ceefc6254af3ef9aea46c08a2d0879a941e7807e5ed41195f5d0b98d108f77a2db5a3c502115af1ce4c9c76618f8c720255dbe58bcad
+DIST alembic-1.7.4.tar.gz 1227696 BLAKE2B 
1bd11a9dc870dbf861b5c09262dbb0edcb413d6e8f86e6ddcd60d8aceebeb4bfeea9ef7ac6a389c10bded0e9cf478df313c7913ad5995580b88cdf9499e89f18
 SHA512 
7e3fea729d389c01a4c7756d83d54dacad7ff5b485e80e450da6584f8def14c478e5701bd97290c76894151aada5d4ae2b2cea360c3ff8e48f25a95fa1d19d79

diff --git a/dev-python/alembic/alembic-1.7.4.ebuild 
b/dev-python/alembic/alembic-1.7.4.ebuild
new file mode 100644
index 000..41da578d7e6
--- /dev/null
+++ b/dev-python/alembic/alembic-1.7.4.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_metadata[${PYTHON_USEDEP}]
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-10-04 Thread Michał Górny
commit: 0b3e5757351c992a24dead41750d2d41315bddd5
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct  4 11:11:33 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct  4 11:11:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b3e5757

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  2 --
 dev-python/alembic/alembic-1.6.5.ebuild | 31 ---
 dev-python/alembic/alembic-1.7.0.ebuild | 37 -
 3 files changed, 70 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index fb966d7ac45..77c652fc708 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,4 +1,2 @@
-DIST alembic-1.6.5.tar.gz 1174376 BLAKE2B 
a1bfdf611b30831363bd29a63f2a50d7c31e348ab6f450f709d1e8dbd891441263d8e0067de38c09351c26c26d07178e3079b30b5c976dfa90cd24d5973038d8
 SHA512 
8e5ce4bb41a47fb2c263d3542d7fd2dad04bd76b81a6a565fa93cef80a38a016944924b9eb57895ae71d7f8eef428bf440388444ef750bf281616e514a61c79b
-DIST alembic-1.7.0.tar.gz 1223858 BLAKE2B 
1e0528030b153eddb2d5105d309cb611934939606cc91721e560a3fd74af76bff69ba00b0179a6d580a914634bf75f257aab094ed920298b43bbf98beec10ba6
 SHA512 
a2d2a6c0a6cab17bab4e66a7f8c2eff6481c0ababb836fae14d702301b1a186bf5eee84a95fcfa8501a1efaa262d61293e1dbba13b40270535068bff0449f4b5
 DIST alembic-1.7.1.tar.gz 1225157 BLAKE2B 
f107c1d787bf9025dc7c092a650449cb911e327fb501f6e4717285f627c455ad43765ca229522a605ac8345f754bbd6808485d77b99576b691ac04185263db51
 SHA512 
222a643363f89077b7d30068e0abeb8d8dc373778dd6e4364b559d8a63428f0fe3617505207f431c30a1bd43745dd95fd679dfb1401222f20068327805c2309c
 DIST alembic-1.7.3.tar.gz 1226799 BLAKE2B 
209ccb03b5745eda2dd54a9a6376ab62dfd5902b497a86cde460c258c87917a534bbe5a028be58444fcbf3acb9c7d84ce5f26798a636089b5d869a238bc2f23b
 SHA512 
cf6d6dd0913d1552ed82ceefc6254af3ef9aea46c08a2d0879a941e7807e5ed41195f5d0b98d108f77a2db5a3c502115af1ce4c9c76618f8c720255dbe58bcad

diff --git a/dev-python/alembic/alembic-1.6.5.ebuild 
b/dev-python/alembic/alembic-1.6.5.ebuild
deleted file mode 100644
index 362eedb6a1e..000
--- a/dev-python/alembic/alembic-1.6.5.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/alembic/alembic-1.7.0.ebuild 
b/dev-python/alembic/alembic-1.7.0.ebuild
deleted file mode 100644
index 08c9b69bc08..000
--- a/dev-python/alembic/alembic-1.7.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   ' pypy3)
-   $(python_gen_cond_dep '
-   dev-python/importlib_resources[${PYTHON_USEDEP}]
-   ' pypy3 python3_8)
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}



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

2021-10-04 Thread Agostino Sarubbo
commit: dc606c5abdd17579e5adc62615d3a30cff800db7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Oct  4 10:59:21 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Oct  4 10:59:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc606c5a

dev-python/alembic: amd64/x86 stable (ALLARCHES policy) wrt bug #815922

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

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

diff --git a/dev-python/alembic/alembic-1.7.1.ebuild 
b/dev-python/alembic/alembic-1.7.1.ebuild
index 08c9b69bc08..653f1ccc7b7 100644
--- a/dev-python/alembic/alembic-1.7.1.ebuild
+++ b/dev-python/alembic/alembic-1.7.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc"
 
 RDEPEND="



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

2021-09-17 Thread Michał Górny
commit: 95849a94fef2c936fd7d4b0fc5f66392c3583b90
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Sep 17 22:05:55 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Sep 17 22:05:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95849a94

dev-python/alembic: Bump to 1.7.3

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.7.3.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 06e780569e8..fb966d7ac45 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1,4 @@
 DIST alembic-1.6.5.tar.gz 1174376 BLAKE2B 
a1bfdf611b30831363bd29a63f2a50d7c31e348ab6f450f709d1e8dbd891441263d8e0067de38c09351c26c26d07178e3079b30b5c976dfa90cd24d5973038d8
 SHA512 
8e5ce4bb41a47fb2c263d3542d7fd2dad04bd76b81a6a565fa93cef80a38a016944924b9eb57895ae71d7f8eef428bf440388444ef750bf281616e514a61c79b
 DIST alembic-1.7.0.tar.gz 1223858 BLAKE2B 
1e0528030b153eddb2d5105d309cb611934939606cc91721e560a3fd74af76bff69ba00b0179a6d580a914634bf75f257aab094ed920298b43bbf98beec10ba6
 SHA512 
a2d2a6c0a6cab17bab4e66a7f8c2eff6481c0ababb836fae14d702301b1a186bf5eee84a95fcfa8501a1efaa262d61293e1dbba13b40270535068bff0449f4b5
 DIST alembic-1.7.1.tar.gz 1225157 BLAKE2B 
f107c1d787bf9025dc7c092a650449cb911e327fb501f6e4717285f627c455ad43765ca229522a605ac8345f754bbd6808485d77b99576b691ac04185263db51
 SHA512 
222a643363f89077b7d30068e0abeb8d8dc373778dd6e4364b559d8a63428f0fe3617505207f431c30a1bd43745dd95fd679dfb1401222f20068327805c2309c
+DIST alembic-1.7.3.tar.gz 1226799 BLAKE2B 
209ccb03b5745eda2dd54a9a6376ab62dfd5902b497a86cde460c258c87917a534bbe5a028be58444fcbf3acb9c7d84ce5f26798a636089b5d869a238bc2f23b
 SHA512 
cf6d6dd0913d1552ed82ceefc6254af3ef9aea46c08a2d0879a941e7807e5ed41195f5d0b98d108f77a2db5a3c502115af1ce4c9c76618f8c720255dbe58bcad

diff --git a/dev-python/alembic/alembic-1.7.3.ebuild 
b/dev-python/alembic/alembic-1.7.3.ebuild
new file mode 100644
index 000..08c9b69bc08
--- /dev/null
+++ b/dev-python/alembic/alembic-1.7.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_metadata[${PYTHON_USEDEP}]
+   ' pypy3)
+   $(python_gen_cond_dep '
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-08-31 Thread Michał Górny
commit: 1ea04a51f5f4cc36d1dd13d9b443a3fe102bb8f0
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Aug 31 06:55:07 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug 31 07:56:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ea04a51

dev-python/alembic: Bump to 1.7.1

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.7.1.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 0ad7c5dc59c..06e780569e8 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.6.5.tar.gz 1174376 BLAKE2B 
a1bfdf611b30831363bd29a63f2a50d7c31e348ab6f450f709d1e8dbd891441263d8e0067de38c09351c26c26d07178e3079b30b5c976dfa90cd24d5973038d8
 SHA512 
8e5ce4bb41a47fb2c263d3542d7fd2dad04bd76b81a6a565fa93cef80a38a016944924b9eb57895ae71d7f8eef428bf440388444ef750bf281616e514a61c79b
 DIST alembic-1.7.0.tar.gz 1223858 BLAKE2B 
1e0528030b153eddb2d5105d309cb611934939606cc91721e560a3fd74af76bff69ba00b0179a6d580a914634bf75f257aab094ed920298b43bbf98beec10ba6
 SHA512 
a2d2a6c0a6cab17bab4e66a7f8c2eff6481c0ababb836fae14d702301b1a186bf5eee84a95fcfa8501a1efaa262d61293e1dbba13b40270535068bff0449f4b5
+DIST alembic-1.7.1.tar.gz 1225157 BLAKE2B 
f107c1d787bf9025dc7c092a650449cb911e327fb501f6e4717285f627c455ad43765ca229522a605ac8345f754bbd6808485d77b99576b691ac04185263db51
 SHA512 
222a643363f89077b7d30068e0abeb8d8dc373778dd6e4364b559d8a63428f0fe3617505207f431c30a1bd43745dd95fd679dfb1401222f20068327805c2309c

diff --git a/dev-python/alembic/alembic-1.7.1.ebuild 
b/dev-python/alembic/alembic-1.7.1.ebuild
new file mode 100644
index 000..08c9b69bc08
--- /dev/null
+++ b/dev-python/alembic/alembic-1.7.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_metadata[${PYTHON_USEDEP}]
+   ' pypy3)
+   $(python_gen_cond_dep '
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-08-30 Thread Michał Górny
commit: 83e28356081a84085624871a7bc20d5332bc2e1c
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Aug 30 21:20:31 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Aug 30 21:41:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83e28356

dev-python/alembic: Bump to 1.7.0

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.7.0.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 9e9b79b5962..0ad7c5dc59c 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.6.5.tar.gz 1174376 BLAKE2B 
a1bfdf611b30831363bd29a63f2a50d7c31e348ab6f450f709d1e8dbd891441263d8e0067de38c09351c26c26d07178e3079b30b5c976dfa90cd24d5973038d8
 SHA512 
8e5ce4bb41a47fb2c263d3542d7fd2dad04bd76b81a6a565fa93cef80a38a016944924b9eb57895ae71d7f8eef428bf440388444ef750bf281616e514a61c79b
+DIST alembic-1.7.0.tar.gz 1223858 BLAKE2B 
1e0528030b153eddb2d5105d309cb611934939606cc91721e560a3fd74af76bff69ba00b0179a6d580a914634bf75f257aab094ed920298b43bbf98beec10ba6
 SHA512 
a2d2a6c0a6cab17bab4e66a7f8c2eff6481c0ababb836fae14d702301b1a186bf5eee84a95fcfa8501a1efaa262d61293e1dbba13b40270535068bff0449f4b5

diff --git a/dev-python/alembic/alembic-1.7.0.ebuild 
b/dev-python/alembic/alembic-1.7.0.ebuild
new file mode 100644
index 000..08c9b69bc08
--- /dev/null
+++ b/dev-python/alembic/alembic-1.7.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/importlib_metadata[${PYTHON_USEDEP}]
+   ' pypy3)
+   $(python_gen_cond_dep '
+   dev-python/importlib_resources[${PYTHON_USEDEP}]
+   ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-07-05 Thread Michał Górny
commit: 2e0c62426cfb68b93012ae9b892d1f58492847b0
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jul  5 07:01:23 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jul  5 07:01:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e0c6242

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  1 -
 dev-python/alembic/alembic-1.6.2.ebuild | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index d663054eeb6..9e9b79b5962 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1 @@
-DIST alembic-1.6.2.tar.gz 1167842 BLAKE2B 
0b61282987e974e81b1007d4a66620b1ac2393b175f91011d0d6c450af1038a9ea553f4a7c1906b2e463f7b95617a00629f337547788821b250373f0de18d0b7
 SHA512 
d5b23812d3e65e9642f39e2596ab86773476a77959938f518438d7659c2da5436432fdc020a5fbda33fe866a047d9558f7a4c5eabe032a6d3f2e6d04ff7928e7
 DIST alembic-1.6.5.tar.gz 1174376 BLAKE2B 
a1bfdf611b30831363bd29a63f2a50d7c31e348ab6f450f709d1e8dbd891441263d8e0067de38c09351c26c26d07178e3079b30b5c976dfa90cd24d5973038d8
 SHA512 
8e5ce4bb41a47fb2c263d3542d7fd2dad04bd76b81a6a565fa93cef80a38a016944924b9eb57895ae71d7f8eef428bf440388444ef750bf281616e514a61c79b

diff --git a/dev-python/alembic/alembic-1.6.2.ebuild 
b/dev-python/alembic/alembic-1.6.2.ebuild
deleted file mode 100644
index e34136d4cd9..000
--- a/dev-python/alembic/alembic-1.6.2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}



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

2021-06-05 Thread Michał Górny
commit: f43e5c6838b1baf8e1f0be06225f92be9162e5a1
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun  5 20:54:06 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun  5 20:55:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f43e5c68

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  4 
 dev-python/alembic/alembic-1.5.8.ebuild | 33 -
 dev-python/alembic/alembic-1.6.0.ebuild | 31 ---
 dev-python/alembic/alembic-1.6.3.ebuild | 31 ---
 dev-python/alembic/alembic-1.6.4.ebuild | 31 ---
 5 files changed, 130 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 36363eccbba..d663054eeb6 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,6 +1,2 @@
-DIST alembic-1.5.8.tar.gz 1154284 BLAKE2B 
704a7aeb15fcfae8746238ef7ae4533ecbaaf83ab9248035c35cea343a4d02e02c00dfa3c8186826a437c839053fc6292c3f8343945ca32273ee608f6572f513
 SHA512 
e68f3709ed969764cff4c9f755781a10123631d2d07a970674fda2226c84cb92c140bc5ae81e44c8b279823718d4f0544236d260fd04fb7107f3d8293c85b4f0
-DIST alembic-1.6.0.tar.gz 1166934 BLAKE2B 
1d1473ca55bf2e5f8f6dcdf2fd7cbd5246e11e7a14e5964a5891c60e5ba814eabc2fe8550b87317c3b57268f649b46c6b611ef1b2c81b5a025ca4e8e537660c2
 SHA512 
bfef894f13762420128b01d2671639de6361848387d4661d92bab66d8c5820ebe9ede62d335b4cc5915f60378e20a02a2b2664a7bf815294fb4cfdee7414dd33
 DIST alembic-1.6.2.tar.gz 1167842 BLAKE2B 
0b61282987e974e81b1007d4a66620b1ac2393b175f91011d0d6c450af1038a9ea553f4a7c1906b2e463f7b95617a00629f337547788821b250373f0de18d0b7
 SHA512 
d5b23812d3e65e9642f39e2596ab86773476a77959938f518438d7659c2da5436432fdc020a5fbda33fe866a047d9558f7a4c5eabe032a6d3f2e6d04ff7928e7
-DIST alembic-1.6.3.tar.gz 1172826 BLAKE2B 
e405589352bc06b6a80e532e564b69b7095e57ff150a519654737c9d5ac43827d1ddedeffd12295419eb0fc7555c346cdf0e32fcc21fcc9c301015fc0c9540f5
 SHA512 
4a73e67962d44de719b9873e4b61153607cb2ebcdd15a19172fc4ea641e2909339ca448e83fa8ecb871a270ccd980f16fcf4a880e9742a177649c4dc44cb30cd
-DIST alembic-1.6.4.tar.gz 1173603 BLAKE2B 
24c7a7f5431db4856ea7f7ea7095b1a992e5c41c1d94235098b6c93b6a9dbd6b0261297019b01e1274a466d5b9236d6c0890a08a8720191f77c20973e1b07afa
 SHA512 
019268060d0552da87d0ab4d624d53f2c7460dfd3018c2643b71adf0c7a574eeb92b238d777c786ecc6f9bb94e8e25655f07f64258b17b9cadccb7ba83a091e4
 DIST alembic-1.6.5.tar.gz 1174376 BLAKE2B 
a1bfdf611b30831363bd29a63f2a50d7c31e348ab6f450f709d1e8dbd891441263d8e0067de38c09351c26c26d07178e3079b30b5c976dfa90cd24d5973038d8
 SHA512 
8e5ce4bb41a47fb2c263d3542d7fd2dad04bd76b81a6a565fa93cef80a38a016944924b9eb57895ae71d7f8eef428bf440388444ef750bf281616e514a61c79b

diff --git a/dev-python/alembic/alembic-1.5.8.ebuild 
b/dev-python/alembic/alembic-1.5.8.ebuild
deleted file mode 100644
index b0a59134f8e..000
--- a/dev-python/alembic/alembic-1.5.8.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/alembic/alembic-1.6.0.ebuild 
b/dev-python/alembic/alembic-1.6.0.ebuild
deleted file mode 100644
index 6105a9e2d89..000
--- a/dev-python/alembic/alembic-1.6.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/alembic/alembic-1.6.3.ebuild 

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

2021-06-05 Thread Michał Górny
commit: 9172ef4ea6bfa653eb5425ece5e98978e01645d7
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun  5 12:40:26 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun  5 12:40:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9172ef4e

dev-python/alembic: Enable py3.10

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

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

diff --git a/dev-python/alembic/alembic-1.6.5.ebuild 
b/dev-python/alembic/alembic-1.6.5.ebuild
index 6105a9e2d89..47b70503fe5 100644
--- a/dev-python/alembic/alembic-1.6.5.ebuild
+++ b/dev-python/alembic/alembic-1.6.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
 inherit distutils-r1
 
 DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"



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

2021-05-27 Thread Michał Górny
commit: f468a6744c7d9a2a7ae2732135fd17a135e26219
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May 27 22:42:36 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May 27 22:47:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f468a674

dev-python/alembic: Bump to 1.6.5

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.6.5.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 4e63fa7fda3..36363eccbba 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -3,3 +3,4 @@ DIST alembic-1.6.0.tar.gz 1166934 BLAKE2B 
1d1473ca55bf2e5f8f6dcdf2fd7cbd5246e11e
 DIST alembic-1.6.2.tar.gz 1167842 BLAKE2B 
0b61282987e974e81b1007d4a66620b1ac2393b175f91011d0d6c450af1038a9ea553f4a7c1906b2e463f7b95617a00629f337547788821b250373f0de18d0b7
 SHA512 
d5b23812d3e65e9642f39e2596ab86773476a77959938f518438d7659c2da5436432fdc020a5fbda33fe866a047d9558f7a4c5eabe032a6d3f2e6d04ff7928e7
 DIST alembic-1.6.3.tar.gz 1172826 BLAKE2B 
e405589352bc06b6a80e532e564b69b7095e57ff150a519654737c9d5ac43827d1ddedeffd12295419eb0fc7555c346cdf0e32fcc21fcc9c301015fc0c9540f5
 SHA512 
4a73e67962d44de719b9873e4b61153607cb2ebcdd15a19172fc4ea641e2909339ca448e83fa8ecb871a270ccd980f16fcf4a880e9742a177649c4dc44cb30cd
 DIST alembic-1.6.4.tar.gz 1173603 BLAKE2B 
24c7a7f5431db4856ea7f7ea7095b1a992e5c41c1d94235098b6c93b6a9dbd6b0261297019b01e1274a466d5b9236d6c0890a08a8720191f77c20973e1b07afa
 SHA512 
019268060d0552da87d0ab4d624d53f2c7460dfd3018c2643b71adf0c7a574eeb92b238d777c786ecc6f9bb94e8e25655f07f64258b17b9cadccb7ba83a091e4
+DIST alembic-1.6.5.tar.gz 1174376 BLAKE2B 
a1bfdf611b30831363bd29a63f2a50d7c31e348ab6f450f709d1e8dbd891441263d8e0067de38c09351c26c26d07178e3079b30b5c976dfa90cd24d5973038d8
 SHA512 
8e5ce4bb41a47fb2c263d3542d7fd2dad04bd76b81a6a565fa93cef80a38a016944924b9eb57895ae71d7f8eef428bf440388444ef750bf281616e514a61c79b

diff --git a/dev-python/alembic/alembic-1.6.5.ebuild 
b/dev-python/alembic/alembic-1.6.5.ebuild
new file mode 100644
index 000..6105a9e2d89
--- /dev/null
+++ b/dev-python/alembic/alembic-1.6.5.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-05-24 Thread Michał Górny
commit: b38d34b166db7f3e7cd80fda8e1567d428543fd6
Author: Michał Górny  gentoo  org>
AuthorDate: Tue May 25 04:31:59 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue May 25 04:57:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b38d34b1

dev-python/alembic: Bump to 1.6.4

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.6.4.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index d0a3dcee4fd..4e63fa7fda3 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -2,3 +2,4 @@ DIST alembic-1.5.8.tar.gz 1154284 BLAKE2B 
704a7aeb15fcfae8746238ef7ae4533ecbaaf8
 DIST alembic-1.6.0.tar.gz 1166934 BLAKE2B 
1d1473ca55bf2e5f8f6dcdf2fd7cbd5246e11e7a14e5964a5891c60e5ba814eabc2fe8550b87317c3b57268f649b46c6b611ef1b2c81b5a025ca4e8e537660c2
 SHA512 
bfef894f13762420128b01d2671639de6361848387d4661d92bab66d8c5820ebe9ede62d335b4cc5915f60378e20a02a2b2664a7bf815294fb4cfdee7414dd33
 DIST alembic-1.6.2.tar.gz 1167842 BLAKE2B 
0b61282987e974e81b1007d4a66620b1ac2393b175f91011d0d6c450af1038a9ea553f4a7c1906b2e463f7b95617a00629f337547788821b250373f0de18d0b7
 SHA512 
d5b23812d3e65e9642f39e2596ab86773476a77959938f518438d7659c2da5436432fdc020a5fbda33fe866a047d9558f7a4c5eabe032a6d3f2e6d04ff7928e7
 DIST alembic-1.6.3.tar.gz 1172826 BLAKE2B 
e405589352bc06b6a80e532e564b69b7095e57ff150a519654737c9d5ac43827d1ddedeffd12295419eb0fc7555c346cdf0e32fcc21fcc9c301015fc0c9540f5
 SHA512 
4a73e67962d44de719b9873e4b61153607cb2ebcdd15a19172fc4ea641e2909339ca448e83fa8ecb871a270ccd980f16fcf4a880e9742a177649c4dc44cb30cd
+DIST alembic-1.6.4.tar.gz 1173603 BLAKE2B 
24c7a7f5431db4856ea7f7ea7095b1a992e5c41c1d94235098b6c93b6a9dbd6b0261297019b01e1274a466d5b9236d6c0890a08a8720191f77c20973e1b07afa
 SHA512 
019268060d0552da87d0ab4d624d53f2c7460dfd3018c2643b71adf0c7a574eeb92b238d777c786ecc6f9bb94e8e25655f07f64258b17b9cadccb7ba83a091e4

diff --git a/dev-python/alembic/alembic-1.6.4.ebuild 
b/dev-python/alembic/alembic-1.6.4.ebuild
new file mode 100644
index 000..6105a9e2d89
--- /dev/null
+++ b/dev-python/alembic/alembic-1.6.4.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-05-22 Thread Michał Górny
commit: c2d654fb8d656d22d06ed62655e8106c06b0abb7
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 22 07:16:26 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 22 07:57:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2d654fb

dev-python/alembic: Bump to 1.6.3

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.6.3.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index bf05c71c0e4..d0a3dcee4fd 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1,4 @@
 DIST alembic-1.5.8.tar.gz 1154284 BLAKE2B 
704a7aeb15fcfae8746238ef7ae4533ecbaaf83ab9248035c35cea343a4d02e02c00dfa3c8186826a437c839053fc6292c3f8343945ca32273ee608f6572f513
 SHA512 
e68f3709ed969764cff4c9f755781a10123631d2d07a970674fda2226c84cb92c140bc5ae81e44c8b279823718d4f0544236d260fd04fb7107f3d8293c85b4f0
 DIST alembic-1.6.0.tar.gz 1166934 BLAKE2B 
1d1473ca55bf2e5f8f6dcdf2fd7cbd5246e11e7a14e5964a5891c60e5ba814eabc2fe8550b87317c3b57268f649b46c6b611ef1b2c81b5a025ca4e8e537660c2
 SHA512 
bfef894f13762420128b01d2671639de6361848387d4661d92bab66d8c5820ebe9ede62d335b4cc5915f60378e20a02a2b2664a7bf815294fb4cfdee7414dd33
 DIST alembic-1.6.2.tar.gz 1167842 BLAKE2B 
0b61282987e974e81b1007d4a66620b1ac2393b175f91011d0d6c450af1038a9ea553f4a7c1906b2e463f7b95617a00629f337547788821b250373f0de18d0b7
 SHA512 
d5b23812d3e65e9642f39e2596ab86773476a77959938f518438d7659c2da5436432fdc020a5fbda33fe866a047d9558f7a4c5eabe032a6d3f2e6d04ff7928e7
+DIST alembic-1.6.3.tar.gz 1172826 BLAKE2B 
e405589352bc06b6a80e532e564b69b7095e57ff150a519654737c9d5ac43827d1ddedeffd12295419eb0fc7555c346cdf0e32fcc21fcc9c301015fc0c9540f5
 SHA512 
4a73e67962d44de719b9873e4b61153607cb2ebcdd15a19172fc4ea641e2909339ca448e83fa8ecb871a270ccd980f16fcf4a880e9742a177649c4dc44cb30cd

diff --git a/dev-python/alembic/alembic-1.6.3.ebuild 
b/dev-python/alembic/alembic-1.6.3.ebuild
new file mode 100644
index 000..6105a9e2d89
--- /dev/null
+++ b/dev-python/alembic/alembic-1.6.3.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-05-07 Thread Michał Górny
commit: 6b672807e4ee867adced2ae54793ab5107092169
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May  7 07:43:57 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May  7 08:04:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b672807

dev-python/alembic: Bump to 1.6.2

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.6.2.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index e2c084202f7..bf05c71c0e4 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.5.8.tar.gz 1154284 BLAKE2B 
704a7aeb15fcfae8746238ef7ae4533ecbaaf83ab9248035c35cea343a4d02e02c00dfa3c8186826a437c839053fc6292c3f8343945ca32273ee608f6572f513
 SHA512 
e68f3709ed969764cff4c9f755781a10123631d2d07a970674fda2226c84cb92c140bc5ae81e44c8b279823718d4f0544236d260fd04fb7107f3d8293c85b4f0
 DIST alembic-1.6.0.tar.gz 1166934 BLAKE2B 
1d1473ca55bf2e5f8f6dcdf2fd7cbd5246e11e7a14e5964a5891c60e5ba814eabc2fe8550b87317c3b57268f649b46c6b611ef1b2c81b5a025ca4e8e537660c2
 SHA512 
bfef894f13762420128b01d2671639de6361848387d4661d92bab66d8c5820ebe9ede62d335b4cc5915f60378e20a02a2b2664a7bf815294fb4cfdee7414dd33
+DIST alembic-1.6.2.tar.gz 1167842 BLAKE2B 
0b61282987e974e81b1007d4a66620b1ac2393b175f91011d0d6c450af1038a9ea553f4a7c1906b2e463f7b95617a00629f337547788821b250373f0de18d0b7
 SHA512 
d5b23812d3e65e9642f39e2596ab86773476a77959938f518438d7659c2da5436432fdc020a5fbda33fe866a047d9558f7a4c5eabe032a6d3f2e6d04ff7928e7

diff --git a/dev-python/alembic/alembic-1.6.2.ebuild 
b/dev-python/alembic/alembic-1.6.2.ebuild
new file mode 100644
index 000..6105a9e2d89
--- /dev/null
+++ b/dev-python/alembic/alembic-1.6.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-05-04 Thread Michał Górny
commit: a15571181508561fac8c8c75cdac479d715f90dc
Author: Michał Górny  gentoo  org>
AuthorDate: Tue May  4 11:39:55 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue May  4 12:41:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1557118

dev-python/alembic: Bump to 1.6.0

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.6.0.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index ffa0237b70b..e2c084202f7 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.5.8.tar.gz 1154284 BLAKE2B 
704a7aeb15fcfae8746238ef7ae4533ecbaaf83ab9248035c35cea343a4d02e02c00dfa3c8186826a437c839053fc6292c3f8343945ca32273ee608f6572f513
 SHA512 
e68f3709ed969764cff4c9f755781a10123631d2d07a970674fda2226c84cb92c140bc5ae81e44c8b279823718d4f0544236d260fd04fb7107f3d8293c85b4f0
+DIST alembic-1.6.0.tar.gz 1166934 BLAKE2B 
1d1473ca55bf2e5f8f6dcdf2fd7cbd5246e11e7a14e5964a5891c60e5ba814eabc2fe8550b87317c3b57268f649b46c6b611ef1b2c81b5a025ca4e8e537660c2
 SHA512 
bfef894f13762420128b01d2671639de6361848387d4661d92bab66d8c5820ebe9ede62d335b4cc5915f60378e20a02a2b2664a7bf815294fb4cfdee7414dd33

diff --git a/dev-python/alembic/alembic-1.6.0.ebuild 
b/dev-python/alembic/alembic-1.6.0.ebuild
new file mode 100644
index 000..6105a9e2d89
--- /dev/null
+++ b/dev-python/alembic/alembic-1.6.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-04-28 Thread Michał Górny
commit: 63c445c7e53fe7c4a5f950343f6ab7d41694d338
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Apr 28 07:30:19 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Apr 28 08:16:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63c445c7

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  1 -
 dev-python/alembic/alembic-1.5.7.ebuild | 33 -
 2 files changed, 34 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 1ed7ab98487..ffa0237b70b 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1 @@
-DIST alembic-1.5.7.tar.gz 1154141 BLAKE2B 
9932889b31d6afb49c91b3b5681285869867119f493123ccabac8d24d8a4de6c8700aa1bd5578bfbfd4e13adda10cfb4a59ad4de1a51a6180a3e9455acde928e
 SHA512 
a0bd6104405302ab9155438e980223c0ac97c0bb9026afa701f02cd6b79233cdbb7e1f953314542ebed829c1db96bc73def47eeff42f63c75c31e1fb8e981829
 DIST alembic-1.5.8.tar.gz 1154284 BLAKE2B 
704a7aeb15fcfae8746238ef7ae4533ecbaaf83ab9248035c35cea343a4d02e02c00dfa3c8186826a437c839053fc6292c3f8343945ca32273ee608f6572f513
 SHA512 
e68f3709ed969764cff4c9f755781a10123631d2d07a970674fda2226c84cb92c140bc5ae81e44c8b279823718d4f0544236d260fd04fb7107f3d8293c85b4f0

diff --git a/dev-python/alembic/alembic-1.5.7.ebuild 
b/dev-python/alembic/alembic-1.5.7.ebuild
deleted file mode 100644
index b0a59134f8e..000
--- a/dev-python/alembic/alembic-1.5.7.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}



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

2021-04-27 Thread Sam James
commit: 98a04cd4b0e4635ce70dca06ccf8e2722a466992
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr 27 21:41:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr 27 21:41:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98a04cd4

dev-python/alembic: Stabilize 1.5.8 ALLARCHES, #785991

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

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

diff --git a/dev-python/alembic/alembic-1.5.8.ebuild 
b/dev-python/alembic/alembic-1.5.8.ebuild
index 32d428a7bdf..b0a59134f8e 100644
--- a/dev-python/alembic/alembic-1.5.8.ebuild
+++ b/dev-python/alembic/alembic-1.5.8.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc"
 
 RDEPEND="



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

2021-04-06 Thread Michał Górny
commit: 9ee384ba99542f61515a265f9a82b80edd2290ea
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  6 20:32:04 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  6 20:39:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ee384ba

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  2 --
 dev-python/alembic/alembic-1.5.5.ebuild | 33 -
 dev-python/alembic/alembic-1.5.6.ebuild | 33 -
 3 files changed, 68 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 546a50a6c9d..1ed7ab98487 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,4 +1,2 @@
-DIST alembic-1.5.5.tar.gz 1150308 BLAKE2B 
33db8a0ea00802b37d3e24ca43232a993bfc333e232fa08b8dd0560dfec5f18f4fa82bcc3c34a776c88c8fc8d3645c4501a9dde8e4e5411bc255eb654183d01a
 SHA512 
a4078c66bbe1627620224f965b879c46453bc74e6a2a902619df28912f55b27f086cba68f08bc8c0a37bd221ac16e195f7f905379fd5d191854adb7f90f86530
-DIST alembic-1.5.6.tar.gz 1153606 BLAKE2B 
ef790285975101f5f17a629c812ef56053dcd2878a02a54d6c79aebd9b97e1d253dc63e98e99eb1074ab85ac0f0483c7e0d993920f120373dd40d6dfc2c6
 SHA512 
95b57dd920fb36e36b7c249d369b1835492f8e4b74086d39f1100590c827b76b49a1aede1d484cfb1f600662bfb99d38ddead468ec8ffb92e8110d8c3523e23d
 DIST alembic-1.5.7.tar.gz 1154141 BLAKE2B 
9932889b31d6afb49c91b3b5681285869867119f493123ccabac8d24d8a4de6c8700aa1bd5578bfbfd4e13adda10cfb4a59ad4de1a51a6180a3e9455acde928e
 SHA512 
a0bd6104405302ab9155438e980223c0ac97c0bb9026afa701f02cd6b79233cdbb7e1f953314542ebed829c1db96bc73def47eeff42f63c75c31e1fb8e981829
 DIST alembic-1.5.8.tar.gz 1154284 BLAKE2B 
704a7aeb15fcfae8746238ef7ae4533ecbaaf83ab9248035c35cea343a4d02e02c00dfa3c8186826a437c839053fc6292c3f8343945ca32273ee608f6572f513
 SHA512 
e68f3709ed969764cff4c9f755781a10123631d2d07a970674fda2226c84cb92c140bc5ae81e44c8b279823718d4f0544236d260fd04fb7107f3d8293c85b4f0

diff --git a/dev-python/alembic/alembic-1.5.5.ebuild 
b/dev-python/alembic/alembic-1.5.5.ebuild
deleted file mode 100644
index b0a59134f8e..000
--- a/dev-python/alembic/alembic-1.5.5.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/alembic/alembic-1.5.6.ebuild 
b/dev-python/alembic/alembic-1.5.6.ebuild
deleted file mode 100644
index 32d428a7bdf..000
--- a/dev-python/alembic/alembic-1.5.6.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}



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

2021-04-06 Thread Sam James
commit: 659bb51348627338b49f3fc017aa419787e6b342
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr  6 19:46:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr  6 19:46:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=659bb513

dev-python/alembic: Stabilize 1.5.7 ALLARCHES, #780177

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

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

diff --git a/dev-python/alembic/alembic-1.5.7.ebuild 
b/dev-python/alembic/alembic-1.5.7.ebuild
index 32d428a7bdf..b0a59134f8e 100644
--- a/dev-python/alembic/alembic-1.5.7.ebuild
+++ b/dev-python/alembic/alembic-1.5.7.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc"
 
 RDEPEND="



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

2021-03-25 Thread Michał Górny
commit: b4a34bcec544e05bacb7201566e00adf1c6c8f9d
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 25 16:56:17 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 25 19:09:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4a34bce

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  1 -
 dev-python/alembic/alembic-1.5.4.ebuild | 33 -
 2 files changed, 34 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 962943b3969..546a50a6c9d 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,4 +1,3 @@
-DIST alembic-1.5.4.tar.gz 1133598 BLAKE2B 
88e1f40ef1935b90de789f1adc99edb5fc580c96a3e86a672cc9cfd694e79e940ba696efe560db3bf2878420a168382ed4342cbf1b8c7b9bbbf084532b8da402
 SHA512 
190f8fe96f18541fd62802e026e93c332f6046618cb89d4f9a6b478505742671d363de1161feeccd8873036a458743165080b5a0e2e55e1d0dd81e617c8cd4ad
 DIST alembic-1.5.5.tar.gz 1150308 BLAKE2B 
33db8a0ea00802b37d3e24ca43232a993bfc333e232fa08b8dd0560dfec5f18f4fa82bcc3c34a776c88c8fc8d3645c4501a9dde8e4e5411bc255eb654183d01a
 SHA512 
a4078c66bbe1627620224f965b879c46453bc74e6a2a902619df28912f55b27f086cba68f08bc8c0a37bd221ac16e195f7f905379fd5d191854adb7f90f86530
 DIST alembic-1.5.6.tar.gz 1153606 BLAKE2B 
ef790285975101f5f17a629c812ef56053dcd2878a02a54d6c79aebd9b97e1d253dc63e98e99eb1074ab85ac0f0483c7e0d993920f120373dd40d6dfc2c6
 SHA512 
95b57dd920fb36e36b7c249d369b1835492f8e4b74086d39f1100590c827b76b49a1aede1d484cfb1f600662bfb99d38ddead468ec8ffb92e8110d8c3523e23d
 DIST alembic-1.5.7.tar.gz 1154141 BLAKE2B 
9932889b31d6afb49c91b3b5681285869867119f493123ccabac8d24d8a4de6c8700aa1bd5578bfbfd4e13adda10cfb4a59ad4de1a51a6180a3e9455acde928e
 SHA512 
a0bd6104405302ab9155438e980223c0ac97c0bb9026afa701f02cd6b79233cdbb7e1f953314542ebed829c1db96bc73def47eeff42f63c75c31e1fb8e981829

diff --git a/dev-python/alembic/alembic-1.5.4.ebuild 
b/dev-python/alembic/alembic-1.5.4.ebuild
deleted file mode 100644
index b0a59134f8e..000
--- a/dev-python/alembic/alembic-1.5.4.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}



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

2021-03-25 Thread Agostino Sarubbo
commit: 412bbe68ec5f01b7c9f3afb8856a0b70ec177cdd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Mar 25 16:18:46 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Mar 25 16:19:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=412bbe68

dev-python/alembic: amd64/x86 stable (ALLARCHES policy) wrt bug #778080

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

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

diff --git a/dev-python/alembic/alembic-1.5.5.ebuild 
b/dev-python/alembic/alembic-1.5.5.ebuild
index 32d428a7bdf..b0a59134f8e 100644
--- a/dev-python/alembic/alembic-1.5.5.ebuild
+++ b/dev-python/alembic/alembic-1.5.5.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc"
 
 RDEPEND="



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

2021-03-24 Thread Michał Górny
commit: 6bba71145fd01554d4c9c4b7d40739fd4c2f7f59
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 24 08:06:34 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 24 08:06:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bba7114

dev-python/alembic: Bump to 1.5.8

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

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

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 4b3a920823f..962943b3969 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -2,3 +2,4 @@ DIST alembic-1.5.4.tar.gz 1133598 BLAKE2B 
88e1f40ef1935b90de789f1adc99edb5fc580c
 DIST alembic-1.5.5.tar.gz 1150308 BLAKE2B 
33db8a0ea00802b37d3e24ca43232a993bfc333e232fa08b8dd0560dfec5f18f4fa82bcc3c34a776c88c8fc8d3645c4501a9dde8e4e5411bc255eb654183d01a
 SHA512 
a4078c66bbe1627620224f965b879c46453bc74e6a2a902619df28912f55b27f086cba68f08bc8c0a37bd221ac16e195f7f905379fd5d191854adb7f90f86530
 DIST alembic-1.5.6.tar.gz 1153606 BLAKE2B 
ef790285975101f5f17a629c812ef56053dcd2878a02a54d6c79aebd9b97e1d253dc63e98e99eb1074ab85ac0f0483c7e0d993920f120373dd40d6dfc2c6
 SHA512 
95b57dd920fb36e36b7c249d369b1835492f8e4b74086d39f1100590c827b76b49a1aede1d484cfb1f600662bfb99d38ddead468ec8ffb92e8110d8c3523e23d
 DIST alembic-1.5.7.tar.gz 1154141 BLAKE2B 
9932889b31d6afb49c91b3b5681285869867119f493123ccabac8d24d8a4de6c8700aa1bd5578bfbfd4e13adda10cfb4a59ad4de1a51a6180a3e9455acde928e
 SHA512 
a0bd6104405302ab9155438e980223c0ac97c0bb9026afa701f02cd6b79233cdbb7e1f953314542ebed829c1db96bc73def47eeff42f63c75c31e1fb8e981829
+DIST alembic-1.5.8.tar.gz 1154284 BLAKE2B 
704a7aeb15fcfae8746238ef7ae4533ecbaaf83ab9248035c35cea343a4d02e02c00dfa3c8186826a437c839053fc6292c3f8343945ca32273ee608f6572f513
 SHA512 
e68f3709ed969764cff4c9f755781a10123631d2d07a970674fda2226c84cb92c140bc5ae81e44c8b279823718d4f0544236d260fd04fb7107f3d8293c85b4f0

diff --git a/dev-python/alembic/alembic-1.5.8.ebuild 
b/dev-python/alembic/alembic-1.5.8.ebuild
new file mode 100644
index 000..32d428a7bdf
--- /dev/null
+++ b/dev-python/alembic/alembic-1.5.8.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-03-11 Thread Michał Górny
commit: e8f5cd3295776d2bd132aab4257b60b719400e09
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 11 21:54:08 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 11 22:58:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8f5cd32

dev-python/alembic: Bump to 1.5.7

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

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

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 3b7b9645cec..4b3a920823f 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1,4 @@
 DIST alembic-1.5.4.tar.gz 1133598 BLAKE2B 
88e1f40ef1935b90de789f1adc99edb5fc580c96a3e86a672cc9cfd694e79e940ba696efe560db3bf2878420a168382ed4342cbf1b8c7b9bbbf084532b8da402
 SHA512 
190f8fe96f18541fd62802e026e93c332f6046618cb89d4f9a6b478505742671d363de1161feeccd8873036a458743165080b5a0e2e55e1d0dd81e617c8cd4ad
 DIST alembic-1.5.5.tar.gz 1150308 BLAKE2B 
33db8a0ea00802b37d3e24ca43232a993bfc333e232fa08b8dd0560dfec5f18f4fa82bcc3c34a776c88c8fc8d3645c4501a9dde8e4e5411bc255eb654183d01a
 SHA512 
a4078c66bbe1627620224f965b879c46453bc74e6a2a902619df28912f55b27f086cba68f08bc8c0a37bd221ac16e195f7f905379fd5d191854adb7f90f86530
 DIST alembic-1.5.6.tar.gz 1153606 BLAKE2B 
ef790285975101f5f17a629c812ef56053dcd2878a02a54d6c79aebd9b97e1d253dc63e98e99eb1074ab85ac0f0483c7e0d993920f120373dd40d6dfc2c6
 SHA512 
95b57dd920fb36e36b7c249d369b1835492f8e4b74086d39f1100590c827b76b49a1aede1d484cfb1f600662bfb99d38ddead468ec8ffb92e8110d8c3523e23d
+DIST alembic-1.5.7.tar.gz 1154141 BLAKE2B 
9932889b31d6afb49c91b3b5681285869867119f493123ccabac8d24d8a4de6c8700aa1bd5578bfbfd4e13adda10cfb4a59ad4de1a51a6180a3e9455acde928e
 SHA512 
a0bd6104405302ab9155438e980223c0ac97c0bb9026afa701f02cd6b79233cdbb7e1f953314542ebed829c1db96bc73def47eeff42f63c75c31e1fb8e981829

diff --git a/dev-python/alembic/alembic-1.5.7.ebuild 
b/dev-python/alembic/alembic-1.5.7.ebuild
new file mode 100644
index 000..32d428a7bdf
--- /dev/null
+++ b/dev-python/alembic/alembic-1.5.7.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-03-07 Thread Michał Górny
commit: 51f5ddc730d5a1ab2df61bb1c6d439dcc431ff61
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:28:23 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51f5ddc7

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  1 -
 dev-python/alembic/alembic-1.5.1.ebuild | 33 -
 2 files changed, 34 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 3b5ad8299c6..3b7b9645cec 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,4 +1,3 @@
-DIST alembic-1.5.1.tar.gz 1128404 BLAKE2B 
70a2ce16adcf317c9376f77d8fa88e9eef3aa4090de5f933187f47df9fe6ac40a25df75d6c74c50c3be23dd3cef13d465eb2ddae4ea83558d01ebffd8effe241
 SHA512 
2fe490c46c25312f0496fe28b59956efc78924f145b69ba95e5cb1cc091a72047c1aa5f8a85924ec59ad0aba2bfa143b9cad475dedc6f849c38695c08601
 DIST alembic-1.5.4.tar.gz 1133598 BLAKE2B 
88e1f40ef1935b90de789f1adc99edb5fc580c96a3e86a672cc9cfd694e79e940ba696efe560db3bf2878420a168382ed4342cbf1b8c7b9bbbf084532b8da402
 SHA512 
190f8fe96f18541fd62802e026e93c332f6046618cb89d4f9a6b478505742671d363de1161feeccd8873036a458743165080b5a0e2e55e1d0dd81e617c8cd4ad
 DIST alembic-1.5.5.tar.gz 1150308 BLAKE2B 
33db8a0ea00802b37d3e24ca43232a993bfc333e232fa08b8dd0560dfec5f18f4fa82bcc3c34a776c88c8fc8d3645c4501a9dde8e4e5411bc255eb654183d01a
 SHA512 
a4078c66bbe1627620224f965b879c46453bc74e6a2a902619df28912f55b27f086cba68f08bc8c0a37bd221ac16e195f7f905379fd5d191854adb7f90f86530
 DIST alembic-1.5.6.tar.gz 1153606 BLAKE2B 
ef790285975101f5f17a629c812ef56053dcd2878a02a54d6c79aebd9b97e1d253dc63e98e99eb1074ab85ac0f0483c7e0d993920f120373dd40d6dfc2c6
 SHA512 
95b57dd920fb36e36b7c249d369b1835492f8e4b74086d39f1100590c827b76b49a1aede1d484cfb1f600662bfb99d38ddead468ec8ffb92e8110d8c3523e23d

diff --git a/dev-python/alembic/alembic-1.5.1.ebuild 
b/dev-python/alembic/alembic-1.5.1.ebuild
deleted file mode 100644
index b0a59134f8e..000
--- a/dev-python/alembic/alembic-1.5.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}



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

2021-03-07 Thread Sam James
commit: 4e0eebd1607dfbb3b58ce7a0b8c10b94c18e99a6
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 19:46:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 19:46:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e0eebd1

dev-python/alembic: Stabilize 1.5.4 ALLARCHES, #774561

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

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

diff --git a/dev-python/alembic/alembic-1.5.4.ebuild 
b/dev-python/alembic/alembic-1.5.4.ebuild
index 32d428a7bdf..b0a59134f8e 100644
--- a/dev-python/alembic/alembic-1.5.4.ebuild
+++ b/dev-python/alembic/alembic-1.5.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc"
 
 RDEPEND="



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

2021-03-05 Thread Michał Górny
commit: e93c56a550ebdc30ead714d7fc9dacad87645f35
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar  5 21:33:55 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar  5 21:50:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e93c56a5

dev-python/alembic: Bump to 1.5.6

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

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

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 16236e5b10e..3b5ad8299c6 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1,4 @@
 DIST alembic-1.5.1.tar.gz 1128404 BLAKE2B 
70a2ce16adcf317c9376f77d8fa88e9eef3aa4090de5f933187f47df9fe6ac40a25df75d6c74c50c3be23dd3cef13d465eb2ddae4ea83558d01ebffd8effe241
 SHA512 
2fe490c46c25312f0496fe28b59956efc78924f145b69ba95e5cb1cc091a72047c1aa5f8a85924ec59ad0aba2bfa143b9cad475dedc6f849c38695c08601
 DIST alembic-1.5.4.tar.gz 1133598 BLAKE2B 
88e1f40ef1935b90de789f1adc99edb5fc580c96a3e86a672cc9cfd694e79e940ba696efe560db3bf2878420a168382ed4342cbf1b8c7b9bbbf084532b8da402
 SHA512 
190f8fe96f18541fd62802e026e93c332f6046618cb89d4f9a6b478505742671d363de1161feeccd8873036a458743165080b5a0e2e55e1d0dd81e617c8cd4ad
 DIST alembic-1.5.5.tar.gz 1150308 BLAKE2B 
33db8a0ea00802b37d3e24ca43232a993bfc333e232fa08b8dd0560dfec5f18f4fa82bcc3c34a776c88c8fc8d3645c4501a9dde8e4e5411bc255eb654183d01a
 SHA512 
a4078c66bbe1627620224f965b879c46453bc74e6a2a902619df28912f55b27f086cba68f08bc8c0a37bd221ac16e195f7f905379fd5d191854adb7f90f86530
+DIST alembic-1.5.6.tar.gz 1153606 BLAKE2B 
ef790285975101f5f17a629c812ef56053dcd2878a02a54d6c79aebd9b97e1d253dc63e98e99eb1074ab85ac0f0483c7e0d993920f120373dd40d6dfc2c6
 SHA512 
95b57dd920fb36e36b7c249d369b1835492f8e4b74086d39f1100590c827b76b49a1aede1d484cfb1f600662bfb99d38ddead468ec8ffb92e8110d8c3523e23d

diff --git a/dev-python/alembic/alembic-1.5.6.ebuild 
b/dev-python/alembic/alembic-1.5.6.ebuild
new file mode 100644
index 000..32d428a7bdf
--- /dev/null
+++ b/dev-python/alembic/alembic-1.5.6.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-02-21 Thread Michał Górny
commit: 7852f514b110c3d0ac5e5191a8401d6d9fec9c7e
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 21 08:07:54 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 21 08:23:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7852f514

dev-python/alembic: Bump to 1.5.5

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

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

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 3a6d44a9223..16236e5b10e 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.5.1.tar.gz 1128404 BLAKE2B 
70a2ce16adcf317c9376f77d8fa88e9eef3aa4090de5f933187f47df9fe6ac40a25df75d6c74c50c3be23dd3cef13d465eb2ddae4ea83558d01ebffd8effe241
 SHA512 
2fe490c46c25312f0496fe28b59956efc78924f145b69ba95e5cb1cc091a72047c1aa5f8a85924ec59ad0aba2bfa143b9cad475dedc6f849c38695c08601
 DIST alembic-1.5.4.tar.gz 1133598 BLAKE2B 
88e1f40ef1935b90de789f1adc99edb5fc580c96a3e86a672cc9cfd694e79e940ba696efe560db3bf2878420a168382ed4342cbf1b8c7b9bbbf084532b8da402
 SHA512 
190f8fe96f18541fd62802e026e93c332f6046618cb89d4f9a6b478505742671d363de1161feeccd8873036a458743165080b5a0e2e55e1d0dd81e617c8cd4ad
+DIST alembic-1.5.5.tar.gz 1150308 BLAKE2B 
33db8a0ea00802b37d3e24ca43232a993bfc333e232fa08b8dd0560dfec5f18f4fa82bcc3c34a776c88c8fc8d3645c4501a9dde8e4e5411bc255eb654183d01a
 SHA512 
a4078c66bbe1627620224f965b879c46453bc74e6a2a902619df28912f55b27f086cba68f08bc8c0a37bd221ac16e195f7f905379fd5d191854adb7f90f86530

diff --git a/dev-python/alembic/alembic-1.5.5.ebuild 
b/dev-python/alembic/alembic-1.5.5.ebuild
new file mode 100644
index 000..32d428a7bdf
--- /dev/null
+++ b/dev-python/alembic/alembic-1.5.5.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/alembic/files/, dev-python/alembic/

2021-02-19 Thread Michał Górny
commit: e28ecf7b48917da1ad8a91da0acdd724e79aad1e
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 19 08:57:04 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 19 08:57:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e28ecf7b

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest|  4 --
 dev-python/alembic/alembic-1.4.3.ebuild| 45 ---
 dev-python/alembic/alembic-1.5.0.ebuild| 33 ---
 dev-python/alembic/alembic-1.5.2.ebuild| 33 ---
 dev-python/alembic/alembic-1.5.3.ebuild| 33 ---
 .../alembic/files/alembic-1.4.3-pytest6.patch  | 66 --
 6 files changed, 214 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index f107515e78a..3a6d44a9223 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,6 +1,2 @@
-DIST alembic-1.4.3.tar.gz 1108131 BLAKE2B 
d9c8b6d6aebce7a45194dd6c654f4a2627714a5c1f7cb7a1cf80ed8c3fe861e3bb7857811128787ddd6c093b4370784b40cddb385cfbd30f6134d537fe949d2d
 SHA512 
925d8957fd9008d041737a9e79ec8d7a4c5deba1976e980362d355a75348c1638d783d9d48234a5bc3b2dc3f2f09dcb281d0c80ae0f0c5bc32e176c3dfa05463
-DIST alembic-1.5.0.tar.gz 1128073 BLAKE2B 
067ebe7a8ee9b14fc782e0f5268990b07a8ae91ab8ae89daee119bb64f30b8cb966ff22ce71c67e476fafce7ae418952f253645b0f5b5b8a1abbf7f562794138
 SHA512 
a667e5b176770061c27ea7fdaafdbcdad64d968e22e729083fadd8e002530cc43909a955c3ccaa04329c393ab3f27ec5b944b03ba0ae5d29609b940e7cfb8ad5
 DIST alembic-1.5.1.tar.gz 1128404 BLAKE2B 
70a2ce16adcf317c9376f77d8fa88e9eef3aa4090de5f933187f47df9fe6ac40a25df75d6c74c50c3be23dd3cef13d465eb2ddae4ea83558d01ebffd8effe241
 SHA512 
2fe490c46c25312f0496fe28b59956efc78924f145b69ba95e5cb1cc091a72047c1aa5f8a85924ec59ad0aba2bfa143b9cad475dedc6f849c38695c08601
-DIST alembic-1.5.2.tar.gz 1129660 BLAKE2B 
ab8800adb9a46e98adfed558a98328cbb06f53c4e1c47a7ac2f9f559e807aa81955295496404569aff53bee449213bc40232d070403e72098a27e789ea2a7b96
 SHA512 
35a00cee17d626aec55d6fe5b99dec58dfc52167a1ff1559cb69a45b9eccdaf1a0ceb58f8c2bd0d6e590ac2577fea32d82b412b5e706d0b9c183775d44253668
-DIST alembic-1.5.3.tar.gz 1132015 BLAKE2B 
b3a1e54b365f1b60edbb2c3052d3a0b822e6f3dfe398d58ba3dc9504cf081476abf7af79dab2233629765185a7d1d69af7fabcdbe8328c54b39c81034e55ceab
 SHA512 
0859b21b35854ddcb98f020a03659cdb4c56833a84f868db545aae51b62eddf3c4f76c0d00dd1d5fbd1259766b90f9f5b11e1f5e99db8d8752015aded12ca185
 DIST alembic-1.5.4.tar.gz 1133598 BLAKE2B 
88e1f40ef1935b90de789f1adc99edb5fc580c96a3e86a672cc9cfd694e79e940ba696efe560db3bf2878420a168382ed4342cbf1b8c7b9bbbf084532b8da402
 SHA512 
190f8fe96f18541fd62802e026e93c332f6046618cb89d4f9a6b478505742671d363de1161feeccd8873036a458743165080b5a0e2e55e1d0dd81e617c8cd4ad

diff --git a/dev-python/alembic/alembic-1.4.3.ebuild 
b/dev-python/alembic/alembic-1.4.3.ebuild
deleted file mode 100644
index f6411be87c8..000
--- a/dev-python/alembic/alembic-1.4.3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-"
-
-PATCHES=(
-   # 
https://github.com/sqlalchemy/alembic/commit/8690940976544f368dad31cfbc46d9e1426b2ce1
-   "${FILESDIR}/${P}-pytest6.patch"
-)
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # suite passes all if run from source. The residual fail & error are 
quite erroneous
-   rm tests/test_script_consumption.py || die
-
-   distutils-r1_python_prepare_all
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/alembic/alembic-1.5.0.ebuild 
b/dev-python/alembic/alembic-1.5.0.ebuild
deleted file mode 100644
index 32d428a7bdf..000
--- a/dev-python/alembic/alembic-1.5.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://github.com/sqlalchemy/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 

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

2021-02-18 Thread Sam James
commit: 0890eacee751dceb8fc7e978d39d753727869e7a
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 19 03:36:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 19 03:36:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0890eace

dev-python/alembic: Stabilize 1.5.1 ALLARCHES, #771372

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

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

diff --git a/dev-python/alembic/alembic-1.5.1.ebuild 
b/dev-python/alembic/alembic-1.5.1.ebuild
index 32d428a7bdf..b0a59134f8e 100644
--- a/dev-python/alembic/alembic-1.5.1.ebuild
+++ b/dev-python/alembic/alembic-1.5.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc"
 
 RDEPEND="



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

2021-02-03 Thread Michał Górny
commit: 16b777f911c5f4acee92383ba96155a1edc0c95f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb  3 23:02:52 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb  3 23:21:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16b777f9

dev-python/alembic: Bump to 1.5.4

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

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

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 3dfbc0629c6..f107515e78a 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -3,3 +3,4 @@ DIST alembic-1.5.0.tar.gz 1128073 BLAKE2B 
067ebe7a8ee9b14fc782e0f5268990b07a8ae9
 DIST alembic-1.5.1.tar.gz 1128404 BLAKE2B 
70a2ce16adcf317c9376f77d8fa88e9eef3aa4090de5f933187f47df9fe6ac40a25df75d6c74c50c3be23dd3cef13d465eb2ddae4ea83558d01ebffd8effe241
 SHA512 
2fe490c46c25312f0496fe28b59956efc78924f145b69ba95e5cb1cc091a72047c1aa5f8a85924ec59ad0aba2bfa143b9cad475dedc6f849c38695c08601
 DIST alembic-1.5.2.tar.gz 1129660 BLAKE2B 
ab8800adb9a46e98adfed558a98328cbb06f53c4e1c47a7ac2f9f559e807aa81955295496404569aff53bee449213bc40232d070403e72098a27e789ea2a7b96
 SHA512 
35a00cee17d626aec55d6fe5b99dec58dfc52167a1ff1559cb69a45b9eccdaf1a0ceb58f8c2bd0d6e590ac2577fea32d82b412b5e706d0b9c183775d44253668
 DIST alembic-1.5.3.tar.gz 1132015 BLAKE2B 
b3a1e54b365f1b60edbb2c3052d3a0b822e6f3dfe398d58ba3dc9504cf081476abf7af79dab2233629765185a7d1d69af7fabcdbe8328c54b39c81034e55ceab
 SHA512 
0859b21b35854ddcb98f020a03659cdb4c56833a84f868db545aae51b62eddf3c4f76c0d00dd1d5fbd1259766b90f9f5b11e1f5e99db8d8752015aded12ca185
+DIST alembic-1.5.4.tar.gz 1133598 BLAKE2B 
88e1f40ef1935b90de789f1adc99edb5fc580c96a3e86a672cc9cfd694e79e940ba696efe560db3bf2878420a168382ed4342cbf1b8c7b9bbbf084532b8da402
 SHA512 
190f8fe96f18541fd62802e026e93c332f6046618cb89d4f9a6b478505742671d363de1161feeccd8873036a458743165080b5a0e2e55e1d0dd81e617c8cd4ad

diff --git a/dev-python/alembic/alembic-1.5.4.ebuild 
b/dev-python/alembic/alembic-1.5.4.ebuild
new file mode 100644
index 000..32d428a7bdf
--- /dev/null
+++ b/dev-python/alembic/alembic-1.5.4.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-01-30 Thread Michał Górny
commit: 24ed2eabf8e493bff4a7ccb5933bfb15afeab0e2
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan 30 08:51:09 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan 30 08:51:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24ed2eab

dev-python/alembic: Bump to 1.5.3

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

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

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 0a580c9569d..3dfbc0629c6 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -2,3 +2,4 @@ DIST alembic-1.4.3.tar.gz 1108131 BLAKE2B 
d9c8b6d6aebce7a45194dd6c654f4a2627714a
 DIST alembic-1.5.0.tar.gz 1128073 BLAKE2B 
067ebe7a8ee9b14fc782e0f5268990b07a8ae91ab8ae89daee119bb64f30b8cb966ff22ce71c67e476fafce7ae418952f253645b0f5b5b8a1abbf7f562794138
 SHA512 
a667e5b176770061c27ea7fdaafdbcdad64d968e22e729083fadd8e002530cc43909a955c3ccaa04329c393ab3f27ec5b944b03ba0ae5d29609b940e7cfb8ad5
 DIST alembic-1.5.1.tar.gz 1128404 BLAKE2B 
70a2ce16adcf317c9376f77d8fa88e9eef3aa4090de5f933187f47df9fe6ac40a25df75d6c74c50c3be23dd3cef13d465eb2ddae4ea83558d01ebffd8effe241
 SHA512 
2fe490c46c25312f0496fe28b59956efc78924f145b69ba95e5cb1cc091a72047c1aa5f8a85924ec59ad0aba2bfa143b9cad475dedc6f849c38695c08601
 DIST alembic-1.5.2.tar.gz 1129660 BLAKE2B 
ab8800adb9a46e98adfed558a98328cbb06f53c4e1c47a7ac2f9f559e807aa81955295496404569aff53bee449213bc40232d070403e72098a27e789ea2a7b96
 SHA512 
35a00cee17d626aec55d6fe5b99dec58dfc52167a1ff1559cb69a45b9eccdaf1a0ceb58f8c2bd0d6e590ac2577fea32d82b412b5e706d0b9c183775d44253668
+DIST alembic-1.5.3.tar.gz 1132015 BLAKE2B 
b3a1e54b365f1b60edbb2c3052d3a0b822e6f3dfe398d58ba3dc9504cf081476abf7af79dab2233629765185a7d1d69af7fabcdbe8328c54b39c81034e55ceab
 SHA512 
0859b21b35854ddcb98f020a03659cdb4c56833a84f868db545aae51b62eddf3c4f76c0d00dd1d5fbd1259766b90f9f5b11e1f5e99db8d8752015aded12ca185

diff --git a/dev-python/alembic/alembic-1.5.3.ebuild 
b/dev-python/alembic/alembic-1.5.3.ebuild
new file mode 100644
index 000..32d428a7bdf
--- /dev/null
+++ b/dev-python/alembic/alembic-1.5.3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-01-21 Thread Michał Górny
commit: 2ddfb1f5c3f6796550951b75069d6e79bcdc0d0e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 21 10:24:06 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 21 10:24:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ddfb1f5

dev-python/alembic: Bump to 1.5.2

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

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

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 4b28a7f7e09..0a580c9569d 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1,4 @@
 DIST alembic-1.4.3.tar.gz 1108131 BLAKE2B 
d9c8b6d6aebce7a45194dd6c654f4a2627714a5c1f7cb7a1cf80ed8c3fe861e3bb7857811128787ddd6c093b4370784b40cddb385cfbd30f6134d537fe949d2d
 SHA512 
925d8957fd9008d041737a9e79ec8d7a4c5deba1976e980362d355a75348c1638d783d9d48234a5bc3b2dc3f2f09dcb281d0c80ae0f0c5bc32e176c3dfa05463
 DIST alembic-1.5.0.tar.gz 1128073 BLAKE2B 
067ebe7a8ee9b14fc782e0f5268990b07a8ae91ab8ae89daee119bb64f30b8cb966ff22ce71c67e476fafce7ae418952f253645b0f5b5b8a1abbf7f562794138
 SHA512 
a667e5b176770061c27ea7fdaafdbcdad64d968e22e729083fadd8e002530cc43909a955c3ccaa04329c393ab3f27ec5b944b03ba0ae5d29609b940e7cfb8ad5
 DIST alembic-1.5.1.tar.gz 1128404 BLAKE2B 
70a2ce16adcf317c9376f77d8fa88e9eef3aa4090de5f933187f47df9fe6ac40a25df75d6c74c50c3be23dd3cef13d465eb2ddae4ea83558d01ebffd8effe241
 SHA512 
2fe490c46c25312f0496fe28b59956efc78924f145b69ba95e5cb1cc091a72047c1aa5f8a85924ec59ad0aba2bfa143b9cad475dedc6f849c38695c08601
+DIST alembic-1.5.2.tar.gz 1129660 BLAKE2B 
ab8800adb9a46e98adfed558a98328cbb06f53c4e1c47a7ac2f9f559e807aa81955295496404569aff53bee449213bc40232d070403e72098a27e789ea2a7b96
 SHA512 
35a00cee17d626aec55d6fe5b99dec58dfc52167a1ff1559cb69a45b9eccdaf1a0ceb58f8c2bd0d6e590ac2577fea32d82b412b5e706d0b9c183775d44253668

diff --git a/dev-python/alembic/alembic-1.5.2.ebuild 
b/dev-python/alembic/alembic-1.5.2.ebuild
new file mode 100644
index 000..32d428a7bdf
--- /dev/null
+++ b/dev-python/alembic/alembic-1.5.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-01-20 Thread Michał Górny
commit: 40aac247f2a7ec3c1a383d34f370fddb665d6bf9
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 20 08:56:32 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 20 09:27:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40aac247

dev-python/alembic: Bump to 1.5.1

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

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

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index df91474bd95..4b28a7f7e09 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.4.3.tar.gz 1108131 BLAKE2B 
d9c8b6d6aebce7a45194dd6c654f4a2627714a5c1f7cb7a1cf80ed8c3fe861e3bb7857811128787ddd6c093b4370784b40cddb385cfbd30f6134d537fe949d2d
 SHA512 
925d8957fd9008d041737a9e79ec8d7a4c5deba1976e980362d355a75348c1638d783d9d48234a5bc3b2dc3f2f09dcb281d0c80ae0f0c5bc32e176c3dfa05463
 DIST alembic-1.5.0.tar.gz 1128073 BLAKE2B 
067ebe7a8ee9b14fc782e0f5268990b07a8ae91ab8ae89daee119bb64f30b8cb966ff22ce71c67e476fafce7ae418952f253645b0f5b5b8a1abbf7f562794138
 SHA512 
a667e5b176770061c27ea7fdaafdbcdad64d968e22e729083fadd8e002530cc43909a955c3ccaa04329c393ab3f27ec5b944b03ba0ae5d29609b940e7cfb8ad5
+DIST alembic-1.5.1.tar.gz 1128404 BLAKE2B 
70a2ce16adcf317c9376f77d8fa88e9eef3aa4090de5f933187f47df9fe6ac40a25df75d6c74c50c3be23dd3cef13d465eb2ddae4ea83558d01ebffd8effe241
 SHA512 
2fe490c46c25312f0496fe28b59956efc78924f145b69ba95e5cb1cc091a72047c1aa5f8a85924ec59ad0aba2bfa143b9cad475dedc6f849c38695c08601

diff --git a/dev-python/alembic/alembic-1.5.1.ebuild 
b/dev-python/alembic/alembic-1.5.1.ebuild
new file mode 100644
index 000..32d428a7bdf
--- /dev/null
+++ b/dev-python/alembic/alembic-1.5.1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2021-01-18 Thread Michał Górny
commit: f166bc8a1b4aca554bdeeadf813d84928b380a20
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 23:47:35 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 23:47:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f166bc8a

dev-python/alembic: Bump to 1.5.0

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

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

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 294e1f23ee9..df91474bd95 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.4.3.tar.gz 1108131 BLAKE2B 
d9c8b6d6aebce7a45194dd6c654f4a2627714a5c1f7cb7a1cf80ed8c3fe861e3bb7857811128787ddd6c093b4370784b40cddb385cfbd30f6134d537fe949d2d
 SHA512 
925d8957fd9008d041737a9e79ec8d7a4c5deba1976e980362d355a75348c1638d783d9d48234a5bc3b2dc3f2f09dcb281d0c80ae0f0c5bc32e176c3dfa05463
+DIST alembic-1.5.0.tar.gz 1128073 BLAKE2B 
067ebe7a8ee9b14fc782e0f5268990b07a8ae91ab8ae89daee119bb64f30b8cb966ff22ce71c67e476fafce7ae418952f253645b0f5b5b8a1abbf7f562794138
 SHA512 
a667e5b176770061c27ea7fdaafdbcdad64d968e22e729083fadd8e002530cc43909a955c3ccaa04329c393ab3f27ec5b944b03ba0ae5d29609b940e7cfb8ad5

diff --git a/dev-python/alembic/alembic-1.5.0.ebuild 
b/dev-python/alembic/alembic-1.5.0.ebuild
new file mode 100644
index 000..9600e4d2d12
--- /dev/null
+++ b/dev-python/alembic/alembic-1.5.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{6..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



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

2020-11-25 Thread Michał Górny
commit: be83e18503a89d34ca837996f8312da09173af64
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 25 12:26:10 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 25 12:29:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be83e185

dev-python/alembic: Remove old

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

 dev-python/alembic/Manifest |  1 -
 dev-python/alembic/alembic-1.4.2.ebuild | 47 -
 2 files changed, 48 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 1e0a60fc54a..294e1f23ee9 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1 @@
-DIST alembic-1.4.2.tar.gz 1092045 BLAKE2B 
5f4001a756aacbb4db509669bc0d4d7c59c38e2983c433283243efa97bf28a22e38bcfd28a4bc72573e8ab78d6590e78f4e12a5b9dd08b60cf5a84520b955056
 SHA512 
82bdfe442c19033aa2b802ec49edd13ed265c00a2b5a048490a83ffa8e53587c56a90b64d554e746a9189923419c528482cb7a7c950c210e0de47b32fa7c270e
 DIST alembic-1.4.3.tar.gz 1108131 BLAKE2B 
d9c8b6d6aebce7a45194dd6c654f4a2627714a5c1f7cb7a1cf80ed8c3fe861e3bb7857811128787ddd6c093b4370784b40cddb385cfbd30f6134d537fe949d2d
 SHA512 
925d8957fd9008d041737a9e79ec8d7a4c5deba1976e980362d355a75348c1638d783d9d48234a5bc3b2dc3f2f09dcb281d0c80ae0f0c5bc32e176c3dfa05463

diff --git a/dev-python/alembic/alembic-1.4.2.ebuild 
b/dev-python/alembic/alembic-1.4.2.ebuild
deleted file mode 100644
index 41d1166ea31..000
--- a/dev-python/alembic/alembic-1.4.2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{6,7,8} )
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://bitbucket.org/zzzeek/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test doc"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]
-   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]"
-DEPEND="
-   test? ( ${RDEPEND}
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}] )"
-# For test phase
-DISTUTILS_IN_SOURCE_BUILD=1
-
-python_prepare_all() {
-   # suite passes all if run from source. The residual fail & error are 
quite erroneous
-   rm tests/test_script_consumption.py || die
-
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   ${EPYTHON} -m pytest --dropfirst || die "Testing failed with ${EPYTHON}"
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}



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

2020-11-25 Thread Agostino Sarubbo
commit: 8070b64f04ff36f9509cf055d3dfdf0761011f19
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Nov 25 12:13:04 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Nov 25 12:13:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8070b64f

dev-python/alembic: amd64/x86 stable (ALLARCHES policy) wrt bug #756421

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

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

diff --git a/dev-python/alembic/alembic-1.4.3.ebuild 
b/dev-python/alembic/alembic-1.4.3.ebuild
index 92f5a8189f9..5c69b224f82 100644
--- a/dev-python/alembic/alembic-1.4.3.ebuild
+++ b/dev-python/alembic/alembic-1.4.3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc"
 
 RDEPEND="



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

2020-11-25 Thread Michał Górny
commit: af12dc331667cd065ad1f503d398469edc1d3a0a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 25 09:00:38 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 25 09:09:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af12dc33

dev-python/alembic: Mark ALLARCHES

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

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

diff --git a/dev-python/alembic/metadata.xml b/dev-python/alembic/metadata.xml
index 6d670338b4e..c0975d18b1f 100644
--- a/dev-python/alembic/metadata.xml
+++ b/dev-python/alembic/metadata.xml
@@ -5,6 +5,7 @@
pyt...@gentoo.org
Python

+   

alembic
sqlalchemy/alembic



[gentoo-commits] repo/gentoo:master commit in: dev-python/alembic/files/, dev-python/alembic/

2020-10-17 Thread Louis Sautier
commit: fc689ef5d902675cfd6eedc6980701b4a7bcdf57
Author: Louis Sautier  gentoo  org>
AuthorDate: Sat Oct 17 09:20:58 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sat Oct 17 09:29:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc689ef5

dev-python/alembic: bump to 1.4.3, support PyPy3 and Python 3.9

Also:
* Fix tests with pytest 6.
* Update HOMEPAGE.
* Use distutils_enable_tests.

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/alembic/Manifest|  1 +
 dev-python/alembic/alembic-1.4.3.ebuild| 45 +++
 .../alembic/files/alembic-1.4.3-pytest6.patch  | 66 ++
 3 files changed, 112 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 13fd1fccd5e..1e0a60fc54a 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1 +1,2 @@
 DIST alembic-1.4.2.tar.gz 1092045 BLAKE2B 
5f4001a756aacbb4db509669bc0d4d7c59c38e2983c433283243efa97bf28a22e38bcfd28a4bc72573e8ab78d6590e78f4e12a5b9dd08b60cf5a84520b955056
 SHA512 
82bdfe442c19033aa2b802ec49edd13ed265c00a2b5a048490a83ffa8e53587c56a90b64d554e746a9189923419c528482cb7a7c950c210e0de47b32fa7c270e
+DIST alembic-1.4.3.tar.gz 1108131 BLAKE2B 
d9c8b6d6aebce7a45194dd6c654f4a2627714a5c1f7cb7a1cf80ed8c3fe861e3bb7857811128787ddd6c093b4370784b40cddb385cfbd30f6134d537fe949d2d
 SHA512 
925d8957fd9008d041737a9e79ec8d7a4c5deba1976e980362d355a75348c1638d783d9d48234a5bc3b2dc3f2f09dcb281d0c80ae0f0c5bc32e176c3dfa05463

diff --git a/dev-python/alembic/alembic-1.4.3.ebuild 
b/dev-python/alembic/alembic-1.4.3.ebuild
new file mode 100644
index 000..92f5a8189f9
--- /dev/null
+++ b/dev-python/alembic/alembic-1.4.3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{6..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://github.com/sqlalchemy/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+PATCHES=(
+   # 
https://github.com/sqlalchemy/alembic/commit/8690940976544f368dad31cfbc46d9e1426b2ce1
+   "${FILESDIR}/${P}-pytest6.patch"
+)
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # suite passes all if run from source. The residual fail & error are 
quite erroneous
+   rm tests/test_script_consumption.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}

diff --git a/dev-python/alembic/files/alembic-1.4.3-pytest6.patch 
b/dev-python/alembic/files/alembic-1.4.3-pytest6.patch
new file mode 100644
index 000..ecf21a7ca58
--- /dev/null
+++ b/dev-python/alembic/files/alembic-1.4.3-pytest6.patch
@@ -0,0 +1,66 @@
+From 8690940976544f368dad31cfbc46d9e1426b2ce1 Mon Sep 17 00:00:00 2001
+From: Mike Bayer 
+Date: Sat, 26 Sep 2020 21:05:53 -0400
+Subject: [PATCH] Support pytest 6.x
+
+pytest has removed support for pytest.Class(..parent)
+and we need to use from_parent.
+
+Also works around new issue for 6.1.0
+
+References: https://github.com/pytest-dev/pytest/issues/7807
+
+Change-Id: Ia5fed9b22e76c99f71489283acee207f996f52a4
+---
+ alembic/__init__.py|  2 +-
+ alembic/testing/plugin/pytestplugin.py | 10 ++
+ tox.ini|  4 ++--
+ 3 files changed, 5 insertions(+), 11 deletions(-)
+
+ sys.modules["alembic.migration"] = migration
+ sys.modules["alembic.environment"] = environment
+diff --git a/alembic/testing/plugin/pytestplugin.py 
b/alembic/testing/plugin/pytestplugin.py
+index 1c8be05..ba3d35b 100644
+--- a/alembic/testing/plugin/pytestplugin.py
 b/alembic/testing/plugin/pytestplugin.py
+@@ -33,16 +33,10 @@ def pytest_configure(config):
+ def pytest_pycollect_makeitem(collector, name, obj):
+ 
+ if inspect.isclass(obj) and plugin_base.want_class(name, obj):
+-
+-# in pytest 5.4.0
+-# return [
+-# pytest.Class.from_parent(collector,
+-# name=parametrize_cls.__name__)
+-# for parametrize_cls in _parametrize_cls(collector.module, obj)
+-# ]
++ctor = getattr(pytest.Class, "from_parent", pytest.Class)
+ 
+ return [
+-pytest.Class(parametrize_cls.__name__, parent=collector)
++ctor(name=parametrize_cls.__name__, parent=collector)
+ for parametrize_cls in _parametrize_cls(collector.module, obj)
+ ]
+ elif (

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

2020-10-16 Thread Louis Sautier
commit: b4f943bcc04a66400ce6b04fa3c57ad5a23ca9da
Author: Louis Sautier  gentoo  org>
AuthorDate: Fri Oct 16 17:47:22 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Fri Oct 16 17:47:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4f943bc

dev-python/alembic: update upstream metadata

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/alembic/metadata.xml | 18 ++
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/dev-python/alembic/metadata.xml b/dev-python/alembic/metadata.xml
index 4d8c6d6bf67..6d670338b4e 100644
--- a/dev-python/alembic/metadata.xml
+++ b/dev-python/alembic/metadata.xml
@@ -1,12 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-pyt...@gentoo.org
-Python
-  
-  
-alembic
-zzzeek/alembic
-  
+   
+   pyt...@gentoo.org
+   Python
+   
+   
+   alembic
+   sqlalchemy/alembic
+   zzzeek/alembic
+   https://github.com/sqlalchemy/alembic/issues
+   
 



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

2020-09-21 Thread Matthew Thode
commit: e94ba47f475fb4a991689a818d6095734f3edbcb
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Sep 21 23:25:25 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Sep 21 23:25:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e94ba47f

dev-python/alembic: 1.4.2 fix tests

Closes: https://bugs.gentoo.org/743151
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Matthew Thode  gentoo.org>

 dev-python/alembic/alembic-1.4.2.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/alembic/alembic-1.4.2.ebuild 
b/dev-python/alembic/alembic-1.4.2.ebuild
index 581f8570687..e014e8a0527 100644
--- a/dev-python/alembic/alembic-1.4.2.ebuild
+++ b/dev-python/alembic/alembic-1.4.2.ebuild
@@ -22,6 +22,7 @@ RDEPEND=">=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( ${RDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}] )"
 # For test phase
@@ -35,7 +36,7 @@ python_prepare_all() {
 }
 
 python_test() {
-   ${EPYTHON} run_tests.py || die "Testing failed with ${EPYTHON}"
+   ${EPYTHON} -m pytest --dropfirst || die "Testing failed with ${EPYTHON}"
 }
 
 python_install_all() {



  1   2   >