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-04-21-00-21 * Add unbuilt updated ruby gem packages to updates-2025-04-21-00-21 * Revert py3_ldapdomaindump Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to updates-2025-04-21-00-21 * add arm builds for py3_pillow Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add builds and rust rebuild Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add more binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
25 lines
774 B
Ruby
25 lines
774 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_beautifulsoup4 < Pip
|
|
description 'BeautifulSoup is a screen-scraping library.'
|
|
homepage 'https://www.crummy.com/software/BeautifulSoup/'
|
|
version "4.13.4-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '2b7c79602f5c12b658d1f162a4184c7f08b4a518dbc4fd589d4d2a7b9fc1f15e',
|
|
armv7l: '2b7c79602f5c12b658d1f162a4184c7f08b4a518dbc4fd589d4d2a7b9fc1f15e',
|
|
i686: '74ba5ac4fec45ae67edd76d56c216c5f75c24ebbcd5b77aad935dd394ccb34e9',
|
|
x86_64: '5fdd761ee774cfc22c04ff7ef50579e117dd8cc2b549b263c850db0a6b3656c4'
|
|
})
|
|
|
|
depends_on 'py3_hatchling' => :build
|
|
depends_on 'py3_soupsieve'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|