mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt gimp to updater-gimp-3.2.0 * Adjust version. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gimp deps, add lensfun. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add gegl build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild babl with vapi. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild gegl with vapi. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add suitesparse build, reenable vala in gimp build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gexiv2 => 0.14.6 from the stable tag. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Cleanup gimp package. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild gegl. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add x86_64 binaries. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add arm binaries built with GCC 14. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-gimp-3.2.0: Package File Update Run on linux/amd64 container. * updater-gimp-3.2.0: Package File Update Run on linux/arm/v7 container. * Add fallback if gitlab package id can not be identified. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Document reason for fallback. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix py3_twine, py3_cfgv Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add verbose pkg message to tools/build_updated_packages.rb 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: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
23 lines
703 B
Ruby
23 lines
703 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_cfgv < Pip
|
|
description 'Validate configuration and produce human readable error messages.'
|
|
homepage 'https://github.com/asottile/cfgv'
|
|
version "3.5.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '295238680bc9803be9951a5ce40485a23d243b7b8ff20080a6fc43213cd42505',
|
|
armv7l: '295238680bc9803be9951a5ce40485a23d243b7b8ff20080a6fc43213cd42505',
|
|
i686: 'beb6cf7fea5ea6bc05d69cfc1d233b3b3d5f4cc16f74ca659651dca82516285e',
|
|
x86_64: '7280ba8cf9c616be23b856c8fd49ff9663c1d8fbed39dae1070cf833acddfb33'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|