Files
chromebrew/packages/py3_pylint.rb
github-actions[bot] bb58cdcf9d AutoBuild: updates-2025-05-08-17-17 started at 2025-05-08-22UTC (#11887)
* Add unbuilt updated pip packages to updates-2025-05-08-17-17

* Add unbuilt updated ruby gem packages to updates-2025-05-08-17-17

* Add built packages for linux/386 to updates-2025-05-08-17-17

* fix binary generation conflict

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Add some updates

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Update ruby buildsystem to use CREW_GLIBC options during gem build.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Add more x86_64 binaries.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Adjust LD_LIBRARY_PATH used in build workflows.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Try removing LD_LIBRARY_PATH from build workflow.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Further tweak docker build setup.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Adjust unit tests...

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Adjust armv7l container entrance in workflows...

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Add built packages for linux/arm/v7 to updates-2025-05-08-17-17

* Update py3_urwid x86_64

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
2025-05-08 23:12:43 +00:00

26 lines
853 B
Ruby

# Adapted from Arch Linux python-pylint PKGBUILD at:
# https://gitlab.archlinux.org/archlinux/packaging/packages/python-pylint/-/blob/main/PKGBUILD?ref_type=heads
require 'buildsystems/pip'
class Py3_pylint < Pip
description 'Analyzes Python code looking for bugs and signs of poor quality'
homepage 'https://pylint.pycqa.org'
version "3.3.7-#{CREW_PY_VER}"
license 'GPL'
compatibility 'all'
source_url 'SKIP'
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'df3a625dfec36aabeb8ffd4c3e46dc904178f3f55187ce0acfb6478241312278',
armv7l: 'df3a625dfec36aabeb8ffd4c3e46dc904178f3f55187ce0acfb6478241312278',
i686: '242aa0b591850a43e5c38ea55f9bb9eb6b272e617856f81746460b9053adb105',
x86_64: '0b3aa90c5b149eca432c11a3ffe83ea3d266af6b7a5c612add62db2622f791e9'
})
depends_on 'python3' # R
no_source_build
end