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
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 "20250416-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'a791bbbb705951690f37a5895eedb40f1c6879d15ab6c33367c7e6ce673dc70d',
|
|
armv7l: 'a791bbbb705951690f37a5895eedb40f1c6879d15ab6c33367c7e6ce673dc70d',
|
|
i686: 'b44daff9d6ff7f962e77493840c48abcb197f9db0e49058fa48cb6982a12f3a3',
|
|
x86_64: '83cbbe0a5ade16fb0055ca4b983d349b2f6569d4f396ecc8111e3511c97da943'
|
|
})
|
|
|
|
depends_on 'py3_pycryptodome'
|
|
depends_on 'py3_sortedcontainers'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|