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>
23 lines
713 B
Ruby
23 lines
713 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pipdeptree < Pip
|
|
description 'Displays a dependency tree of the installed Python packages.'
|
|
homepage 'https://github.com/naiquevin/pipdeptree/'
|
|
version "2.28.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '2b59a547b7954ac828c9d455bb162734f8d1999827a2d140976d0f2d868a0b58',
|
|
armv7l: '2b59a547b7954ac828c9d455bb162734f8d1999827a2d140976d0f2d868a0b58',
|
|
i686: '70d8d96979dd3d0e317dd14c4e56795ff7d6b235284236636d65e70b078f9639',
|
|
x86_64: '70d8d96979dd3d0e317dd14c4e56795ff7d6b235284236636d65e70b078f9639'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|