mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt py3_pdfminer_six to updater-py3_pdfminer_six-20251230-py3.14 * updater-py3_pdfminer_six-20251230-py3.14: Package File Update Run on linux/386 container. * updater-py3_pdfminer_six-20251230-py3.14: Package File Update Run on linux/amd64 container. * updater-py3_pdfminer_six-20251230-py3.14: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@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 "20251230-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '122c13a17d44ac598a081df519e418f91302e45d626e5287da06930051bf6daa',
|
|
armv7l: '122c13a17d44ac598a081df519e418f91302e45d626e5287da06930051bf6daa',
|
|
i686: 'e098081ae89b09056f395a5b2ee78d3e51f1267aa01c26fbad2a45067c4d0ac1',
|
|
x86_64: 'b6d341277c157706be961c228acf4b12ae74599f9dd3c073d0a234481fde9b33'
|
|
})
|
|
|
|
depends_on 'py3_pycryptodome'
|
|
depends_on 'py3_sortedcontainers'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|