Carl Smedstad pushed to branch main at Arch Linux / Packaging / Packages / sqlfluff
Commits: 50a686ea by Carl Smedstad at 2025-06-14T11:18:39+02:00 upgpkg: 3.4.1-1: Upstream release github.com/sqlfluff/sqlfluff/releases/tag/3.4.1 - - - - - 2 changed files: - .SRCINFO - PKGBUILD Changes: ===================================== .SRCINFO ===================================== @@ -1,11 +1,12 @@ pkgbase = sqlfluff pkgdesc = A dialect-flexible and configurable SQL linter - pkgver = 3.4.0 + pkgver = 3.4.1 pkgrel = 1 url = https://github.com/sqlfluff/sqlfluff arch = any license = MIT checkdepends = python-hypothesis + checkdepends = python-pytest-xdist makedepends = python-build makedepends = python-installer makedepends = python-setuptools @@ -25,7 +26,7 @@ pkgbase = sqlfluff depends = python-toml depends = python-tqdm depends = python-yaml - source = sqlfluff-3.4.0.tar.gz::https://github.com/sqlfluff/sqlfluff/archive/3.4.0.tar.gz - b2sums = cf6aca0b1126b0dd007e537be8bb1583b982fe20495429329cfb825db49c064b31df062965d53ea9bf543678bed8f3a2c10c007442e3fcbe0ae3c8396c4f1ce1 + source = sqlfluff-3.4.1.tar.gz::https://github.com/sqlfluff/sqlfluff/archive/3.4.1.tar.gz + b2sums = 1bfec87cd7ef0bbea35b2e51e1c4f202a1625214600ebeb9236c2c4c2f1dc0381bace4e5560d735dfefc8239393fd3d5a7fd04629e9f2a9dbe185df26bc43d27 pkgname = sqlfluff ===================================== PKGBUILD ===================================== @@ -3,7 +3,7 @@ # Contributor: Morteza NourelahiAlamdari <m...@0t1.me> pkgname=sqlfluff -pkgver=3.4.0 +pkgver=3.4.1 pkgrel=1 pkgdesc='A dialect-flexible and configurable SQL linter' arch=('any') @@ -32,9 +32,12 @@ makedepends=( 'python-setuptools' 'python-wheel' ) -checkdepends=('python-hypothesis') +checkdepends=( + 'python-hypothesis' + 'python-pytest-xdist' +) source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz") -b2sums=('cf6aca0b1126b0dd007e537be8bb1583b982fe20495429329cfb825db49c064b31df062965d53ea9bf543678bed8f3a2c10c007442e3fcbe0ae3c8396c4f1ce1') +b2sums=('1bfec87cd7ef0bbea35b2e51e1c4f202a1625214600ebeb9236c2c4c2f1dc0381bace4e5560d735dfefc8239393fd3d5a7fd04629e9f2a9dbe185df26bc43d27') build() { cd $pkgname-$pkgver @@ -47,7 +50,7 @@ check() { local site_packages=$(python -c "import site; print(site.getsitepackages()[0])") export PYTHONPATH="$PWD/tmp_install/${site_packages}" export PATH="$PWD/tmp_install/usr/bin:$PATH" - pytest \ + pytest -n=auto \ --deselect='test/core/plugin_test.py::test__plugin_default_config_read[Example_L001-forbidden_columns]' \ --deselect='test/core/plugin_test.py::test__plugin_example_rules_returned[Rule_Example_L001]' \ --deselect='test/core/plugin_test.py::test__plugin_manager_registers_example_plugin' View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/sqlfluff/-/commit/50a686eae6706bb8fb4933a1b5140f6d6049f72e -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/sqlfluff/-/commit/50a686eae6706bb8fb4933a1b5140f6d6049f72e You're receiving this email because of your account on gitlab.archlinux.org.