repo/gentoo:master commit in: dev-python/sqlglot/
MichaŠGórny <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786588319.8c6ca565322f108f78a926a7e0a4c3940656f787.mgorny@gentoo> |
commit: 8c6ca565322f108f78a926a7e0a4c3940656f787
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 13 02:01:36 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Aug 13 02:31:59 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c6ca565
dev-python/sqlglot: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/sqlglot/Manifest | 1 -
dev-python/sqlglot/sqlglot-30.15.0.ebuild | 53 -------------------------------
2 files changed, 54 deletions(-)
diff --git a/dev-python/sqlglot/Manifest b/dev-python/sqlglot/Manifest
index 417c799ce409..1658e1a1941b 100644
--- a/dev-python/sqlglot/Manifest
+++ b/dev-python/sqlglot/Manifest
@@ -1,2 +1 @@
-DIST sqlglot-30.15.0.tar.gz 5973319 BLAKE2B b53de3a6df9c3208e3354fb3c241993d845defbe92a95d4eaf6edcd1dc10792f5a581f95d22edcbc2d953c1986dbf781b0bc89570e639213115938aaa8d79e40 SHA512 8ae3aaf68f8a5580db7c3d863a286da1d9dd735f01d9eb0bd23ae06d71f72eb9026b02fb62eb9106782e94a3ab606b36370777b3b542462601dcfa4f52f3e65b
DIST sqlglot-30.16.0.tar.gz 5984853 BLAKE2B d53a8f73b7029642a726d0c71c9bbd6c5ba736381df2e11776704ff3a7eeb78eee76011edec18b4be45c13392276f5a351d2440896e3af27367a3667e41bea01 SHA512 2c6bda73778bd7a8e669351362e78c807a5bbf17a282c4d17e4f3de7557103f7e7635a42cdf88a60bd3d6b29d2bd80eb671dd8631b6ff1d8daa72ae5684f2616
diff --git a/dev-python/sqlglot/sqlglot-30.15.0.ebuild b/dev-python/sqlglot/sqlglot-30.15.0.ebuild
deleted file mode 100644
index 664549d12560..000000000000
--- a/dev-python/sqlglot/sqlglot-30.15.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2023-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{12..15} )
-
-inherit cargo distutils-r1 pypi optfeature
-
-DESCRIPTION="An easily customizable SQL parser and transpiler"
-HOMEPAGE="
- https://sqlglot.com/
- https://github.com/tobymao/sqlglot/
- https://pypi.org/project/sqlglot/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-# Native extensions removed: it uses mypyc which is incredibly slow
-# and then the extension crashes anyway. Upstream uses their own mypy
-# fork which might help but that's just insane.
-
-BDEPEND="
- dev-python/setuptools-scm[${PYTHON_USEDEP}]
- test? (
- dev-python/pytz[${PYTHON_USEDEP}]
- )
-"
-
-EPYTEST_PLUGINS=()
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_IGNORE=(
- # Tests require pyspark or duckdb which aren't in the tree.
- # Pandas would be a requirement normally, but it gets ignored by proxy.
- "tests/dataframe/integration/test_dataframe.py"
- "tests/dataframe/integration/test_grouped_data.py"
- "tests/dataframe/integration/test_session.py"
- "tests/test_executor.py"
- "tests/test_optimizer.py"
- )
-
- rm -rf sqlglot || die
- epytest
-}
-
-pkg_postinst() {
- optfeature "simplifying timedelta expressions" dev-python/python-dateutil
-}