mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* 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>
23 lines
789 B
Ruby
23 lines
789 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Sqlmap < Pip
|
|
description 'sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking over of database servers.'
|
|
homepage 'https://sqlmap.org/'
|
|
version "1.9.5-#{CREW_PY_VER}"
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '951edcf2365f11e2c55c2e109a72d1ebcf34d8ce6b29356b1fa563bcc5e0c364',
|
|
armv7l: '951edcf2365f11e2c55c2e109a72d1ebcf34d8ce6b29356b1fa563bcc5e0c364',
|
|
i686: '97b3d565be61f1cee0595e25039053c28c4c97595e51db816ec348c6c31f73d6',
|
|
x86_64: 'c28605fe43b618ead5534da2c2ba38980d15f6bd71ba6ca3bbe8c14339947c2b'
|
|
})
|
|
|
|
depends_on 'python3', '>= 3.12.0'
|
|
|
|
no_source_build
|
|
end
|