mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -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>
24 lines
723 B
Ruby
24 lines
723 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pystemmer < Pip
|
|
description 'Snowball stemming algorithms, for information retrieval'
|
|
homepage 'http://snowball.tartarus.org'
|
|
version "3.0.0-#{CREW_PY_VER}"
|
|
license 'BSD MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'a8f563d3639047dca55684b2ad838b4e394a158aa97fd52335acb41f57100ab7',
|
|
armv7l: 'a8f563d3639047dca55684b2ad838b4e394a158aa97fd52335acb41f57100ab7',
|
|
i686: 'b208e6e20abd18baab0657120420c051dbcb1e80b372a72beb8e17d0c5ed7d03',
|
|
x86_64: 'f77a7d9c2e2f0dfe28e4fd0bdfad90c170e4253700274f3b8f5aa03951c1a645'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|