From 7d7ffb2f614cc509a3a12c4ad39d783754f77f20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 14 Aug 2026 05:44:06 +0200 Subject: [PATCH] dev-python/sqlparse: Bump to 0.6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/sqlparse/Manifest | 1 + dev-python/sqlparse/sqlparse-0.6.0.ebuild | 29 +++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 dev-python/sqlparse/sqlparse-0.6.0.ebuild diff --git a/dev-python/sqlparse/Manifest b/dev-python/sqlparse/Manifest index b26a87cfadd56..596929299d46b 100644 --- a/dev-python/sqlparse/Manifest +++ b/dev-python/sqlparse/Manifest @@ -1 +1,2 @@ DIST sqlparse-0.5.5.tar.gz 120815 BLAKE2B 944dd6d5c2cab8e32b7f58156826c43e294615271cb1872742989d3d414c247618dc1ae40725152022742837ad2127ce928c13315dd536eb15851b009172fe20 SHA512 1c06211f7a3fbdde9f618885eaec03b7c28e2d8262ef02adab2095e5995aca5500c5b92398bdfbf79d20e2017542abb2358e105ba8a87afdce5834b73524b1cd +DIST sqlparse-0.6.0.tar.gz 178477 BLAKE2B 09ba5b21b3b97785c41e8a557420adef0e131e4d634c08e9e4f12416d312b355da8be73511cb813d2aa94ac2dfc25313636582b047c9e5a7323f765be3b0b8b1 SHA512 39e57d16a3fdb125d26cfa5c1e0e020e105282d74fa404aea9a3d3685751c1b3c4231c148e61acf1c90cf2bd4b5c74c32ff2b9ac8a8f5b69249590d162d18c1a diff --git a/dev-python/sqlparse/sqlparse-0.6.0.ebuild b/dev-python/sqlparse/sqlparse-0.6.0.ebuild new file mode 100644 index 0000000000000..4d9967065f6af --- /dev/null +++ b/dev-python/sqlparse/sqlparse-0.6.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( python3_{12..15} ) + +inherit distutils-r1 pypi + +DESCRIPTION="A non-validating SQL parser module for Python" +HOMEPAGE=" + https://github.com/andialbrecht/sqlparse/ + https://pypi.org/project/sqlparse/ +" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +distutils_enable_sphinx docs/source +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # more likely to fail because emerging in parallel than because DoS + # prevention is in fact broken + tests/test_dos_prevention.py +)