mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt py3_agate_dbf to updater-py3_agate_dbf-0.2.4-py3.14 * updater-py3_agate_dbf-0.2.4-py3.14: Package File Update Run on linux/386 container. * updater-py3_agate_dbf-0.2.4-py3.14: Package File Update Run on linux/amd64 container. * updater-py3_agate_dbf-0.2.4-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
748 B
Ruby
25 lines
748 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_agate_dbf < Pip
|
|
description 'Agate-dbf adds read support for DBF files to agate.'
|
|
homepage 'https://agate-dbf.readthedocs.org/'
|
|
version "0.2.4-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '5518619adf1c1aabacdd130125d6906282047d62f90872c9b1c7a7c47a4a1771',
|
|
armv7l: '5518619adf1c1aabacdd130125d6906282047d62f90872c9b1c7a7c47a4a1771',
|
|
i686: '3dfb198fb21df2e02c02636c93aa8a2e55649b7a5d68cffcee0dc57cedbb0d3a',
|
|
x86_64: '8a53e4d0e6d93ae9d504c1d02070cc8126f8d8ca7c1522e9dc5bbf633a46185e'
|
|
})
|
|
|
|
depends_on 'py3_dbfread'
|
|
depends_on 'py3_agate'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|