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>
25 lines
776 B
Ruby
25 lines
776 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pdfminer_six < Pip
|
|
description 'PDFminer.six is a community maintained fork of PDFminer.'
|
|
homepage 'https://pdfminersix.readthedocs.io/'
|
|
version "20250506-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'dbedb2942ccfa689b2745daa677560e5d9434f445706f7ca056b7c4bc7167e43',
|
|
armv7l: 'dbedb2942ccfa689b2745daa677560e5d9434f445706f7ca056b7c4bc7167e43',
|
|
i686: '7b850a6781d2bcaa750d0503da37c9cc281ba19bb88a7cddef8cc05f620fa3d1',
|
|
x86_64: 'c4ee334f8123f3a3ffb6f8ff52f49e3b50cc9760f28b9c2e1f78fa3c459c0778'
|
|
})
|
|
|
|
depends_on 'py3_pycryptodome'
|
|
depends_on 'py3_sortedcontainers'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|