mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Update some packages with incomplete binary hash sections. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add mold to anitya set. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * mold => 2.40.4 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add 7z update. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * py3_cleanup: Build Run on linux/arm/v7. * py3_cleanup: Build Run on linux/amd64. * py3_cleanup: Build Run on linux/386. * py3_cleanup: Package File Update Run on linux/386 container. * py3_cleanup: Package File Update Run on linux/amd64 container. * py3_cleanup: Package File Update Run on linux/arm/v7 container. * revert py3_zcmd changes Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Print directory contents if not empty during install. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Bump version. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust crew-mvdir logic to be verbose if erroring. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust debugging code, and fixup color in outputs. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Do not update gems on every crew update. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * last_update_check => @last_update_check Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Handle crew-mvdir errors with rsync fallback. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add message if crew-mvdir errors with rsync fallback. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more reporting for broken installs. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Use verbose output if rsync fails. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Use rsync force as fallback. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Move workflows to use M139-based container images. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add workaround for ruby install race condition. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint 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: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
23 lines
754 B
Ruby
23 lines
754 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_asciidoc < Pip
|
|
description 'AsciiDoc is a presentable text document format for writing articles, UNIX man pages and other small to medium sized documents.'
|
|
homepage 'https://asciidoc.org/'
|
|
version "10.2.1-#{CREW_PY_VER}"
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '18dbbc553711b0fb28829d5e29910eb5965b92384a8c57e4ea5ae59a55bf5e1b',
|
|
armv7l: '18dbbc553711b0fb28829d5e29910eb5965b92384a8c57e4ea5ae59a55bf5e1b',
|
|
i686: '4b9ad4fcaa7bd89722e44af5d5e009690e1fef72fcec0451fa1904f7b17adb8c',
|
|
x86_64: '03c4a8e2cdb86e7876f9bd88e1662bc1c7967342ffed965552912cb2ad7248c3'
|
|
})
|
|
|
|
depends_on 'python3' # R
|
|
|
|
no_source_build
|
|
end
|