mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Fix env variable check in const.rb Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust workflows. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove since_last_remote_commit:true Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Handle Draft PRs. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Move manifest reporting section of PRs. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust inputs for generate PR workflow. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * workflow cleanup Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add unbuilt updated pip packages to updates-2025-07-21-02-47 * Build on linux/386 to branch updates-2025-07-21-02-47. * Updating package files for linux/386 to branch updates-2025-07-21-02-47. * Updating package files for linux/amd64 to branch updates-2025-07-21-02-47. * Updating package files for linux/arm/v7 to branch updates-2025-07-21-02-47. * fixup Signed-off-by: Satadru Pramanik <satadru@gmail.com> * ADjust PR title Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust branch name for automatic updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * fixup Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: Ed Reel <edreel@gmail.com>
26 lines
756 B
Ruby
26 lines
756 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_json2xml < Pip
|
|
description 'json to xml converter'
|
|
homepage 'https://json2xml.readthedocs.io/'
|
|
version "5.2.0-#{CREW_PY_VER}"
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '7f1ee4b0d2c2913bc1fb07bc32b3ec53d2705379819b85fb6804dbebf79b8014',
|
|
armv7l: '7f1ee4b0d2c2913bc1fb07bc32b3ec53d2705379819b85fb6804dbebf79b8014',
|
|
i686: '920519ae31e71c3263ab5c4113ca8addf19b96aeefff9815de0d340eda0e1deb',
|
|
x86_64: '9ce66dbc22432fe4431ed9b8a9e4ec447c1d431a1c8a4382d162b288795068aa'
|
|
})
|
|
|
|
depends_on 'py3_dicttoxml'
|
|
depends_on 'py3_requests'
|
|
depends_on 'py3_xmltodict'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|